Searched refs:getOffset (Results 151 - 175 of 326) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DIterator.h44 SymbolRef getOffset() const { return Offset; } function in struct:clang::ento::iterator::IteratorPosition
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFI386.h59 uint64_t Offset = RelI->getOffset();
H A DRuntimeDyldCOFFX86_64.h210 uint64_t Offset = RelI->getOffset();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectStreamer.cpp120 PendingFixup.Fixup.setOffset(PendingFixup.Sym->getOffset());
138 return Hi->getOffset() - Lo->getOffset();
704 MCFixup::create(SRE.getSymbol().getOffset() + OffsetVal.getConstant(),
H A DMCELFStreamer.cpp81 EF->getFixups()[i].setOffset(EF->getFixups()[i].getOffset() +
590 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DGuardWidening.cpp209 const ConstantInt *getOffset() const { return Offset; } function in class:__anon4632::GuardWideningImpl::RangeCheck
210 const APInt &getOffsetValue() const { return getOffset()->getValue(); }
689 const ConstantInt *MinOffset = CurrentChecks.front().getOffset();
690 const ConstantInt *MaxOffset = CurrentChecks.back().getOffset();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonOptAddrMode.cpp512 int64_t Offset = ImmOp.getOffset() + OldMI->getOperand(2).getImm();
570 int64_t Offset = ImmOp.getOffset() + OldMI->getOperand(1).getImm();
646 MIB.addGlobalAddress(GV, UseMI->getOperand(2).getImm()+ImmOp.getOffset(),
653 MIB.addGlobalAddress(GV, UseMI->getOperand(1).getImm()+ImmOp.getOffset(),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCAsmBackend.cpp143 unsigned Offset = Fixup.getOffset();
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DDataExtractor.h690 static uint64_t &getOffset(Cursor &C) { return C.Offset; } function in class:llvm::DataExtractor
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUAsmBackend.cpp150 uint32_t Offset = Fixup.getOffset();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcAsmBackend.cpp308 unsigned Offset = Fixup.getOffset();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelDAGToDAG.cpp152 GA->getGlobal(), DL, PtrVT, GA->getOffset(), 0);
H A DWebAssemblyFastISel.cpp103 int64_t getOffset() const { return Offset; } function in class:__anon4366::final::Address
263 uint64_t TmpOffset = Addr.getOffset();
340 uint64_t TmpOffset = Addr.getOffset() + CI->getSExtValue();
360 int64_t TmpOffset = Addr.getOffset() - CI->getSExtValue();
402 MIB.addGlobalAddress(GV, Addr.getOffset());
404 MIB.addImm(Addr.getOffset());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86AvoidStoreForwardingBlocks.cpp528 int64_t MinOffset = std::min(Op1.getOffset(), Op2.getOffset());
529 int64_t Overlapa = Op1.getSize() + Op1.getOffset() - MinOffset;
530 int64_t Overlapb = Op2.getSize() + Op2.getOffset() - MinOffset;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp170 static Error getOffset(const SymbolRef &Sym, SectionRef Sec, function in namespace:llvm
330 if (auto Err = getOffset(*I, *SI, SectOffset))
414 GSTEntry.getOffset() == VR.Offset) {
942 RECopy.Addend += SymInfo.getOffset();
1120 SymInfo.getOffset();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp53 if (!ReachedLimitErr && getOffset() + Size <= MaxSize)
66 uint64_t getOffset() const { return InitialOffset + OS.tell(); } function in class:__anon3755::ContiguousBlobAccumulator
77 uint64_t CurrentOffset = getOffset();
619 return DotShStrtab.getOffset(Name);
791 Symbol.st_name = Strtab.getOffset(ELFYAML::dropUniqueSuffix(Sym.Name));
1352 uint64_t CurrentOffset = CBA.getOffset();
1471 VernAux.vda_name = DotDynstr.getOffset(E.VerNames[J]);
1507 VerNeed.vn_file = DotDynstr.getOffset(VE.File);
1524 VernAux.vna_name = DotDynstr.getOffset(VAuxE.Name);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp130 int64_t getOffset() const { return Offset; } function in class:__anon4220::final::Address
488 int64_t TmpOffset = Addr.getOffset();
793 emitInstLoad(Opc, ResultReg, Addr.getReg(), Addr.getOffset());
798 int64_t Offset = Addr.getOffset();
843 emitInstStore(Opc, SrcReg, Addr.getReg(), Addr.getOffset());
848 int64_t Offset = Addr.getOffset();
1266 MachinePointerInfo::getStack(*FuncInfo.MF, Addr.getOffset()),
2113 if (!isInt<16>(Addr.getOffset())) {
2115 materialize32BitInt(Addr.getOffset(), &Mips::GPR32RegClass);
/freebsd-13-stable/contrib/llvm-project/clang/tools/clang-format/
H A DClangFormat.cpp285 << "offset='" << R.getOffset() << "' "
307 SMLoc::getFromPointer(StartBuf + R.getOffset()),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFFormValue.cpp570 << format("0x%8.8" PRIx64, UValue + (U ? U->getOffset() : 0));
647 return R->Unit ? R->Unit->getOffset() + R->Offset : R->Offset;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachO_arm64.cpp545 char *FixupPtr = BlockWorkingMem + E.getOffset();
546 JITTargetAddress FixupAddress = B.getAddress() + E.getOffset();
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/
H A DWriter.cpp133 (int)StrTabBuilder.getOffset(S.Name));
141 S.Sym.Name.Offset.Offset = StrTabBuilder.getOffset(S.Name);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRISelDAGToDAG.cpp136 int Offs = cast<ConstantSDNode>(LD->getOffset())->getSExtValue();
178 int Offs = cast<ConstantSDNode>(LD->getOffset())->getSExtValue();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonAsmBackend.cpp430 uint32_t Offset = Fixup.getOffset();
581 MCB, Fixup.getOffset() / HEXAGON_INSTR_SIZE));
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DObjectFile.h63 uint64_t getOffset() const;
543 inline uint64_t RelocationRef::getOffset() const { function in class:llvm::object::RelocationRef
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64AsmBackend.cpp428 unsigned Offset = Fixup.getOffset();
650 StackSize = std::abs(Inst.getOffset());

Completed in 302 milliseconds

1234567891011>>