Searched refs:LocalOffset (Results 1 - 12 of 12) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLocalStackSlotAllocation.cpp53 int64_t LocalOffset; // Local offset of the frame idx referenced member in class:__anon3492::FrameRef
63 MI(I), LocalOffset(Offset), FrameIdx(Idx), Order(Ord) {}
66 return std::tie(LocalOffset, FrameIdx, Order) <
67 std::tie(RHS.LocalOffset, RHS.FrameIdx, RHS.Order);
71 int64_t getLocalOffset() const { return LocalOffset; }
159 int64_t LocalOffset = StackGrowsDown ? -Offset : Offset; local
161 << LocalOffset << "\n"); local
163 LocalOffsets[FrameIdx] = LocalOffset;
165 MFI.mapLocalFrameObject(FrameIdx, LocalOffset);
329 int64_t LocalOffset local
352 int64_t LocalOffset = FR.getLocalOffset(); local
[all...]
H A DMIRPrinter.cpp443 YMF.StackObjects[StackObject.ID].LocalOffset = LocalObject.second;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCTargetStreamer.h29 virtual void emitLocalEntry(MCSymbolELF *S, const MCExpr *LocalOffset) = 0;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCTargetDesc.cpp144 void emitLocalEntry(MCSymbolELF *S, const MCExpr *LocalOffset) override {
150 LocalOffset->print(OS, MAI);
182 void emitLocalEntry(MCSymbolELF *S, const MCExpr *LocalOffset) override {
186 // encode LocalOffset.
187 unsigned Encoded = encodePPC64LocalEntryOffset(LocalOffset);
237 unsigned encodePPC64LocalEntryOffset(const MCExpr *LocalOffset) { argument
240 if (!LocalOffset->evaluateAsAbsolute(Offset, MCA))
242 LocalOffset->getLoc(), ".localentry expression must be absolute.");
247 LocalOffset->getLoc(),
280 void emitLocalEntry(MCSymbolELF *S, const MCExpr *LocalOffset) overrid
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-dwp/
H A Dllvm-dwp.cpp79 uint64_t LocalOffset = 0; local
81 while (const char *s = Data.getCStr(&LocalOffset)) {
83 Strings.getOffset(s, LocalOffset - PrevOffset);
84 PrevOffset = LocalOffset;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTRecordReader.h122 uint64_t getGlobalBitOffset(uint64_t LocalOffset) { argument
123 return Reader->getGlobalBitOffset(*F, LocalOffset);
H A DASTReader.h1365 void loadPendingDeclChain(Decl *D, uint64_t LocalOffset);
1370 uint64_t getGlobalBitOffset(ModuleFile &M, uint64_t LocalOffset);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMIRYamlMapping.h236 Optional<int64_t> LocalOffset; member in struct:llvm::yaml::MachineStackObject
248 LocalOffset == Other.LocalOffset && DebugVar == Other.DebugVar &&
278 YamlIO.mapOptional("local-offset", Object.LocalOffset, Optional<int64_t>());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp749 if (Object.LocalOffset)
750 MFI.mapLocalFrameObject(ObjectIdx, Object.LocalOffset.getValue());
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp104 uint64_t LocalOffset = Record.readInt(); local
105 assert(LocalOffset < Loc.Offset && "offset point after current record");
106 return LocalOffset ? Loc.Offset - LocalOffset : 0;
2894 uint64_t ASTReader::getGlobalBitOffset(ModuleFile &M, uint64_t LocalOffset) { argument
2895 return LocalOffset + M.GlobalBitOffset;
4207 void ASTReader::loadPendingDeclChain(Decl *FirstLocal, uint64_t LocalOffset) { argument
4217 if (!LocalOffset) {
4228 if (llvm::Error JumpFailed = Cursor.JumpToBit(LocalOffset))
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp4878 llvm::Value *LocalOffset; local
4885 LocalOffset = llvm::ConstantInt::get(
4893 LocalOffset = eval(BO_Mul, ElementSize, IndexS);
4899 TotalOffset = LocalOffset;
4901 TotalOffset = eval(BO_Add, TotalOffset, LocalOffset);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp3312 const SCEV *LocalOffset = getMulExpr(IndexExpr, ElementSize, Wrap);
3315 TotalOffset = getAddExpr(TotalOffset, LocalOffset);

Completed in 243 milliseconds