Lines Matching refs:Hexagon
10 #include "Hexagon.h"
46 return "Hexagon CFG Optimizer";
55 return (Opc == Hexagon::JMP_c) || (Opc == Hexagon::JMP_cNot)
56 || (Opc == Hexagon::JMP_cdnPt) || (Opc == Hexagon::JMP_cdnNotPt);
61 return (Opc == Hexagon::JMP);
71 case Hexagon::JMP_c:
72 NewOpcode = Hexagon::JMP_cNot;
75 case Hexagon::JMP_cNot:
76 NewOpcode = Hexagon::JMP_c;
79 case Hexagon::JMP_cdnPt:
80 NewOpcode = Hexagon::JMP_cdnNotPt;
83 case Hexagon::JMP_cdnNotPt:
84 NewOpcode = Hexagon::JMP_cdnPt;
159 if ((MI->getOpcode() == Hexagon::JMP_c) ||
160 (MI->getOpcode() == Hexagon::JMP_cNot)) {