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

  /external/llvm/lib/Target/AMDGPU/MCTargetDesc/
AMDGPUFixupKinds.h 17 enum Fixups {
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCFixupKinds.h 19 enum Fixups {
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86FixupKinds.h 17 enum Fixups {
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64FixupKinds.h 18 enum Fixups {
31 // fixup_aarch64_ldst_imm12_* - unsigned 12-bit fixups for load and
  /external/llvm/lib/Target/AMDGPU/
AMDGPUMCInstLower.cpp 123 SmallVector<MCFixup, 4> Fixups;
129 InstEmitter.encodeInstruction(TmpInst, CodeStream, Fixups,
  /external/llvm/lib/MC/
WinCOFFStreamer.cpp 48 SmallVector<MCFixup, 4> Fixups;
51 getAssembler().getEmitter().encodeInstruction(Inst, VecOS, Fixups, STI);
53 // Add the fixups and data.
54 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
55 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size());
56 DF->getFixups().push_back(Fixups[i]);
MCELFStreamer.cpp 475 SmallVector<MCFixup, 4> Fixups;
478 Assembler.getEmitter().encodeInstruction(Inst, VecOS, Fixups, STI);
480 for (unsigned i = 0, e = Fixups.size(); i != e; ++i)
481 fixSymbolsInTLSFixups(Fixups[i].getValue());
491 // fragment of its own. If there are no fixups registered for the
515 else if (!isBundleLocked() && Fixups.size() == 0) {
518 // there are no fixups registered.
542 // Add the fixups and data.
543 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
544 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size())
    [all...]
MCMachOStreamer.cpp 437 SmallVector<MCFixup, 4> Fixups;
440 getAssembler().getEmitter().encodeInstruction(Inst, VecOS, Fixups, STI);
442 // Add the fixups and data.
443 for (MCFixup &Fixup : Fixups) {
MCAssembler.cpp 52 STATISTIC(evaluateFixup, "Number of evaluated fixups");
494 "FKF_IsAlignedDownTo32Bits is only allowed on PC-relative fixups!");
499 // A number of ARM fixups in Thumb mode require that the effective PC
826 // Check that we aren't trying to write a non-zero contents (or fixups)
831 "Cannot have fixups in virtual section!");
933 // Evaluate and apply the fixups, generating relocation entries as necessary.
937 // Data and relaxable fragments both have fixups. So only process
943 ArrayRef<MCFixup> Fixups;
946 Fixups = FragWithFixups->getFixups();
949 Fixups = FragWithFixups->getFixups()
    [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.
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcFixupKinds.h 17 enum Fixups {
70 /// fixups for Thread Local Storage
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsFixupKinds.h 25 enum Fixups {
26 // Branch fixups resulting in R_MIPS_NONE.
29 // Branch fixups resulting in R_MIPS_16.
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonFixupKinds.h 17 enum Fixups {
18 // Branch fixups for R_HEX_B{22,15,7}_PCREL.
  /external/llvm/include/llvm/MC/
MCAssembler.h 195 /// data and also have fixups registered.
201 /// Fixups - The list of fixups in this fragment.
202 SmallVector<MCFixup, FixupsSize> Fixups;
215 SmallVectorImpl<MCFixup> &getFixups() { return Fixups; }
216 const SmallVectorImpl<MCFixup> &getFixups() const { return Fixups; }
218 fixup_iterator fixup_begin() { return Fixups.begin(); }
219 const_fixup_iterator fixup_begin() const { return Fixups.begin(); }
221 fixup_iterator fixup_end() { return Fixups.end(); }
222 const_fixup_iterator fixup_end() const { return Fixups.end();
    [all...]
  /external/llvm/lib/Target/X86/
X86MCInstLower.cpp 92 SmallVector<MCFixup, 4> Fixups;
94 CodeEmitter->encodeInstruction(Inst, VecOS, Fixups, STI);
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-d10v.c 43 /* Fixups. */
60 } Fixups;
62 static Fixups FixUps[2];
63 static Fixups *fixups; variable
296 fixups = &FixUps[0];
297 FixUps[0].next = &FixUps[1]
    [all...]
tc-d30v.c 60 /* Fixups. */
77 } Fixups;
79 static Fixups FixUps[2];
80 static Fixups *fixups; variable
319 fixups = &FixUps[0];
320 FixUps[0].next = &FixUps[1]
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]

Completed in 817 milliseconds