HomeSort by: relevance | last modified time | path
    Searched refs:Commuted (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetInstrInfo.cpp 204 // If destination is tied to either of the commuted source register, then
720 bool &Commuted) const {
728 // the operands must be commuted.
729 Commuted = MI1->getOpcode() != AssocOpcode && MI2->getOpcode() == AssocOpcode;
730 if (Commuted)
750 bool &Commuted) const {
753 hasReassociableSibling(Inst, Commuted);
820 // operands may be commuted. Each row corresponds to a pattern value,
MachineCSE.cpp 540 bool Commuted = false;
543 Commuted = true;
718 if (Commuted)
TwoAddressInstructionPass.cpp 70 STATISTIC(NumCommuted , "Number of instructions commuted to coalesce");
71 STATISTIC(NumAggrCommuted , "Number of instructions aggressively commuted");
551 LLVM_DEBUG(dbgs() << "2addr: COMMUTED TO: " << *NewMI);
1142 bool Commuted = tryInstructionCommute(&MI, DstIdx, SrcIdx, regBKilled, Dist);
1152 if (Commuted && !MI.isConvertibleTo3Addr())
1160 if (!Commuted && EnableRescheduling && rescheduleMIBelowKill(mi, nmi, regB)) {
1165 // If we commuted, regB may have changed so we should re-sample it to avoid
1167 if (Commuted) {
1184 // Return if it is commuted but 3 addr conversion is failed.
1185 if (Commuted)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIFoldOperands.cpp 33 bool Commuted;
40 Commuted(Commuted_) {
66 return Commuted;
334 MachineOperand *FoldOp, bool Commuted = false,
340 LLVM_DEBUG(dbgs() << "Append " << (Commuted ? "commuted" : "normal")
342 FoldList.emplace_back(MI, OpNo, FoldOp, Commuted, ShrinkOp);
430 // Make sure to get the 32-bit version of the commuted opcode.
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TargetInstrInfo.h 146 /// The operands to be commuted are specified by their indices OpIdx1 and
422 /// The operands to be commuted are specified by their indices OpIdx1 and
1128 /// If the instruction's operands must be commuted to have a previous
1129 /// instruction of the same type define the first source operand, \P Commuted
1131 bool isReassociationCandidate(const MachineInstr &Inst, bool &Commuted) const;
1143 bool hasReassociableSibling(const MachineInstr &Inst, bool &Commuted) const;

Completed in 30 milliseconds