Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaAttr.cpp33 S.VtorDispStack.SentinelAction(PSK_Push, SlotLabel); in PragmaStackSentinelRAII()
34 S.DataSegStack.SentinelAction(PSK_Push, SlotLabel); in PragmaStackSentinelRAII()
35 S.BSSSegStack.SentinelAction(PSK_Push, SlotLabel); in PragmaStackSentinelRAII()
36 S.ConstSegStack.SentinelAction(PSK_Push, SlotLabel); in PragmaStackSentinelRAII()
37 S.CodeSegStack.SentinelAction(PSK_Push, SlotLabel); in PragmaStackSentinelRAII()
38 S.StrictGuardStackCheckStack.SentinelAction(PSK_Push, SlotLabel); in PragmaStackSentinelRAII()
566 if ((Action == PSK_Push_Set || Action == PSK_Push || Action == PSK_Pop) && in ActOnPragmaFloatControl()
642 if (Action & PSK_Push) in Act()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParsePragma.cpp1159 Action = Sema::PSK_Push; in HandlePragmaMSSegment()
1306 Action = Sema::PSK_Push; in HandlePragmaMSStrictGuardStackCheck()
1317 if (Action & Sema::PSK_Push || Action & Sema::PSK_Set) { in HandlePragmaMSStrictGuardStackCheck()
2164 Action = Sema::PSK_Push; in HandlePragma()
2901 if (Action & Sema::PSK_Push || Action & Sema::PSK_Set) { 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.h1506 PSK_Push = 0x2, // #pragma (push[, id]) enumerator
1509 PSK_Push_Set = PSK_Push | PSK_Set, // #pragma (push[, id], value)
1641 if (Action & PSK_Push) in Act()
1684 assert((Action == PSK_Push || Action == PSK_Pop) && in SentinelAction()