Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64MachineFunctionInfo.h68 uint64_t LocalStackSize = 0; variable
271 void setLocalStackSize(uint64_t Size) { LocalStackSize = Size; } in setLocalStackSize()
272 uint64_t getLocalStackSize() const { return LocalStackSize; } in getLocalStackSize()
H A DAArch64FrameLowering.cpp1315 unsigned LocalStackSize) { in fixupSEHOpcode() argument
1332 ImmOpnd->setImm(ImmOpnd->getImm() + LocalStackSize); in fixupSEHOpcode()
1452 uint64_t LocalStackSize, in fixupCalleeSaveRestoreStackOffset() argument
1487 assert(LocalStackSize % Scale == 0); in fixupCalleeSaveRestoreStackOffset()
1488 OffsetOpnd.setImm(OffsetOpnd.getImm() + LocalStackSize / Scale); in fixupCalleeSaveRestoreStackOffset()
1496 fixupSEHOpcode(MBBI, LocalStackSize); in fixupCalleeSaveRestoreStackOffset()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp3138 static int StackMallocSizeClass(uint64_t LocalStackSize) { in StackMallocSizeClass() argument
3139 assert(LocalStackSize <= kMaxStackMallocSize); in StackMallocSizeClass()
3142 if (LocalStackSize <= MaxSize) return i; in StackMallocSizeClass()
3373 uint64_t LocalStackSize = L.FrameSize; in processStaticAllocas() local
3376 !ASan.CompileKernel && LocalStackSize <= kMaxStackMallocSize; in processStaticAllocas()
3412 StackMallocIdx = StackMallocSizeClass(LocalStackSize); in processStaticAllocas()
3416 ConstantInt::get(IntptrTy, LocalStackSize)); in processStaticAllocas()
3425 StackMallocIdx = StackMallocSizeClass(LocalStackSize); in processStaticAllocas()
3427 ConstantInt::get(IntptrTy, LocalStackSize)); in processStaticAllocas()
3563 {FakeStack, ConstantInt::get(IntptrTy, LocalStackSize)}); in processStaticAllocas()