Home
last modified time | relevance | path

Searched refs:BottomOfStack (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DStack.cpp18 static LLVM_THREAD_LOCAL uintptr_t BottomOfStack = 0; variable
21 if (!BottomOfStack || ForceSet) in noteBottomOfStack()
22 BottomOfStack = llvm::getStackPointer(); in noteBottomOfStack()
31 if (!BottomOfStack) in isStackNearlyExhausted()
35 (intptr_t)llvm::getStackPointer() - (intptr_t)BottomOfStack; in isStackNearlyExhausted()
51 uintptr_t PrevBottom = BottomOfStack; in runWithSufficientStackSpaceSlow()
57 BottomOfStack = PrevBottom; in runWithSufficientStackSpaceSlow()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DProgramStack.cpp115 void *BottomOfStack = (char *)Stack + StackSize; in runOnNewStack() local
117 runOnNewStackImpl(BottomOfStack, callback, &Fn); in runOnNewStack()