Home
last modified time | relevance | path

Searched refs:Addend (Results 1 – 17 of 17) sorted by relevance

/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldELF.cpp198 int64_t Addend) { in resolveX86_64Relocation() argument
205 *Target = Value + Addend; in resolveX86_64Relocation()
210 Value += Addend; in resolveX86_64Relocation()
222 int64_t RealOffset = *Placeholder + Value + Addend - FinalAddress; in resolveX86_64Relocation()
235 int32_t Addend) { in resolveX86Relocation() argument
240 *Target = Placeholder + Value + Addend; in resolveX86Relocation()
245 uint32_t RealOffset = *Placeholder + Value + Addend - FinalAddress; in resolveX86Relocation()
261 int32_t Addend) { in resolveARMRelocation() argument
264 Value += Addend; in resolveARMRelocation()
270 << " Addend: " << format("%x",Addend) in resolveARMRelocation()
[all …]
DRuntimeDyldMachO.cpp28 int64_t Addend) { in resolveRelocation() argument
36 << " Addend: " << Addend in resolveRelocation()
52 Addend); in resolveRelocation()
61 Addend); in resolveRelocation()
71 Addend); in resolveRelocation()
83 int64_t Addend) { in resolveI386Relocation() argument
92 uint64_t ValueToWrite = Value + Addend; in resolveI386Relocation()
112 int64_t Addend) { in resolveX86_64Relocation() argument
129 Value += Addend; in resolveX86_64Relocation()
154 int64_t Addend) { in resolveARMRelocation() argument
[all …]
DRuntimeDyldMachO.h35 int64_t Addend);
42 int64_t Addend);
49 int64_t Addend);
61 int64_t Addend);
DRuntimeDyldELF.h31 int64_t Addend);
37 int32_t Addend);
43 int32_t Addend);
49 int64_t Addend);
DRuntimeDyldImpl.h63 intptr_t Addend; // Addend encoded in the instruction itself, if any, variable
67 : SectionID(id), Offset(offset), Data(data), Addend(addend) {} in RelocationEntry()
83 intptr_t Addend; variable
85 RelocationValueRef(): SectionID(0), Addend(0), SymbolName(0) {} in RelocationValueRef()
204 int64_t Addend) = 0;
DRuntimeDyld.cpp315 << " Addend: " << format("%p", Value.Addend) in AddRelocation()
325 Value.Addend)); in AddRelocation()
331 Value.Addend)); in AddRelocation()
373 << " Addend: " << RE.Addend in resolveRelocationEntry()
377 Value, RE.Data, RE.Addend); in resolveRelocationEntry()
412 Entry.Addend += Loc->second.second; in resolveSymbols()
/external/llvm/lib/Target/MBlaze/MCTargetDesc/
DMBlazeELFObjectWriter.cpp26 int64_t Addend) const;
41 int64_t Addend) const { in GetRelocType()
59 Type = ((IsRelocWithSymbol || Addend !=0) in GetRelocType()
/external/llvm/include/llvm/MC/
DMCELFObjectWriter.h42 const MCSymbol *Sym, uint64_t Addend, const MCFixup &Fixup) in ELFRelocationEntry()
44 r_addend(Addend), Fixup(&Fixup) {} in ELFRelocationEntry()
79 int64_t Addend) const = 0;
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCELFObjectWriter.cpp26 int64_t Addend) const;
43 int64_t Addend) const { in GetRelocType()
/external/llvm/lib/MC/
DMCExpr.cpp316 int64_t &Addend) { in AttemptToFoldSymbolOffsetDifference() argument
333 Addend += (AD.getOffset() - BD.getOffset()); in AttemptToFoldSymbolOffsetDifference()
338 Addend |= 1; in AttemptToFoldSymbolOffsetDifference()
356 Addend += (Layout->getSymbolOffset(&Asm->getSymbolData(A->getSymbol())) - in AttemptToFoldSymbolOffsetDifference()
359 Addend += (Addrs->lookup(&SecA) - Addrs->lookup(&SecB)); in AttemptToFoldSymbolOffsetDifference()
364 Addend |= 1; in AttemptToFoldSymbolOffsetDifference()
DELFObjectWriter.cpp146 int64_t Addend) const { in GetRelocType()
148 IsRelocWithSymbol, Addend); in GetRelocType()
695 int64_t Addend = 0; in RecordRelocation() local
734 Addend = Value; in RecordRelocation()
742 (RelocSymbol != 0), Addend); in RecordRelocation()
755 Addend = 0; in RecordRelocation()
758 assert(isInt<64>(Addend)); in RecordRelocation()
760 assert(isInt<32>(Addend)); in RecordRelocation()
762 ELFRelocationEntry ERE(RelocOffset, Index, Type, RelocSymbol, Addend, Fixup); in RecordRelocation()
/external/llvm/lib/Target/Mips/
DMipsJITInfo.cpp225 int Addend = *((unsigned*) RelocPos) & 0xffff; in relocate() local
226 ResultPtr = (ResultPtr + Addend) & 0xffff; in relocate()
/external/llvm/lib/Target/X86/MCTargetDesc/
DX86ELFObjectWriter.cpp29 int64_t Addend) const;
45 int64_t Addend) const { in GetRelocType()
/external/llvm/lib/Target/ARM/MCTargetDesc/
DARMELFObjectWriter.cpp39 int64_t Addend) const;
154 int64_t Addend) const { in GetRelocType()
/external/llvm/lib/Target/Mips/MCTargetDesc/
DMipsELFObjectWriter.cpp43 int64_t Addend) const;
93 int64_t Addend) const { in GetRelocType()
/external/elfutils/po/
Delfutils.pot1064 msgid " Offset Type Value Addend Name\n"
1068 msgid " Offset Type Value Addend Name\n"
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp10369 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx, in LowerShift() local
10373 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend); in LowerShift()