Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/libunwind/src/
H A DCompactUnwinder.hpp130 uint32_t stackSize = stackSizeEncoded * 4; in stepWithCompactEncodingFrameless() local
134 stackSize = subl + 4 * stackAdjust; in stepWithCompactEncodingFrameless()
203 uint32_t savedRegisters = registers.getSP() + stackSize - 4 - 4 * regCount; in stepWithCompactEncodingFrameless()
361 uint32_t stackSize = stackSizeEncoded * 8; in stepWithCompactEncodingFrameless() local
365 stackSize = subl + 8 * stackAdjust; in stepWithCompactEncodingFrameless()
434 uint64_t savedRegisters = registers.getSP() + stackSize - 8 - 8 * regCount; in stepWithCompactEncodingFrameless()
535 uint32_t stackSize = in stepWithCompactEncodingFrameless() local
538 uint64_t savedRegisterLoc = registers.getSP() + stackSize; in stepWithCompactEncodingFrameless()
/freebsd-12.1/contrib/llvm/lib/Target/Mips/
H A DMipsRegisterInfo.cpp283 uint64_t stackSize = MF.getFrameInfo().getStackSize(); in eliminateFrameIndex() local
288 << "stackSize : " << stackSize << "\n" in eliminateFrameIndex()
293 eliminateFI(MI, FIOperandNum, FrameIndex, stackSize, spOffset); in eliminateFrameIndex()
H A DMipsAsmPrinter.cpp381 unsigned stackSize = MF->getFrameInfo().getStackSize(); in emitFrameDirective() local
383 getTargetStreamer().emitFrame(stackReg, stackSize, returnReg); in emitFrameDirective()
/freebsd-12.1/contrib/llvm/tools/lld/include/lld/ReaderWriter/
H A DMachOLinkingContext.h186 uint64_t stackSize() const { return _stackSize; } in stackSize() function
187 void setStackSize(uint64_t stackSize) { _stackSize = stackSize; } in setStackSize() argument
/freebsd-12.1/contrib/llvm/lib/Target/Sparc/
H A DSparcSubtarget.h119 int getAdjustedFrameSize(int stackSize) const;
/freebsd-12.1/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFile.h248 Hex64 stackSize = 0; member
H A DMachONormalizedFileFromAtoms.cpp1597 normFile.stackSize = context.stackSize(); in normalizedFromAtoms()
H A DMachONormalizedFileYAML.cpp725 io.mapOptional("stack-size", file.stackSize, Hex64(0)); in mapping()
H A DMachONormalizedFileBinaryWriter.cpp947 ep.stacksize = _file.stackSize; in writeLoadCommands()
/freebsd-12.1/contrib/llvm/tools/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()