Home
last modified time | relevance | path

Searched refs:stackSize (Results 1 – 11 of 11) sorted by relevance

/freebsd-13.1/contrib/llvm-project/libunwind/src/
H A DCompactUnwinder.hpp129 uint32_t stackSize = stackSizeEncoded * 4; in stepWithCompactEncodingFrameless() local
133 stackSize = subl + 4 * stackAdjust; in stepWithCompactEncodingFrameless()
202 uint32_t savedRegisters = registers.getSP() + stackSize - 4 - 4 * regCount; in stepWithCompactEncodingFrameless()
360 uint32_t stackSize = stackSizeEncoded * 8; in stepWithCompactEncodingFrameless() local
364 stackSize = subl + 8 * stackAdjust; in stepWithCompactEncodingFrameless()
433 uint64_t savedRegisters = registers.getSP() + stackSize - 8 - 8 * regCount; in stepWithCompactEncodingFrameless()
534 uint32_t stackSize = in stepWithCompactEncodingFrameless() local
537 uint64_t savedRegisterLoc = registers.getSP() + stackSize; in stepWithCompactEncodingFrameless()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsRegisterInfo.cpp261 uint64_t stackSize = MF.getFrameInfo().getStackSize(); in eliminateFrameIndex() local
266 << "stackSize : " << stackSize << "\n" in eliminateFrameIndex()
271 eliminateFI(MI, FIOperandNum, FrameIndex, stackSize, spOffset); in eliminateFrameIndex()
H A DMipsAsmPrinter.cpp386 unsigned stackSize = MF->getFrameInfo().getStackSize(); in emitFrameDirective() local
388 getTargetStreamer().emitFrame(stackReg, stackSize, returnReg); in emitFrameDirective()
/freebsd-13.1/contrib/llvm-project/lld/include/lld/ReaderWriter/
H A DMachOLinkingContext.h185 uint64_t stackSize() const { return _stackSize; } in stackSize() function
186 void setStackSize(uint64_t stackSize) { _stackSize = stackSize; } in setStackSize() argument
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_win.cpp388 uptr stackSize = (uptr)tib->StackBase - (uptr)tib->StackLimit; in asan_thread_exit() local
389 __asan_unpoison_memory_region(tib->StackLimit, stackSize); in asan_thread_exit()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcSubtarget.h118 int getAdjustedFrameSize(int stackSize) const;
/freebsd-13.1/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFile.h247 Hex64 stackSize = 0; member
H A DMachONormalizedFileFromAtoms.cpp1597 normFile.stackSize = context.stackSize(); in normalizedFromAtoms()
H A DMachONormalizedFileYAML.cpp724 io.mapOptional("stack-size", file.stackSize, Hex64(0)); in mapping()
H A DMachONormalizedFileBinaryWriter.cpp953 ep.stacksize = _file.stackSize; in writeLoadCommands()
/freebsd-13.1/contrib/llvm-project/lld/lib/Driver/
H A DDarwinLdDriver.cpp950 if (llvm::opt::Arg *stackSize = parsedArgs.getLastArg(OPT_stack_size)) { in parse() local
952 if (parseNumberBase16(stackSize->getValue(), stackSizeVal)) { in parse()