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

  /external/llvm/lib/Target/X86/MCTargetDesc/
X86FixupKinds.h 17 enum Fixups {
X86MCCodeEmitter.cpp 91 SmallVectorImpl<MCFixup> &Fixups,
115 SmallVectorImpl<MCFixup> &Fixups) const;
118 SmallVectorImpl<MCFixup> &Fixups) const;
194 SmallVectorImpl<MCFixup> &Fixups, int ImmOffset) const {
236 Fixups.push_back(MCFixup::Create(CurByte, Expr, FixupKind));
244 SmallVectorImpl<MCFixup> &Fixups) const{
273 CurByte, OS, Fixups, -ImmSize);
296 EmitImmediate(Disp, 4, FK_Data_4, CurByte, OS, Fixups);
312 EmitImmediate(Disp, 1, FK_Data_1, CurByte, OS, Fixups);
319 Fixups);
    [all...]
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCFixupKinds.h 17 enum Fixups {
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsFixupKinds.h 17 enum Fixups {
  /external/llvm/lib/MC/
MCELFStreamer.cpp 335 SmallVector<MCFixup, 4> Fixups;
338 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
341 for (unsigned i = 0, e = Fixups.size(); i != e; ++i)
342 fixSymbolsInTLSFixups(Fixups[i].getValue());
344 // Add the fixups and data.
345 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
346 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size());
347 DF->addFixup(Fixups[i]);
MCMachOStreamer.cpp 366 SmallVector<MCFixup, 4> Fixups;
369 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
372 // Add the fixups and data.
373 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
374 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size());
375 DF->addFixup(Fixups[i]);
MCPureStreamer.cpp 196 // Add the fixups and data.
200 SmallVector<MCFixup, 4> Fixups;
203 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
207 IF->getFixups() = Fixups;
213 SmallVector<MCFixup, 4> Fixups;
216 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
219 // Add the fixups and data.
220 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
221 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size())
    [all...]
MCAssembler.cpp 36 STATISTIC(EvaluateFixup, "Number of evaluated fixups");
294 "FKF_IsAlignedDownTo32Bits is only allowed on PC-relative fixups!");
299 // A number of ARM fixups in Thumb mode require that the effective PC
305 // ARM fixups based from a thumb function address need to have the low
509 // Check that we aren't trying to write a non-zero contents (or fixups)
514 "Cannot have fixups in virtual section!");
615 // Evaluate and apply the fixups, generating relocation entries as necessary.
701 SmallVector<MCFixup, 4> Fixups;
704 getEmitter().EncodeInstruction(Relaxed, VecOS, Fixups);
712 for (unsigned i = 0, e = Fixups.size(); i != e; ++i
    [all...]
MCAsmStreamer.cpp     [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMFixupKinds.h 17 enum Fixups {
  /external/llvm/include/llvm/MC/
MCAssembler.h 111 /// Fixups - The list of fixups in this fragment.
112 std::vector<MCFixup> Fixups;
132 // Enforce invariant that fixups are in offset order.
133 assert((Fixups.empty() || Fixup.getOffset() > Fixups.back().getOffset()) &&
134 "Fixups must be added in order!");
135 Fixups.push_back(Fixup);
138 std::vector<MCFixup> &getFixups() { return Fixups; }
139 const std::vector<MCFixup> &getFixups() const { return Fixups; }
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 918 /// This allows multiple fixups to share the same LSRUse with different
    [all...]

Completed in 364 milliseconds