Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64MachineFunctionInfo.h75 uint64_t LocalStackSize = 0; variable
330 void setLocalStackSize(uint64_t Size) { LocalStackSize = Size; } in setLocalStackSize()
331 uint64_t getLocalStackSize() const { return LocalStackSize; } in getLocalStackSize()
H A DAArch64FrameLowering.cpp1440 unsigned LocalStackSize) { in fixupSEHOpcode() argument
1457 ImmOpnd->setImm(ImmOpnd->getImm() + LocalStackSize); in fixupSEHOpcode()
1629 uint64_t LocalStackSize, in fixupCalleeSaveRestoreStackOffset() argument
1664 assert(LocalStackSize % Scale == 0); in fixupCalleeSaveRestoreStackOffset()
1665 OffsetOpnd.setImm(OffsetOpnd.getImm() + LocalStackSize / Scale); in fixupCalleeSaveRestoreStackOffset()
1673 fixupSEHOpcode(MBBI, LocalStackSize); in fixupCalleeSaveRestoreStackOffset()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp3290 static int StackMallocSizeClass(uint64_t LocalStackSize) { in StackMallocSizeClass() argument
3291 assert(LocalStackSize <= kMaxStackMallocSize); in StackMallocSizeClass()
3294 if (LocalStackSize <= MaxSize) return i; in StackMallocSizeClass()
3551 uint64_t LocalStackSize = L.FrameSize; in processStaticAllocas() local
3554 !ASan.CompileKernel && LocalStackSize <= kMaxStackMallocSize; in processStaticAllocas()
3590 StackMallocIdx = StackMallocSizeClass(LocalStackSize); in processStaticAllocas()
3594 ConstantInt::get(IntptrTy, LocalStackSize)); in processStaticAllocas()
3603 StackMallocIdx = StackMallocSizeClass(LocalStackSize); in processStaticAllocas()
3606 ConstantInt::get(IntptrTy, LocalStackSize)); in processStaticAllocas()
3742 {FakeStack, ConstantInt::get(IntptrTy, LocalStackSize)}); in processStaticAllocas()