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

  /frameworks/compile/mclinker/include/mcld/Fragment/
Stub.h 35 class Fixup
38 Fixup(DWord pOffset, SWord pAddend, Type pType)
42 ~Fixup()
58 typedef std::vector<Fixup*> FixupListType;
96 /// ----- Fixup ----- ///
116 /// addFixup - add a fixup for this stub to build a relocation
119 /// addFixup - add a fixup from a existing fixup of the prototype
120 void addFixup(const Fixup& pFixup);
  /external/llvm/include/llvm/MC/
MCELFObjectWriter.h 36 const MCFixup *Fixup;
39 : r_offset(0), Index(0), Type(0), Symbol(0), r_addend(0), Fixup(0) {}
42 const MCSymbol *Sym, uint64_t Addend, const MCFixup &Fixup)
44 r_addend(Addend), Fixup(&Fixup) {}
79 virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
85 const MCFixup &Fixup,
88 const MCFixup &Fixup,
90 virtual void adjustFixupOffset(const MCFixup &Fixup,
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCCodeEmitter.cpp 64 // just gets some fixup attached.
160 assert(MemSize <= 16 && "Invalid fixup for operation");
165 assert(MemSize == 8 && "Invalid fixup for operation");
173 assert(MemSize <= 8 && "Invalid fixup for operation");
182 assert(MemSize <= 8 && "Invalid fixup for operation");
187 assert(MemSize == 8 && "Invalid fixup for operation");
195 assert(MemSize <= 8 && "Invalid fixup for operation");
204 assert(MemSize <= 8 && "Invalid fixup for operation");
209 assert(MemSize == 8 && "Invalid fixup for operation");
435 // If one of the signed fixup kinds is applied to a MOVZ instruction, th
    [all...]
  /external/clang/lib/CodeGen/
CGCleanup.cpp 234 /// fixups than the fixup depth on the innermost normal cleanup, or
236 /// wrong place. We *could* try to shrink fixup depths, but that's
245 assert(BranchFixups.size() >= MinSize && "fixup stack out of order");
284 // Skip this fixup if its destination isn't set.
285 BranchFixup &Fixup = CGF.EHStack.getBranchFixup(I);
286 if (Fixup.Destination == 0) continue;
294 // i.e. where there's an unresolved fixup inside a single cleanup
296 if (Fixup.OptimisticBranchBlock == 0) {
297 new llvm::StoreInst(CGF.Builder.getInt32(Fixup.DestinationIndex),
299 Fixup.InitialBranch)
    [all...]
  /external/llvm/lib/MC/
MCAssembler.cpp 332 const MCFixup &Fixup, const MCFragment *DF,
336 if (!Fixup.getValue()->EvaluateAsRelocatable(Target, Layout))
337 getContext().FatalError(Fixup.getLoc(), "expected relocatable expression");
340 Fixup.getKind()).Flags & MCFixupKindInfo::FKF_IsPCRel;
379 bool ShouldAlignPC = Backend.getFixupKindInfo(Fixup.getKind()).Flags &
385 uint32_t Offset = Layout.getFragmentOffset(DF) + Fixup.getOffset();
393 // Let the backend adjust the fixup value if necessary, including whether
395 Backend.processFixupValue(*this, Layout, Fixup, DF, Target, Value,
715 const MCFixup &Fixup) {
716 // Evaluate the fixup
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]

Completed in 685 milliseconds