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

  /external/llvm/lib/Target/MBlaze/
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
40 /// MachineInstr - Representation of each machine instruction.
42 class MachineInstr : public ilist_node<MachineInstr> {
84 MachineInstr(const MachineInstr&); // DO NOT IMPLEMENT
85 void operator=(const MachineInstr&); // DO NOT IMPLEMENT
88 friend struct ilist_traits<MachineInstr>;
    [all...]
MachineInstrBuilder.h 11 // simplifying how MachineInstr's are created. It allows use of code like this:
43 MachineInstr *MI;
46 explicit MachineInstrBuilder(MachineInstr *mi) : MI(mi) {}
50 operator MachineInstr*() const { return MI; }
51 MachineInstr *operator->() const { return MI; }
132 const MachineInstrBuilder &setMemRefs(MachineInstr::mmo_iterator b,
133 MachineInstr::mmo_iterator e) const {
159 const MachineInstrBuilder &setMIFlag(MachineInstr::MIFlag Flag) const {
207 MachineInstr *MI = BB.getParent()->CreateMachineInstr(MCID, DL);
220 MachineInstr *MI = BB.getParent()->CreateMachineInstr(MCID, DL)
    [all...]
  /external/llvm/lib/CodeGen/
MachineInstr.cpp 1 //===-- lib/CodeGen/MachineInstr.cpp --------------------------------------===//
14 #include "llvm/CodeGen/MachineInstr.h"
104 if (MachineInstr *MI = getParent())
170 if (MachineInstr *MI = getParent())
232 if (const MachineInstr *MI = getParent())
461 // MachineInstr Implementation
464 /// MachineInstr ctor - This constructor creates a dummy MachineInstr with
466 MachineInstr::MachineInstr()
    [all...]

Completed in 205 milliseconds