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

  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCTargetDesc.h 35 MCCodeEmitter *createMipsMCCodeEmitterEB(const MCInstrInfo &MCII,
38 MCCodeEmitter *createMipsMCCodeEmitterEL(const MCInstrInfo &MCII,
MipsMCCodeEmitter.cpp 34 const MCInstrInfo &MCII;
40 MipsMCCodeEmitter(const MCInstrInfo &mcii, const MCSubtargetInfo &sti,
42 MCII(mcii), STI(sti) , Ctx(ctx), IsLittleEndian(IsLittle) {}
93 MCCodeEmitter *llvm::createMipsMCCodeEmitterEB(const MCInstrInfo &MCII,
97 return new MipsMCCodeEmitter(MCII, STI, Ctx, false);
100 MCCodeEmitter *llvm::createMipsMCCodeEmitterEL(const MCInstrInfo &MCII,
104 return new MipsMCCodeEmitter(MCII, STI, Ctx, true);
122 const MCInstrDesc &Desc = MCII.get(MI.getOpcode());
  /external/llvm/lib/Target/MBlaze/MCTargetDesc/
MBlazeMCTargetDesc.h 32 MCCodeEmitter *createMBlazeMCCodeEmitter(const MCInstrInfo &MCII,
MBlazeMCCodeEmitter.cpp 34 const MCInstrInfo &MCII;
37 MBlazeMCCodeEmitter(const MCInstrInfo &mcii, const MCSubtargetInfo &sti,
39 : MCII(mcii) {
100 MCCodeEmitter *llvm::createMBlazeMCCodeEmitter(const MCInstrInfo &MCII,
103 return new MBlazeMCCodeEmitter(MCII, STI, Ctx);
180 const MCInstrDesc &Desc = MCII.get(Opcode);
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.h 33 MCCodeEmitter *createPPCMCCodeEmitter(const MCInstrInfo &MCII,
PPCMCCodeEmitter.cpp 32 PPCMCCodeEmitter(const MCInstrInfo &mcii, const MCSubtargetInfo &sti,
79 MCCodeEmitter *llvm::createPPCMCCodeEmitter(const MCInstrInfo &MCII,
82 return new PPCMCCodeEmitter(MCII, STI, Ctx);
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCTargetDesc.h 43 MCCodeEmitter *createARMMCCodeEmitter(const MCInstrInfo &MCII,
ARMMCCodeEmitter.cpp 39 const MCInstrInfo &MCII;
43 ARMMCCodeEmitter(const MCInstrInfo &mcii, const MCSubtargetInfo &sti,
45 : MCII(mcii), STI(sti) {
338 MCCodeEmitter *llvm::createARMMCCodeEmitter(const MCInstrInfo &MCII,
341 return new ARMMCCodeEmitter(MCII, STI, Ctx);
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCTargetDesc.h 78 MCCodeEmitter *createX86MCCodeEmitter(const MCInstrInfo &MCII,
X86MCCodeEmitter.cpp 33 const MCInstrInfo &MCII;
37 X86MCCodeEmitter(const MCInstrInfo &mcii, const MCSubtargetInfo &sti,
39 : MCII(mcii), STI(sti), Ctx(ctx) {
141 MCCodeEmitter *llvm::createX86MCCodeEmitter(const MCInstrInfo &MCII,
144 return new X86MCCodeEmitter(MCII, STI, Ctx);
    [all...]
  /external/clang/tools/driver/
cc1as_main.cpp 319 OwningPtr<MCInstrInfo> MCII(TheTarget->createMCInstrInfo());
326 TheTarget->createMCInstPrinter(Opts.OutputAsmVariant, *MAI, *MCII, *MRI,
331 CE = TheTarget->createMCCodeEmitter(*MCII, *STI, Ctx);
345 MCCodeEmitter *CE = TheTarget->createMCCodeEmitter(*MCII, *STI, Ctx);
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 423 OwningPtr<MCInstrInfo> MCII(TheTarget->createMCInstrInfo());
429 TheTarget->createMCInstPrinter(OutputAsmVariant, *MAI, *MCII, *MRI, *STI);
433 CE = TheTarget->createMCCodeEmitter(*MCII, *STI, Ctx);
446 MCCodeEmitter *CE = TheTarget->createMCCodeEmitter(*MCII, *STI, Ctx);

Completed in 189 milliseconds