Searched refs:LocalStackSize (Results 1 – 9 of 9) sorted by relevance
/external/llvm/lib/Target/AArch64/ |
D | AArch64MachineFunctionInfo.h | 49 unsigned LocalStackSize; variable 131 void setLocalStackSize(unsigned Size) { LocalStackSize = Size; } in setLocalStackSize() 132 unsigned getLocalStackSize() const { return LocalStackSize; } in getLocalStackSize()
|
D | AArch64FrameLowering.cpp | 388 unsigned LocalStackSize) { in fixupCalleeSaveRestoreStackOffset() argument 403 assert(LocalStackSize % 8 == 0); in fixupCalleeSaveRestoreStackOffset() 404 OffsetOpnd.setImm(OffsetOpnd.getImm() + LocalStackSize / 8); in fixupCalleeSaveRestoreStackOffset()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64MachineFunctionInfo.h | 55 uint64_t LocalStackSize = 0; variable 173 void setLocalStackSize(uint64_t Size) { LocalStackSize = Size; } in setLocalStackSize() 174 uint64_t getLocalStackSize() const { return LocalStackSize; } in getLocalStackSize()
|
D | AArch64FrameLowering.cpp | 606 unsigned LocalStackSize) { in fixupSEHOpcode() argument 621 ImmOpnd->setImm(ImmOpnd->getImm() + LocalStackSize); in fixupSEHOpcode() 728 uint64_t LocalStackSize, in fixupCalleeSaveRestoreStackOffset() argument 773 assert(LocalStackSize % Scale == 0); in fixupCalleeSaveRestoreStackOffset() 774 OffsetOpnd.setImm(OffsetOpnd.getImm() + LocalStackSize / Scale); in fixupCalleeSaveRestoreStackOffset() 782 fixupSEHOpcode(MBBI, LocalStackSize); in fixupCalleeSaveRestoreStackOffset()
|
/external/llvm-project/llvm/lib/Target/AArch64/ |
D | AArch64MachineFunctionInfo.h | 62 uint64_t LocalStackSize = 0; variable 199 void setLocalStackSize(uint64_t Size) { LocalStackSize = Size; } in setLocalStackSize() 200 uint64_t getLocalStackSize() const { return LocalStackSize; } in getLocalStackSize()
|
D | AArch64FrameLowering.cpp | 796 unsigned LocalStackSize) { in fixupSEHOpcode() argument 811 ImmOpnd->setImm(ImmOpnd->getImm() + LocalStackSize); in fixupSEHOpcode() 918 uint64_t LocalStackSize, in fixupCalleeSaveRestoreStackOffset() argument 963 assert(LocalStackSize % Scale == 0); in fixupCalleeSaveRestoreStackOffset() 964 OffsetOpnd.setImm(OffsetOpnd.getImm() + LocalStackSize / Scale); in fixupCalleeSaveRestoreStackOffset() 972 fixupSEHOpcode(MBBI, LocalStackSize); in fixupCalleeSaveRestoreStackOffset()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | AddressSanitizer.cpp | 1952 static int StackMallocSizeClass(uint64_t LocalStackSize) { in StackMallocSizeClass() argument 1953 assert(LocalStackSize <= kMaxStackMallocSize); in StackMallocSizeClass() 1956 if (LocalStackSize <= MaxSize) return i; in StackMallocSizeClass() 2085 uint64_t LocalStackSize = L.FrameSize; in poisonStack() local 2087 LocalStackSize <= kMaxStackMallocSize; in poisonStack() 2118 StackMallocIdx = StackMallocSizeClass(LocalStackSize); in poisonStack() 2122 ConstantInt::get(IntptrTy, LocalStackSize)); in poisonStack() 2186 poisonAlloca(LocalStackBase, LocalStackSize, IRB, false); in poisonStack() 2232 {FakeStack, ConstantInt::get(IntptrTy, LocalStackSize)}); in poisonStack()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | AddressSanitizer.cpp | 2884 static int StackMallocSizeClass(uint64_t LocalStackSize) { in StackMallocSizeClass() argument 2885 assert(LocalStackSize <= kMaxStackMallocSize); in StackMallocSizeClass() 2888 if (LocalStackSize <= MaxSize) return i; in StackMallocSizeClass() 3056 uint64_t LocalStackSize = L.FrameSize; in processStaticAllocas() local 3058 LocalStackSize <= kMaxStackMallocSize; in processStaticAllocas() 3092 StackMallocIdx = StackMallocSizeClass(LocalStackSize); in processStaticAllocas() 3096 ConstantInt::get(IntptrTy, LocalStackSize)); in processStaticAllocas() 3224 {FakeStack, ConstantInt::get(IntptrTy, LocalStackSize)}); in processStaticAllocas()
|
/external/llvm-project/llvm/lib/Transforms/Instrumentation/ |
D | AddressSanitizer.cpp | 2945 static int StackMallocSizeClass(uint64_t LocalStackSize) { in StackMallocSizeClass() argument 2946 assert(LocalStackSize <= kMaxStackMallocSize); in StackMallocSizeClass() 2949 if (LocalStackSize <= MaxSize) return i; in StackMallocSizeClass() 3179 uint64_t LocalStackSize = L.FrameSize; in processStaticAllocas() local 3181 LocalStackSize <= kMaxStackMallocSize; in processStaticAllocas() 3215 StackMallocIdx = StackMallocSizeClass(LocalStackSize); in processStaticAllocas() 3219 ConstantInt::get(IntptrTy, LocalStackSize)); in processStaticAllocas() 3357 {FakeStack, ConstantInt::get(IntptrTy, LocalStackSize)}); in processStaticAllocas()
|