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

  /external/llvm/lib/Target/X86/MCTargetDesc/
X86FixupKinds.h 17 enum Fixups {
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCFixupKinds.h 19 enum Fixups {
  /external/llvm/lib/MC/
MCMachOStreamer.cpp 381 SmallVector<MCFixup, 4> Fixups;
384 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
387 // Add the fixups and data.
388 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
389 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size());
390 DF->getFixups().push_back(Fixups[i]);
MCPureStreamer.cpp 197 // Add the fixups and data.
201 SmallVector<MCFixup, 4> Fixups;
204 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
208 IF->getFixups() = Fixups;
214 SmallVector<MCFixup, 4> Fixups;
217 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
220 // Add the fixups and data.
221 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
222 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size())
    [all...]
MCELFStreamer.cpp 424 SmallVector<MCFixup, 4> Fixups;
427 Assembler.getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
430 for (unsigned i = 0, e = Fixups.size(); i != e; ++i)
431 fixSymbolsInTLSFixups(Fixups[i].getValue());
441 // fragment of its own. If there are no fixups registered for the
456 else if (!SD->isBundleLocked() && Fixups.size() == 0) {
459 // there are no fixups registered.
481 // Add the fixups and data.
482 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
483 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size())
    [all...]
WinCOFFStreamer.cpp 86 SmallVector<MCFixup, 4> Fixups;
89 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
92 // Add the fixups and data.
93 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
94 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size());
95 DF->getFixups().push_back(Fixups[i]);
MCAsmStreamer.cpp     [all...]
MCAssembler.cpp 49 STATISTIC(evaluateFixup, "Number of evaluated fixups");
412 "FKF_IsAlignedDownTo32Bits is only allowed on PC-relative fixups!");
417 // A number of ARM fixups in Thumb mode require that the effective PC
703 // Check that we aren't trying to write a non-zero contents (or fixups)
708 "Cannot have fixups in virtual section!");
810 // Evaluate and apply the fixups, generating relocation entries as necessary.
881 SmallVector<MCFixup, 4> Fixups;
884 getEmitter().EncodeInstruction(Relaxed, VecOS, Fixups);
890 F.getFixups() = Fixups;
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMFixupKinds.h 17 enum Fixups {
62 // The following fixups handle the ARM BL instructions. These can be
69 // fixup_arm_uncondbl and fixup_arm_condbl as identical fixups.
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMFixupKinds.h 17 enum Fixups {
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsFixupKinds.h 25 enum Fixups {
26 // Branch fixups resulting in R_MIPS_16.
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64FixupKinds.h 10 // This file describes the LLVM fixups applied to MCInsts in the AArch64
22 enum Fixups {
99 // Produce the special fixups used by the general-dynamic TLS model.
  /external/llvm/include/llvm/MC/
MCAssembler.h 175 /// data and also have fixups registered.
219 /// Fixups - The list of fixups in this fragment.
220 SmallVector<MCFixup, 4> Fixups;
232 return Fixups;
236 return Fixups;
245 fixup_iterator fixup_begin() { return Fixups.begin(); }
246 const_fixup_iterator fixup_begin() const { return Fixups.begin(); }
248 fixup_iterator fixup_end() {return Fixups.end();}
249 const_fixup_iterator fixup_end() const {return Fixups.end();
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]

Completed in 733 milliseconds