Searched refs:EmitInstruction (Results 26 - 50 of 64) sorted by relevance

123

/external/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp618 OutStreamer.EmitInstruction(MCInstBuilder(X86::DATA16_PREFIX), STI);
665 OutStreamer.EmitInstruction(LEA, STI);
668 OutStreamer.EmitInstruction(MCInstBuilder(X86::DATA16_PREFIX), STI);
669 OutStreamer.EmitInstruction(MCInstBuilder(X86::DATA16_PREFIX), STI);
670 OutStreamer.EmitInstruction(MCInstBuilder(X86::REX64_PREFIX), STI);
680 OutStreamer.EmitInstruction(MCInstBuilder(is64Bits ? X86::CALL64pcrel32
721 OS.EmitInstruction(MCInstBuilder(Opc), STI);
724 OS.EmitInstruction(MCInstBuilder(Opc).addReg(X86::AX), STI);
728 OS.EmitInstruction(MCInstBuilder(Opc).addReg(BaseReg).addImm(ScaleVal)
769 OS.EmitInstruction(MCInstBuilde
781 void X86AsmPrinter::EmitInstruction(const MachineInstr *MI) { function in class:X86AsmPrinter
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsAsmPrinter.h112 void EmitInstruction(const MachineInstr *MI) override;
H A DMipsAsmPrinter.cpp130 void MipsAsmPrinter::EmitInstruction(const MachineInstr *MI) { function in class:MipsAsmPrinter
200 llvm_unreachable("Pseudo opcode found in EmitInstruction()");
721 OutStreamer.EmitInstruction(I, getSubtargetInfo());
728 OutStreamer.EmitInstruction(I, getSubtargetInfo());
747 OutStreamer.EmitInstruction(I, getSubtargetInfo());
757 OutStreamer.EmitInstruction(I, getSubtargetInfo());
/external/llvm/lib/Target/XCore/
H A DXCoreAsmPrinter.cpp83 void EmitInstruction(const MachineInstr *MI) override;
269 void XCoreAsmPrinter::EmitInstruction(const MachineInstr *MI) { function in class:XCoreAsmPrinter
/external/llvm/lib/Target/Sparc/
H A DSparcAsmPrinter.cpp59 void EmitInstruction(const MachineInstr *MI) override;
117 OutStreamer.EmitInstruction(CallInst, STI);
128 OutStreamer.EmitInstruction(SETHIInst, STI);
140 OutStreamer.EmitInstruction(Inst, STI);
258 void SparcAsmPrinter::EmitInstruction(const MachineInstr *MI) function in class:SparcAsmPrinter
/external/chromium_org/courgette/
H A Ddisassembler_elf_32.h62 virtual CheckBool EmitInstruction(AssemblyProgram* program,
H A Ddisassembler_elf_32.cc392 if (! (**current_rel)->EmitInstruction(program, target_rva))
H A Ddisassembler_elf_32_arm.cc258 CheckBool DisassemblerElf32ARM::TypedRVAARM::EmitInstruction( function in class:courgette::DisassemblerElf32ARM::TypedRVAARM
/external/llvm/include/llvm/MC/
H A DMCObjectStreamer.h98 void EmitInstruction(const MCInst &Inst, const MCSubtargetInfo& STI) override;
H A DMCStreamer.h717 /// EmitInstruction - Emit the given @p Instruction into the current
719 virtual void EmitInstruction(const MCInst &Inst, const MCSubtargetInfo &STI);
/external/llvm/lib/CodeGen/
H A DScoreboardHazardRecognizer.cpp179 void ScoreboardHazardRecognizer::EmitInstruction(SUnit *SU) { function in class:ScoreboardHazardRecognizer
H A DPostRASchedulerList.cpp594 HazardRec->EmitInstruction(FoundSUnit);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGVLIW.cpp242 HazardRec->EmitInstruction(FoundSUnit);
/external/llvm/lib/Target/Hexagon/
H A DHexagonAsmPrinter.cpp175 void HexagonAsmPrinter::EmitInstruction(const MachineInstr *MI) { function in class:HexagonAsmPrinter
H A DHexagonMachineScheduler.cpp334 HazardRec->EmitInstruction(SU);
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsMCCodeEmitter.cpp124 void MipsMCCodeEmitter::EmitInstruction(uint64_t Val, unsigned Size,
132 EmitInstruction(Val >> 16, 2, STI, OS);
133 EmitInstruction(Val, 2, STI, OS);
197 EmitInstruction(Binary, Size, STI, OS);
H A DMipsMCCodeEmitter.h50 void EmitInstruction(uint64_t Val, unsigned Size, const MCSubtargetInfo &STI,
/external/llvm/tools/llvm-mc/
H A DDisassembler.cpp92 Streamer.EmitInstruction(Inst, STI);
/external/llvm/lib/MC/
H A DMCObjectStreamer.cpp187 void MCObjectStreamer::EmitInstruction(const MCInst &Inst, function in class:MCObjectStreamer
189 MCStreamer::EmitInstruction(Inst, STI);
/external/llvm/lib/Target/AArch64/
H A DAArch64AsmPrinter.cpp79 void EmitInstruction(const MachineInstr *MI) override;
436 void AArch64AsmPrinter::EmitInstruction(const MachineInstr *MI) { function in class:AArch64AsmPrinter
/external/llvm/include/llvm/CodeGen/
H A DAsmPrinter.h248 // Targets can, or in the case of EmitInstruction, must implement these to
268 virtual void EmitInstruction(const MachineInstr *) { function in class:llvm::AsmPrinter
269 llvm_unreachable("EmitInstruction not implemented");
/external/llvm/lib/Target/SystemZ/
H A DSystemZAsmPrinter.cpp69 void SystemZAsmPrinter::EmitInstruction(const MachineInstr *MI) { function in class:SystemZAsmPrinter
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.h205 void EmitInstruction(const MachineInstr *) override;
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp145 S.EmitInstruction(Inst, getSubtargetInfo());
628 /// means the target will need to handle MI in EmitInstruction.
785 EmitInstruction(&MI);
795 EmitInstruction(&MI);
824 OutStreamer.EmitInstruction(Noop, getSubtargetInfo());
924 OutStreamer.EmitInstruction(JumpToFun, getSubtargetInfo());
933 OutStreamer.EmitInstruction(TrapInst, getSubtargetInfo());
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp690 /// Wrapper around MCStreamer::EmitInstruction(). Possibly adds
692 void EmitInstruction(MCInst &Inst, OperandVector &Operands, MCStreamer &Out);
2280 void X86AsmParser::EmitInstruction(MCInst &Inst, OperandVector &Operands, function in class:X86AsmParser
2284 Out.EmitInstruction(Inst, STI);
2298 // Also, MatchInstructionImpl should actually *do* the EmitInstruction
2308 EmitInstruction(Inst, Operands, Out);
2342 EmitInstruction(Inst, Operands, Out);
2429 EmitInstruction(Inst, Operands, Out);

Completed in 721 milliseconds

123