HomeSort by relevance Sort by last modified time
    Searched defs:Addend (Results 1 - 9 of 9) sorted by null

  /external/llvm/lib/Target/X86/MCTargetDesc/
X86ELFRelocationInfo.cpp 35 int64_t Addend; getELFRelocationAddend(Rel, Addend);
43 // If hasAddend is true, then we need to add Addend (r_addend) to Expr.
47 // A: the addend used to compute the value of the relocatable field.
122 if (Expr && hasAddend && Addend != 0)
124 MCConstantExpr::Create(Addend, Ctx),
  /external/llvm/include/llvm/Object/
RelocVisitor.h 140 int64_t Addend;
141 Obj->getRelocationAddend(DRI, Addend);
142 return Addend;
148 int64_t Addend;
149 Obj->getRelocationAddend(DRI, Addend);
150 return Addend;
156 int64_t Addend;
157 Obj->getRelocationAddend(DRI, Addend);
158 return Addend;
164 int64_t Addend;
    [all...]
  /external/llvm/lib/Target/Mips/
MipsJITInfo.cpp 274 // Addend is needed for unaligned load/store instructions, where offset
276 // be modified by +1 or +3. Otherwise, Addend is 0.
277 int Addend = *((unsigned*) RelocPos) & 0xffff;
278 ResultPtr = (ResultPtr + Addend) & 0xffff;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 88 /// Addend - the relocation addend encoded in the instruction itself. Also
90 intptr_t Addend;
98 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend)
99 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
102 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
104 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
111 intptr_t Addend;
    [all...]
RuntimeDyldMachO.cpp 90 return resolveRelocation(Section, RE.Offset, Value, RE.RelType, RE.Addend,
98 int64_t Addend,
110 << " Addend: " << Addend
126 Addend);
135 Addend);
145 Addend);
156 int64_t Addend) {
165 uint64_t ValueToWrite = Value + Addend;
185 int64_t Addend) {
    [all...]
RuntimeDyldELF.cpp 205 int64_t Addend) {
212 *Target = Value + Addend;
213 DEBUG(dbgs() << "Writing " << format("%p", (Value + Addend))
219 Value += Addend;
237 int64_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
250 int32_t Addend) {
258 *Target = *Placeholder + Value + Addend;
268 uint32_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
284 int64_t Addend) {
293 << " Addend: 0x" << format("%llx",Addend
    [all...]
  /external/llvm/tools/llvm-readobj/
ELFDumper.cpp 570 int64_t Addend;
579 if (error(getELFRelocationAddend(*RelI, Addend))) return;
589 W.printHex("Addend", Addend);
595 << " " << W.hex(Addend)
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 25 /// Class representing coefficient of floating-point addend.
100 // The integer coefficient of an individual addend is either 1 or -1,
109 /// FAddend is used to represent floating-point addend. An addend is
111 /// constant coefficient. A constant addend is represented as <C, 0>.
136 /// splitted is the addend itself.
147 // This addend has the value of "Coeff * Val".
167 /// Convert given addend to a Value
375 FAddend &Addend = Opnd0 ? Addend1 : Addend0;
377 Addend.set(1, Opnd1)
    [all...]
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 148 int64_t Addend) const {
150 IsRelocWithSymbol, Addend);
704 int64_t Addend = 0;
746 Addend = Value;
753 (RelocSymbol != 0), Addend);
763 Addend = 0;
766 assert(isInt<64>(Addend));
768 assert(isInt<32>(Addend));
770 ELFRelocationEntry ERE(RelocOffset, Index, Type, RelocSymbol, Addend, Fixup);
    [all...]

Completed in 1407 milliseconds