Home
last modified time | relevance | path

Searched refs:PSK_Pop (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaAttr.cpp44 S.VtorDispStack.SentinelAction(PSK_Pop, SlotLabel); in ~PragmaStackSentinelRAII()
45 S.DataSegStack.SentinelAction(PSK_Pop, SlotLabel); in ~PragmaStackSentinelRAII()
46 S.BSSSegStack.SentinelAction(PSK_Pop, SlotLabel); in ~PragmaStackSentinelRAII()
47 S.ConstSegStack.SentinelAction(PSK_Pop, SlotLabel); in ~PragmaStackSentinelRAII()
48 S.CodeSegStack.SentinelAction(PSK_Pop, SlotLabel); in ~PragmaStackSentinelRAII()
49 S.StrictGuardStackCheckStack.SentinelAction(PSK_Pop, SlotLabel); in ~PragmaStackSentinelRAII()
267 Action = Sema::PSK_Pop; in ActOnPragmaOptionsAlign()
386 if (Action & Sema::PSK_Pop) { in ActOnPragmaPack()
566 if ((Action == PSK_Push_Set || Action == PSK_Push || Action == PSK_Pop) && in ActOnPragmaFloatControl()
626 if (Action & PSK_Pop && VtorDispStack.Stack.empty()) in ActOnPragmaMSVtorDisp()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParsePragma.cpp1161 Action = Sema::PSK_Pop; in HandlePragmaMSSegment()
1312 Action = Sema::PSK_Pop; in HandlePragmaMSStrictGuardStackCheck()
2166 Action = Sema::PSK_Pop; in HandlePragma()
2210 Action = Sema::PSK_Pop; in HandlePragma()
2889 Action = Sema::PSK_Pop; in HandlePragma()
3032 Action = (Kind == PFC_Pop) ? Sema::PSK_Pop : Sema::PSK_Push; in HandlePragma()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h1507 PSK_Pop = 0x4, // #pragma (pop[, id]) enumerator
1510 PSK_Pop_Set = PSK_Pop | PSK_Set, // #pragma (pop[, id], value)
1644 else if (Action & PSK_Pop) { in Act()
1684 assert((Action == PSK_Push || Action == PSK_Pop) && in SentinelAction()