Searched refs:getOffset (Results 26 - 50 of 326) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DContinuationRecordBuilder.cpp22 uint32_t Align = Writer.getOffset() % 4;
58 assert(SegmentWriter.getOffset() == 0);
81 uint32_t OriginalOffset = SegmentWriter.getOffset();
107 uint32_t MemberLength = SegmentWriter.getOffset() - OriginalOffset;
122 return SegmentWriter.getOffset() - SegmentOffsets.back();
229 uint32_t End = SegmentWriter.getOffset();
H A DDebugStringTableSubsection.cpp65 uint32_t Begin = Writer.getOffset();
78 assert(Writer.getOffset() <= End);
H A DSymbolSerializer.cpp47 uint32_t RecordEnd = Writer.getOffset();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterDwarf.cpp214 OutStreamer->emitCFIDefCfaOffset(Inst.getOffset());
217 OutStreamer->emitCFIAdjustCfaOffset(Inst.getOffset());
220 OutStreamer->emitCFIDefCfa(Inst.getRegister(), Inst.getOffset());
226 OutStreamer->emitCFIOffset(Inst.getRegister(), Inst.getOffset());
241 OutStreamer->emitCFIGnuArgsSize(Inst.getOffset());
260 Twine::utohexstr(Die.getOffset()) + ":0x" +
H A DWinException.h76 const MCExpr *getOffset(const MCSymbol *OffsetOf, const MCSymbol *OffsetFrom);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSourceManager.h452 unsigned getOffset() const { return Offset; } function in class:clang::SrcMgr::SLocEntry
1062 unsigned SLocOffset = SpellingLoc.getOffset();
1082 unsigned FileOffset = Entry.getOffset();
1094 unsigned FileOffset = Entry.getOffset();
1196 unsigned GlobalOffset = Entry.getOffset() + Offset;
1211 return std::make_pair(FID, Loc.getOffset()-E.getOffset());
1226 unsigned Offset = Loc.getOffset()-E->getOffset();
1245 unsigned Offset = Loc.getOffset()
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DEHFrameSupport.cpp48 return LHS->getOffset() > RHS->getOffset();
85 uint64_t RecordStartOffset = BlockReader.getOffset();
112 uint64_t BlockSize = BlockReader.getOffset() - RecordStartOffset;
189 if (BlockEdges.count(E.getOffset()))
192 formatv("{0:x16}", E.getOffset()) + " in " + EHFrameSectionName +
195 BlockEdges[E.getOffset()] = EdgeTarget(E);
201 size_t RecordStartOffset = BlockReader.getOffset();
232 uint64_t CIEDeltaFieldOffset = BlockReader.getOffset() - RecordStartOffset;
321 uint32_t AugmentationDataStartOffset = RecordReader.getOffset();
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_handlers_cxx.cpp58 if (DTI.getOffset() < -VptrMaxOffsetToTop || DTI.getOffset() > VptrMaxOffsetToTop) {
68 } else if (!DTI.getOffset())
75 Diag(Pointer - DTI.getOffset(), DL_Note, ET,
77 << DTI.getOffset() << TypeName(DTI.getMostDerivedTypeName())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DBinaryStreamReader.cpp75 uint32_t OriginalOffset = getOffset();
78 uint32_t ThisOffset = getOffset();
104 uint32_t OriginalOffset = getOffset();
113 uint32_t NewOffset = getOffset();
144 Ref.Offset = getOffset();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineOperand.cpp298 return getIndex() == Other.getIndex() && getOffset() == Other.getOffset();
302 return getGlobal() == Other.getGlobal() && getOffset() == Other.getOffset();
305 getOffset() == Other.getOffset();
308 getOffset() == Other.getOffset();
364 MO.getOffset());
368 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getOffset(),
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcELFObjectWriter.cpp72 case FK_Data_2: return ((Fixup.getOffset() % 2)
75 case FK_Data_4: return ((Fixup.getOffset() % 4)
78 case FK_Data_8: return ((Fixup.getOffset() % 8)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DInfoStream.cpp45 uint32_t Offset = Reader.getOffset();
48 uint32_t NewOffset = Reader.getOffset();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRMCInstLower.cpp34 if (!MO.isJTI() && MO.getOffset()) {
36 Expr, MCConstantExpr::create(MO.getOffset(), Ctx), Ctx);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiMCInstLower.cpp86 if (!MO.isJTI() && MO.getOffset())
88 Expr, MCConstantExpr::create(MO.getOffset(), Ctx), Ctx);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430MCInstLower.cpp105 if (!MO.isJTI() && MO.getOffset())
107 MCConstantExpr::create(MO.getOffset(), Ctx),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVMCInstLower.cpp80 if (!MO.isJTI() && !MO.isMBB() && MO.getOffset())
82 ME, MCConstantExpr::create(MO.getOffset(), Ctx), Ctx);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DDwarfStringPoolEntry.h50 unsigned getOffset() const { return getMapEntry()->second.Offset; } function in class:llvm::DwarfStringPoolEntryRef
H A DNonRelocatableStringpool.h42 uint32_t getStringOffset(StringRef S) { return getEntry(S).getOffset(); }
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugAbbrev.h35 uint64_t getOffset() const { return Offset; } function in class:llvm::DWARFAbbreviationDeclarationSet
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DDynamicSize.cpp60 Offset.getOffset() /
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Edit/
H A DFileOffset.h29 unsigned getOffset() const { return Offs; } function in class:clang::edit::FileOffset
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/Core/
H A DReplacement.h51 unsigned getOffset() const { return Offset; } function in class:clang::tooling::Range
70 return Offset == RHS.getOffset() && Length == RHS.getLength();
121 unsigned getOffset() const { return ReplacementRange.getOffset(); } function in class:clang::tooling::Replacement
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DReplacementsYaml.h37 : FilePath(R.getFilePath()), Offset(R.getOffset()),
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-dwp/
H A DDWPStringPool.h41 uint32_t getOffset(const char *Str, unsigned Length) { function in class:llvm::DWPStringPool
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFMCInstLower.cpp41 if (!MO.isJTI() && MO.getOffset())

Completed in 488 milliseconds

1234567891011>>