Searched refs:PSK_Push (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaAttr.cpp | 34 S.VtorDispStack.SentinelAction(PSK_Push, SlotLabel); in PragmaStackSentinelRAII() 35 S.DataSegStack.SentinelAction(PSK_Push, SlotLabel); in PragmaStackSentinelRAII() 36 S.BSSSegStack.SentinelAction(PSK_Push, SlotLabel); in PragmaStackSentinelRAII() 37 S.ConstSegStack.SentinelAction(PSK_Push, SlotLabel); in PragmaStackSentinelRAII() 38 S.CodeSegStack.SentinelAction(PSK_Push, SlotLabel); in PragmaStackSentinelRAII() 39 S.StrictGuardStackCheckStack.SentinelAction(PSK_Push, SlotLabel); in PragmaStackSentinelRAII() 667 if ((Action == PSK_Push_Set || Action == PSK_Push || Action == PSK_Pop) && in ActOnPragmaFloatControl() 743 if (Action & PSK_Push) in Act()
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParsePragma.cpp | 1148 Action = Sema::PSK_Push; in HandlePragmaMSSegment() 1291 Action = Sema::PSK_Push; in HandlePragmaMSStrictGuardStackCheck() 1302 if (Action & Sema::PSK_Push || Action & Sema::PSK_Set) { in HandlePragmaMSStrictGuardStackCheck() 2174 Action = Sema::PSK_Push; in HandlePragma() 2912 if (Action & Sema::PSK_Push || Action & Sema::PSK_Set) { in HandlePragma() 3043 Action = (Kind == PFC_Pop) ? Sema::PSK_Pop : Sema::PSK_Push; in HandlePragma()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 1808 PSK_Push = 0x2, // #pragma (push[, id]) enumerator 1811 PSK_Push_Set = PSK_Push | PSK_Set, // #pragma (push[, id], value) 1943 if (Action & PSK_Push) in Act() 1986 assert((Action == PSK_Push || Action == PSK_Pop) && in SentinelAction()
|