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 380 SmallVector<MCFixup, 4> Fixups;
383 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
386 // Add the fixups and data.
387 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
388 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size());
389 DF->getFixups().push_back(Fixups[i]);
MCPureStreamer.cpp 202 // Add the fixups and data.
206 SmallVector<MCFixup, 4> Fixups;
209 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
213 IF->getFixups() = Fixups;
219 SmallVector<MCFixup, 4> Fixups;
222 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
225 // Add the fixups and data.
226 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
227 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size())
    [all...]
MCELFStreamer.cpp 373 SmallVector<MCFixup, 4> Fixups;
376 Assembler.getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
379 for (unsigned i = 0, e = Fixups.size(); i != e; ++i)
380 fixSymbolsInTLSFixups(Fixups[i].getValue());
390 // fragment of its own. If there are no fixups registered for the
405 else if (!SD->isBundleLocked() && Fixups.size() == 0) {
408 // there are no fixups registered.
428 // Add the fixups and data.
429 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
430 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");
382 "FKF_IsAlignedDownTo32Bits is only allowed on PC-relative fixups!");
387 // A number of ARM fixups in Thumb mode require that the effective PC
673 // Check that we aren't trying to write a non-zero contents (or fixups)
678 "Cannot have fixups in virtual section!");
779 // Evaluate and apply the fixups, generating relocation entries as necessary.
850 SmallVector<MCFixup, 4> Fixups;
853 getEmitter().EncodeInstruction(Relaxed, VecOS, Fixups);
859 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 451 milliseconds