Lines Matching refs:Hexagon
9 #include "Hexagon.h"
53 return "Hexagon CFG Optimizer";
62 return (Opc == Hexagon::JMP_t) || (Opc == Hexagon::JMP_f)
63 || (Opc == Hexagon::JMP_tnew_t) || (Opc == Hexagon::JMP_fnew_t);
68 return (Opc == Hexagon::JMP);
78 case Hexagon::JMP_t:
79 NewOpcode = Hexagon::JMP_f;
82 case Hexagon::JMP_f:
83 NewOpcode = Hexagon::JMP_t;
86 case Hexagon::JMP_tnew_t:
87 NewOpcode = Hexagon::JMP_fnew_t;
90 case Hexagon::JMP_fnew_t:
91 NewOpcode = Hexagon::JMP_tnew_t;
166 if ((MI->getOpcode() == Hexagon::JMP_t) ||
167 (MI->getOpcode() == Hexagon::JMP_f)) {
242 PassInfo *PI = new PassInfo("Hexagon CFG Optimizer", "hexagon-cfg",