Searched refs:MII (Results 1 - 25 of 70) sorted by relevance

123

/freebsd-10.0-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonFixupHwLoops.cpp64 MachineBasicBlock::iterator &MII,
129 MachineBasicBlock::iterator MII = MBB->begin(); local
130 while (MII != MIE) {
131 if (isHardwareLoop(MII)) {
132 RS.forward(MII);
133 assert(MII->getOperand(0).isMBB() &&
135 int Sub = InstOffset - BlockToInstOffset[MII->getOperand(0).getMBB()];
139 convertLoopInstr(MF, MII, RS);
140 MII = MBB->erase(MII);
158 convertLoopInstr(MachineFunction &MF, MachineBasicBlock::iterator &MII, RegScavenger &RS) argument
[all...]
H A DHexagonExpandPredSpillCode.cpp82 for (MachineBasicBlock::iterator MII = MBB->begin(); MII != MBB->end();
83 ++MII) {
84 MachineInstr *MI = MII;
98 BuildMI(*MBB, MII, MI->getDebugLoc(),
101 BuildMI(*MBB, MII, MI->getDebugLoc(), TII->get(Hexagon::ADD_rr),
104 BuildMI(*MBB, MII, MI->getDebugLoc(), TII->get(Hexagon::TFR_RsPd),
106 BuildMI(*MBB, MII, MI->getDebugLoc(),
111 BuildMI(*MBB, MII, MI->getDebugLoc(), TII->get(Hexagon::ADD_ri),
113 BuildMI(*MBB, MII, M
[all...]
H A DHexagonSplitTFRCondSets.cpp89 for (MachineBasicBlock::iterator MII = MBB->begin(); MII != MBB->end();
90 ++MII) {
91 MachineInstr *MI = MII;
114 BuildMI(*MBB, MII, MI->getDebugLoc(), TII->get(Opc1),
118 BuildMI(*MBB, MII, MI->getDebugLoc(), TII->get(Opc2),
121 MII = MBB->erase(MI);
122 --MII;
133 BuildMI(*MBB, MII, MI->getDebugLoc(),
138 BuildMI(*MBB, MII, M
[all...]
H A DHexagonNewValueJump.cpp173 MachineBasicBlock::iterator MII) {
176 if (MII->getDesc().mayStore())
180 if (MII->getOpcode() == Hexagon::CALLv3)
194 if (MII->getOpcode() == TargetOpcode::KILL ||
195 MII->getOpcode() == TargetOpcode::PHI ||
196 MII->getOpcode() == TargetOpcode::COPY)
203 if (MII->getOpcode() == Hexagon::TFR_condset_rr ||
204 MII->getOpcode() == Hexagon::TFR_condset_ii ||
205 MII->getOpcode() == Hexagon::TFR_condset_ri ||
206 MII
172 commonChecksToProhibitNewValueJump(bool afterRA, MachineBasicBlock::iterator MII) argument
[all...]
H A DHexagonAsmPrinter.cpp204 MachineBasicBlock::const_instr_iterator MII = MI; local
205 ++MII;
207 while (MII != MBB->end() && MII->isInsideBundle()) {
208 const MachineInstr *MInst = MII;
212 ++MII;
215 //BundleMIs.push_back(&*MII);
217 ++MII;
300 const MCInstrInfo &MII,
304 return(new HexagonInstPrinter(MAI, MII, MR
297 createHexagonMCInstPrinter(const Target &T, unsigned SyntaxVariant, const MCAsmInfo &MAI, const MCInstrInfo &MII, const MCRegisterInfo &MRI, const MCSubtargetInfo &STI) argument
[all...]
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DMachineInstrBundle.cpp43 for (MachineBasicBlock::instr_iterator MII = MBB->instr_begin(),
44 MIE = MBB->instr_end(); MII != MIE; ) {
45 MachineInstr *MI = &*MII;
50 while (++MII != MIE && MII->isBundledWithPred()) {
51 MII->unbundleFromPred();
52 for (unsigned i = 0, e = MII->getNumOperands(); i != e; ++i) {
53 MachineOperand &MO = MII->getOperand(i);
64 ++MII;
227 MachineBasicBlock::instr_iterator MII local
[all...]
H A DOptimizePHIs.cpp157 MII = MBB.begin(), E = MBB.end(); MII != E; ) {
158 MachineInstr *MI = &*MII++;
184 if (&*MII == PhiMI)
185 ++MII;
H A DDeadMachineInstructionElim.cpp113 for (MachineBasicBlock::reverse_iterator MII = MBB->rbegin(),
114 MIE = MBB->rend(); MII != MIE; ) {
115 MachineInstr *MI = &*MII;
146 // MII is now pointing to the next instruction to process,
182 // We didn't delete the current instruction, so increment MII to
184 ++MII;
/freebsd-10.0-release/contrib/llvm/lib/Target/Hexagon/InstPrinter/
H A DHexagonInstPrinter.h26 const MCInstrInfo &MII,
28 : MCInstPrinter(MAI, MII, MRI), MII(MII) {}
71 return MII;
81 const MCInstrInfo &MII; member in class:llvm::HexagonInstPrinter
25 HexagonInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII, const MCRegisterInfo &MRI) argument
/freebsd-10.0-release/contrib/llvm/lib/Target/MBlaze/InstPrinter/
H A DMBlazeInstPrinter.h24 MBlazeInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII, argument
26 : MCInstPrinter(MAI, MII, MRI) {}
/freebsd-10.0-release/contrib/llvm/lib/Target/MSP430/InstPrinter/
H A DMSP430InstPrinter.h24 MSP430InstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII, argument
26 : MCInstPrinter(MAI, MII, MRI) {}
/freebsd-10.0-release/contrib/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.h104 const MCInstrInfo *MII; member in class:llvm::X86Disassembler::X86GenericDisassembler
110 const MCInstrInfo *MII);
/freebsd-10.0-release/contrib/llvm/lib/Target/XCore/InstPrinter/
H A DXCoreInstPrinter.h26 XCoreInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII, argument
28 : MCInstPrinter(MAI, MII, MRI) {}
/freebsd-10.0-release/contrib/llvm/lib/Target/MSP430/MCTargetDesc/
H A DMSP430MCTargetDesc.cpp64 const MCInstrInfo &MII,
68 return new MSP430InstPrinter(MAI, MII, MRI);
61 createMSP430MCInstPrinter(const Target &T, unsigned SyntaxVariant, const MCAsmInfo &MAI, const MCInstrInfo &MII, const MCRegisterInfo &MRI, const MCSubtargetInfo &STI) argument
/freebsd-10.0-release/contrib/llvm/lib/Target/ARM/
H A DMLxExpansionPass.cpp314 MachineBasicBlock::iterator MII = MI;
315 MII = llvm::prior(MII);
316 MachineInstr &MI2 = *MII;
317 MII = llvm::prior(MII);
318 MachineInstr &MI1 = *MII;
334 MachineBasicBlock::reverse_iterator MII = MBB.rbegin(), E = MBB.rend(); local
335 while (MII != E) {
336 MachineInstr *MI = &*MII;
[all...]
/freebsd-10.0-release/contrib/llvm/lib/MC/MCDisassembler/
H A DDisassembler.h69 llvm::OwningPtr<const llvm::MCInstrInfo> MII; member in class:llvm::LLVMDisasmContext
97 MII.reset(mII);
112 const MCInstrInfo *getInstrInfo() const { return MII.get(); }
/freebsd-10.0-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineBasicBlock.h146 IterTy MII; member in class:llvm::MachineBasicBlock::bundle_iterator
149 bundle_iterator(IterTy mii) : MII(mii) {}
151 bundle_iterator(Ty &mi) : MII(mi) {
155 bundle_iterator(Ty *mi) : MII(mi) {
162 : MII(I.getInstrIterator()) {}
163 bundle_iterator() : MII(0) {}
165 Ty &operator*() const { return *MII; }
168 operator Ty*() const { return MII; }
171 return MII == x.MII;
[all...]
H A DDFAPacketizer.h126 MachineBasicBlock::iterator MII = MI; local
129 return MII;
/freebsd-10.0-release/contrib/llvm/include/llvm/MC/
H A DMCInstPrinter.h40 const MCInstrInfo &MII; member in class:llvm::MCInstPrinter
60 : CommentStream(0), MAI(mai), MII(mii), MRI(mri), AvailableFeatures(0),
/freebsd-10.0-release/contrib/llvm/lib/Target/Mips/InstPrinter/
H A DMipsInstPrinter.h80 MipsInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII, argument
82 : MCInstPrinter(MAI, MII, MRI) {}
/freebsd-10.0-release/contrib/llvm/lib/Target/PowerPC/InstPrinter/
H A DPPCInstPrinter.h27 PPCInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII, argument
29 : MCInstPrinter(MAI, MII, MRI), SyntaxVariant(syntaxVariant) {}
/freebsd-10.0-release/contrib/llvm/lib/Target/R600/InstPrinter/
H A DAMDGPUInstPrinter.h24 AMDGPUInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII, argument
26 : MCInstPrinter(MAI, MII, MRI) {}
/freebsd-10.0-release/contrib/llvm/lib/Target/R600/MCTargetDesc/
H A DAMDGPUMCTargetDesc.cpp68 const MCInstrInfo &MII,
71 return new AMDGPUInstPrinter(MAI, MII, MRI);
65 createAMDGPUMCInstPrinter(const Target &T, unsigned SyntaxVariant, const MCAsmInfo &MAI, const MCInstrInfo &MII, const MCRegisterInfo &MRI, const MCSubtargetInfo &STI) argument
/freebsd-10.0-release/contrib/llvm/lib/Target/SystemZ/InstPrinter/
H A DSystemZInstPrinter.h25 SystemZInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII, argument
27 : MCInstPrinter(MAI, MII, MRI) {}
/freebsd-10.0-release/contrib/llvm/lib/Target/XCore/MCTargetDesc/
H A DXCoreMCTargetDesc.cpp79 const MCInstrInfo &MII,
82 return new XCoreInstPrinter(MAI, MII, MRI);
76 createXCoreMCInstPrinter(const Target &T, unsigned SyntaxVariant, const MCAsmInfo &MAI, const MCInstrInfo &MII, const MCRegisterInfo &MRI, const MCSubtargetInfo &STI) argument

Completed in 120 milliseconds

123