Searched refs:emitInstruction (Results 26 - 50 of 72) sorted by relevance

123

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMCInstLower.cpp257 void AMDGPUAsmPrinter::emitInstruction(const MachineInstr *MI) { function in class:AMDGPUAsmPrinter
275 emitInstruction(&*I);
384 void R600AsmPrinter::emitInstruction(const MachineInstr *MI) { function in class:R600AsmPrinter
399 emitInstruction(&*I);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMAsmPrinter.h90 void emitInstruction(const MachineInstr *MI) override;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DRecordStreamer.cpp84 void RecordStreamer::emitInstruction(const MCInst &Inst, function in class:RecordStreamer
86 MCStreamer::emitInstruction(Inst, STI);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRMCCodeEmitter.cpp269 void AVRMCCodeEmitter::emitInstruction(uint64_t Val, unsigned Size, function in class:llvm::AVRMCCodeEmitter
291 emitInstruction(BinaryOpCode, Size, STI, OS);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZMachineScheduler.cpp70 HazardRec->emitInstruction(&*I);
114 HazardRec->emitInstruction(&*I, TakenBranch);
H A DSystemZAsmPrinter.cpp127 void SystemZAsmPrinter::emitInstruction(const MachineInstr *MI) { function in class:SystemZAsmPrinter
534 OutStreamer.emitInstruction(
539 OutStreamer.emitInstruction(
548 OutStreamer.emitInstruction(
575 OutStreamer->emitInstruction(
H A DSystemZHazardRecognizer.cpp410 void SystemZHazardRecognizer::emitInstruction(MachineInstr *MI, function in class:SystemZHazardRecognizer
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreAsmPrinter.cpp78 void emitInstruction(const MachineInstr *MI) override;
258 void XCoreAsmPrinter::emitInstruction(const MachineInstr *MI) { function in class:XCoreAsmPrinter
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcAsmPrinter.cpp56 void emitInstruction(const MachineInstr *MI) override;
111 OutStreamer.emitInstruction(CallInst, STI);
122 OutStreamer.emitInstruction(SETHIInst, STI);
134 OutStreamer.emitInstruction(Inst, STI);
252 void SparcAsmPrinter::emitInstruction(const MachineInstr *MI) { function in class:SparcAsmPrinter
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsTargetStreamer.cpp175 getStreamer().emitInstruction(TmpInst, *STI);
185 getStreamer().emitInstruction(TmpInst, *STI);
205 getStreamer().emitInstruction(TmpInst, *STI);
217 getStreamer().emitInstruction(TmpInst, *STI);
236 getStreamer().emitInstruction(TmpInst, *STI);
257 getStreamer().emitInstruction(TmpInst, *STI);
1172 getStreamer().emitInstruction(TmpInst, STI);
1185 getStreamer().emitInstruction(TmpInst, STI);
1193 getStreamer().emitInstruction(TmpInst, STI);
1302 getStreamer().emitInstruction(Ins
[all...]
H A DMipsMCCodeEmitter.h47 void emitInstruction(uint64_t Val, unsigned Size, const MCSubtargetInfo &STI,
H A DMipsMCCodeEmitter.cpp132 void MipsMCCodeEmitter::emitInstruction(uint64_t Val, unsigned Size, function in class:MipsMCCodeEmitter
140 emitInstruction(Val >> 16, 2, STI, OS);
141 emitInstruction(Val, 2, STI, OS);
229 emitInstruction(Binary, Size, STI, OS);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-mc/
H A DDisassembler.cpp71 Streamer.emitInstruction(Inst, STI);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsAsmPrinter.h137 void emitInstruction(const MachineInstr *MI) override;
H A DMipsAsmPrinter.cpp188 void MipsAsmPrinter::emitInstruction(const MachineInstr *MI) { function in class:MipsAsmPrinter
283 llvm_unreachable("Pseudo opcode found in emitInstruction()");
863 OutStreamer->emitInstruction(I, STI);
871 OutStreamer->emitInstruction(I, STI);
891 OutStreamer->emitInstruction(I, STI);
902 OutStreamer->emitInstruction(I, STI);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86AsmPrinter.h129 void emitInstruction(const MachineInstr *MI) override;
H A DX86MCInstLower.cpp126 OutStreamer->emitInstruction(Inst, getSubtargetInfo());
1178 OS.emitInstruction(MCInstBuilder(Opc), *Subtarget);
1181 OS.emitInstruction(MCInstBuilder(Opc).addReg(X86::AX).addReg(X86::AX),
1186 OS.emitInstruction(MCInstBuilder(Opc)
1260 OutStreamer->emitInstruction(CallInst, getSubtargetInfo());
1305 OutStreamer->emitInstruction(MI, getSubtargetInfo());
1349 OutStreamer->emitInstruction(
1366 OutStreamer->emitInstruction(MCI, getSubtargetInfo());
1711 OutStreamer->emitInstruction(Ret, getSubtargetInfo());
1750 OutStreamer->emitInstruction(T
2367 void X86AsmPrinter::emitInstruction(const MachineInstr *MI) { function in class:X86AsmPrinter
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.h210 void emitInstruction(const MachineInstr *) override;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCObjectStreamer.h127 void emitInstruction(const MCInst &Inst, const MCSubtargetInfo &STI) override;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCAsmPrinter.cpp101 void emitInstruction(const MachineInstr *MI) override;
145 void emitInstruction(const MachineInstr *MI) override;
520 void PPCAsmPrinter::emitInstruction(const MachineInstr *MI) { function in class:PPCAsmPrinter
1160 void PPCLinuxAsmPrinter::emitInstruction(const MachineInstr *MI) { function in class:PPCLinuxAsmPrinter
1162 return PPCAsmPrinter::emitInstruction(MI);
1166 return PPCAsmPrinter::emitInstruction(MI);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp965 /// Wrapper around MCStreamer::emitInstruction(). Possibly adds
967 void emitInstruction(MCInst &Inst, OperandVector &Operands, MCStreamer &Out);
3324 Out.emitInstruction(ShlInst, getSTI());
3325 Out.emitInstruction(FenceInst, getSTI());
3384 Out.emitInstruction(FenceInst, getSTI());
3388 void X86AsmParser::emitInstruction(MCInst &Inst, OperandVector &Operands, function in class:X86AsmParser
3394 Out.emitInstruction(Inst, getSTI());
3433 emitInstruction(Inst, Operands, Out);
3540 emitInstruction(Inst, Operands, Out);
3636 emitInstruction(Ins
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DAsmPrinter.h435 virtual void emitInstruction(const MachineInstr *) { function in class:llvm::AsmPrinter
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/BPF/AsmParser/
H A DBPFAsmParser.cpp300 Out.emitInstruction(Inst, getSTI());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyAsmPrinter.cpp325 void WebAssemblyAsmPrinter::emitInstruction(const MachineInstr *MI) { function in class:WebAssemblyAsmPrinter
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectStreamer.cpp365 void MCObjectStreamer::emitInstruction(const MCInst &Inst, function in class:MCObjectStreamer
381 MCStreamer::emitInstruction(Inst, STI);

Completed in 338 milliseconds

123