Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64MachineFunctionInfo.h67 uint64_t LocalStackSize = 0; variable
248 void setLocalStackSize(uint64_t Size) { LocalStackSize = Size; } in setLocalStackSize()
249 uint64_t getLocalStackSize() const { return LocalStackSize; } in getLocalStackSize()
H A DAArch64FrameLowering.cpp1092 unsigned LocalStackSize) { in fixupSEHOpcode() argument
1107 ImmOpnd->setImm(ImmOpnd->getImm() + LocalStackSize); in fixupSEHOpcode()
1228 uint64_t LocalStackSize, in fixupCalleeSaveRestoreStackOffset() argument
1263 assert(LocalStackSize % Scale == 0); in fixupCalleeSaveRestoreStackOffset()
1264 OffsetOpnd.setImm(OffsetOpnd.getImm() + LocalStackSize / Scale); in fixupCalleeSaveRestoreStackOffset()
1272 fixupSEHOpcode(MBBI, LocalStackSize); in fixupCalleeSaveRestoreStackOffset()
/openbsd/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp2962 static int StackMallocSizeClass(uint64_t LocalStackSize) { in StackMallocSizeClass() argument
2963 assert(LocalStackSize <= kMaxStackMallocSize); in StackMallocSizeClass()
2966 if (LocalStackSize <= MaxSize) return i; in StackMallocSizeClass()
3197 uint64_t LocalStackSize = L.FrameSize; in processStaticAllocas() local
3200 !ASan.CompileKernel && LocalStackSize <= kMaxStackMallocSize; in processStaticAllocas()
3236 StackMallocIdx = StackMallocSizeClass(LocalStackSize); in processStaticAllocas()
3240 ConstantInt::get(IntptrTy, LocalStackSize)); in processStaticAllocas()
3249 StackMallocIdx = StackMallocSizeClass(LocalStackSize); in processStaticAllocas()
3251 ConstantInt::get(IntptrTy, LocalStackSize)); in processStaticAllocas()
3387 {FakeStack, ConstantInt::get(IntptrTy, LocalStackSize)}); in processStaticAllocas()