Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DLocalStackSlotAllocation.cpp63 MI(I), LocalOffset(Offset), FrameIdx(Idx), Order(Ord) {} in FrameRef()
66 return std::tie(LocalOffset, FrameIdx, Order) < in operator <()
71 int64_t getLocalOffset() const { return LocalOffset; } in getLocalOffset()
160 int64_t LocalOffset = StackGrowsDown ? -Offset : Offset; in AdjustStackOffset() local
162 << LocalOffset << "\n"); in AdjustStackOffset()
164 LocalOffsets[FrameIdx] = LocalOffset; in AdjustStackOffset()
166 MFI.mapLocalFrameObject(FrameIdx, LocalOffset); in AdjustStackOffset()
327 int64_t LocalOffset = LocalOffsets[Idx]; in insertFrameReferenceRegisters() local
328 if (!TRI->needsFrameBaseReg(&MI, LocalOffset)) in insertFrameReferenceRegisters()
350 int64_t LocalOffset = FR.getLocalOffset(); in insertFrameReferenceRegisters() local
[all …]
H A DMIRPrinter.cpp427 YMF.StackObjects[StackObject.ID].LocalOffset = LocalObject.second; in convertStackObjects()
/freebsd-12.1/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCTargetDesc.cpp123 void emitLocalEntry(MCSymbolELF *S, const MCExpr *LocalOffset) override { in emitLocalEntry() argument
129 LocalOffset->print(OS, MAI); in emitLocalEntry()
161 void emitLocalEntry(MCSymbolELF *S, const MCExpr *LocalOffset) override { in emitLocalEntry() argument
165 if (!LocalOffset->evaluateAsAbsolute(Res, MCA)) in emitLocalEntry()
233 void emitLocalEntry(MCSymbolELF *S, const MCExpr *LocalOffset) override { in emitLocalEntry() argument
/freebsd-12.1/contrib/llvm/lib/Target/PowerPC/
H A DPPCTargetStreamer.h30 virtual void emitLocalEntry(MCSymbolELF *S, const MCExpr *LocalOffset) = 0;
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DMIRYamlMapping.h218 Optional<int64_t> LocalOffset;
230 LocalOffset == Other.LocalOffset && DebugVar == Other.DebugVar &&
260 YamlIO.mapOptional("local-offset", Object.LocalOffset, Optional<int64_t>());
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Serialization/
H A DASTReader.h1357 void loadPendingDeclChain(Decl *D, uint64_t LocalOffset);
1362 uint64_t getGlobalBitOffset(ModuleFile &M, uint32_t LocalOffset);
2439 uint64_t getGlobalBitOffset(uint32_t LocalOffset) { in getGlobalBitOffset() argument
2440 return Reader->getGlobalBitOffset(*F, LocalOffset); in getGlobalBitOffset()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderDecl.cpp105 uint64_t LocalOffset = Record.readInt(); in ReadLocalOffset() local
106 assert(LocalOffset < Loc.Offset && "offset point after current record"); in ReadLocalOffset()
107 return LocalOffset ? Loc.Offset - LocalOffset : 0; in ReadLocalOffset()
2815 uint64_t ASTReader::getGlobalBitOffset(ModuleFile &M, uint32_t LocalOffset) { in getGlobalBitOffset() argument
2816 return LocalOffset + M.GlobalBitOffset; in getGlobalBitOffset()
4017 void ASTReader::loadPendingDeclChain(Decl *FirstLocal, uint64_t LocalOffset) { in loadPendingDeclChain() argument
4027 if (!LocalOffset) { in loadPendingDeclChain()
4038 Cursor.JumpToBit(LocalOffset); in loadPendingDeclChain()
/freebsd-12.1/contrib/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp657 if (Object.LocalOffset) in initializeFrameInfo()
658 MFI.mapLocalFrameObject(ObjectIdx, Object.LocalOffset.getValue()); in initializeFrameInfo()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprScalar.cpp4463 llvm::Value *LocalOffset; in EmitCheckedInBoundsGEP() local
4470 LocalOffset = llvm::ConstantInt::get( in EmitCheckedInBoundsGEP()
4478 LocalOffset = eval(BO_Mul, ElementSize, IndexS); in EmitCheckedInBoundsGEP()
4484 TotalOffset = LocalOffset; in EmitCheckedInBoundsGEP()
4486 TotalOffset = eval(BO_Add, TotalOffset, LocalOffset); in EmitCheckedInBoundsGEP()
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DScalarEvolution.cpp3485 const SCEV *LocalOffset = getMulExpr(IndexExpr, ElementSize, Wrap); in getGEPExpr() local
3488 TotalOffset = getAddExpr(TotalOffset, LocalOffset); in getGEPExpr()