Searched defs:commuteInstruction (Results 1 - 6 of 6) sorted by relevance

/external/llvm/lib/CodeGen/
H A DTargetInstrInfo.cpp119 // commuteInstruction - The default implementation of this method just exchanges
121 MachineInstr *TargetInstrInfo::commuteInstruction(MachineInstr *MI, function in class:TargetInstrInfo
H A DTwoAddressInstructionPass.cpp109 bool commuteInstruction(MachineBasicBlock::iterator &mi,
570 /// commuteInstruction - Commute a two-address instruction and update the basic
574 commuteInstruction(MachineBasicBlock::iterator &mi, function in class:TwoAddressInstructionPass
578 MachineInstr *NewMI = TII->commuteInstruction(MI);
587 "TargetInstrInfo::commuteInstruction() should not return a new "
1136 if (TryCommute && commuteInstruction(mi, regB, regC, Dist)) {
/external/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp225 // commuteInstruction - We can commute rlwimi instructions, but only if the
228 PPCInstrInfo::commuteInstruction(MachineInstr *MI, bool NewMI) const { function in class:PPCInstrInfo
236 return TargetInstrInfo::commuteInstruction(MI, NewMI);
/external/llvm/lib/Target/R600/
H A DSIInstrInfo.cpp368 MachineInstr *SIInstrInfo::commuteInstruction(MachineInstr *MI, function in class:SIInstrInfo
401 MI = TargetInstrInfo::commuteInstruction(MI, NewMI);
890 if (commuteInstruction(MI))
/external/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp2357 /// commuteInstruction - We have a few instructions that must be hacked on to
2361 X86InstrInfo::commuteInstruction(MachineInstr *MI, bool NewMI) const { function in class:X86InstrInfo
2388 return TargetInstrInfo::commuteInstruction(MI, NewMI);
2467 return TargetInstrInfo::commuteInstruction(MI, NewMI);
3923 commuteInstruction(MI, false);
3929 MachineInstr *NewMI = commuteInstruction(MI, false);
/external/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp1657 /// commuteInstruction - Handle commutable instructions.
1659 ARMBaseInstrInfo::commuteInstruction(MachineInstr *MI, bool NewMI) const { function in class:ARMBaseInstrInfo
1669 MI = TargetInstrInfo::commuteInstruction(MI, NewMI);
1678 return TargetInstrInfo::commuteInstruction(MI, NewMI);

Completed in 2677 milliseconds