Home
last modified time | relevance | path

Searched refs:StackBase (Results 1 – 6 of 6) sorted by relevance

/llvm-project/clang/lib/CodeGen/
H A DCGCall.h321 assert(!(StackBase && other.StackBase) && "can't merge stackbases"); in addWriteback()
322 if (!StackBase) in addWriteback()
323 StackBase = other.StackBase;
355 llvm::Instruction *getStackBase() const { return StackBase; }
360 bool isUsingInAlloca() const { return StackBase; }
376 llvm::CallInst *StackBase = nullptr;
362 llvm::CallInst *StackBase = nullptr; global() variable
H A DCGCall.cpp4392 assert(!StackBase); in EmitNonNullArgCheck()
4395 StackBase = CGF.Builder.CreateStackSave("inalloca.save"); in EmitNonNullArgCheck()
4399 if (StackBase) { in EmitNonNullArgCheck()
4401 CGF.Builder.CreateStackRestore(StackBase); in EmitNonNullArgCheck()
/llvm-project/bolt/runtime/
H A Dinstr.cpp135 if (StackBase == nullptr) { in allocate()
136 StackBase = reinterpret_cast<uint8_t *>( in allocate()
139 assert(StackBase != MAP_FAILED, in allocate()
145 uint8_t *AllocAddress = StackBase + StackSize + sizeof(EntryMetadata); in allocate()
146 auto *M = reinterpret_cast<EntryMetadata *>(StackBase + StackSize); in allocate()
164 const uint8_t *StackTop = StackBase + StackSize + MetadataOffset; in deallocate()
196 if (StackBase == nullptr) in destroy()
198 __munmap(StackBase, MaxSize); in destroy()
207 uint8_t *StackBase{nullptr}; member in __anonc11c1cb60111::BumpPtrAllocator
/llvm-project/compiler-rt/lib/asan/
H A Dasan_win.cpp399 uptr stackSize = (uptr)tib->StackBase - (uptr)tib->StackLimit; in asan_thread_exit()
/llvm-project/llvm/lib/Support/Windows/
H A DSignals.inc89 DWORD64 StackBase;
/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp10167 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT); in lowerCmpEqZeroToCtlzSrl()
10168 auto FrameIndex = cast<FrameIndexSDNode>(StackBase.getNode())->getIndex(); in lowerCmpEqZeroToCtlzSrl()
10170 SDValue StackPtr = StackBase; in lowerCmpEqZeroToCtlzSrl()
10216 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase, in expandIntMINMAX()
9757 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT); expandUnalignedLoad() local