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

  /external/llvm/lib/Target/MBlaze/MCTargetDesc/
MBlazeMCCodeEmitter.cpp 219 #define MachineInstr MCInst
222 #undef MachineInstr
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 1 //===-- llvm/CodeGen/MachineInstr.h - MachineInstr class --------*- C++ -*-===//
10 // This file contains the declaration of the MachineInstr class, which is the
44 /// MachineInstr - Representation of each machine instruction.
50 class MachineInstr : public ilist_node<MachineInstr> {
95 MachineInstr(const MachineInstr&) LLVM_DELETED_FUNCTION;
96 void operator=(const MachineInstr&) LLVM_DELETED_FUNCTION;
98 ~MachineInstr() LLVM_DELETED_FUNCTION
    [all...]
MachineInstrBuilder.h 11 // simplifying how MachineInstr's are created. It allows use of code like this:
47 MachineInstr *MI;
53 MachineInstrBuilder(MachineFunction &F, MachineInstr *I) : MF(&F), MI(I) {}
57 operator MachineInstr*() const { return MI; }
58 MachineInstr *operator->() const { return MI; }
159 const MachineInstrBuilder &setMemRefs(MachineInstr::mmo_iterator b,
160 MachineInstr::mmo_iterator e) const {
186 const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
214 const MachineInstrBuilder &copyImplicitOps(const MachineInstr *OtherMI) {
250 MachineInstr *MI = MF.CreateMachineInstr(MCID, DL)
    [all...]
  /external/llvm/lib/CodeGen/
MachineInstr.cpp 1 //===-- lib/CodeGen/MachineInstr.cpp --------------------------------------===//
14 #include "llvm/CodeGen/MachineInstr.h"
55 if (MachineInstr *MI = getParent())
97 if (MachineInstr *MI = getParent())
117 if (MachineInstr *MI = getParent())
133 if (MachineInstr *MI = getParent())
259 if (const MachineInstr *MI = getParent())
517 // MachineInstr Implementation
520 void MachineInstr::addImplicitDefUseOperands(MachineFunction &MF) {
529 /// MachineInstr ctor - This constructor creates a MachineInstr and adds th
    [all...]

Completed in 244 milliseconds