HomeSort by: relevance | last modified time | path
    Searched refs:Relaxed (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/MCA/
CodeEmitter.cpp 26 MCInst Relaxed(Sequence[MCID]);
28 MAB.relaxInstruction(Relaxed, STI);
31 MCE.encodeInstruction(Relaxed, VecOS, Fixups, STI);
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCObjectStreamer.cpp 408 MCInst Relaxed = Inst;
409 while (Backend.mayNeedRelaxation(Relaxed, STI))
410 Backend.relaxInstruction(Relaxed, STI);
411 emitInstToData(Relaxed, STI);
422 llvm_unreachable("All instructions should have already been relaxed");
MCAssembler.cpp 71 STATISTIC(RelaxedInstructions, "Number of relaxed instructions");
974 // are intentionally pushing out inst fragments, or because we relaxed a
1000 MCInst Relaxed = F.getInst();
1001 getBackend().relaxInstruction(Relaxed, *F.getSubtargetInfo());
1010 getEmitter().encodeInstruction(Relaxed, VecOS, Fixups, *F.getSubtargetInfo());
1013 F.setInst(Relaxed);
1080 // relaxed.
1234 // remain NULL if none were relaxed.
1235 // When a fragment is relaxed, all the fragments following it should get
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp 811 // Branches can always be relaxed in either mode.
856 /// Return true if this instruction has been fully relaxed into it's most
870 // If the instruction isn't fully relaxed, shifting it around might require a
927 MCInst Relaxed = RF.getInst();
928 relaxInstruction(Relaxed, *RF.getSubtargetInfo());
933 Emitter.encodeInstruction(Relaxed, VecOS, Fixups, *RF.getSubtargetInfo());
940 RF.setInst(Relaxed);
1033 // If we have an instruction which hasn't been fully relaxed, we can't

Completed in 17 milliseconds