Home | History | Annotate | Download | only in Hexagon

Lines Matching refs:Hexagon

10 #include "Hexagon.h"
52 return "Hexagon CFG Optimizer";
61 return (Opc == Hexagon::JMP_t) || (Opc == Hexagon::JMP_f)
62 || (Opc == Hexagon::JMP_tnew_t) || (Opc == Hexagon::JMP_fnew_t);
67 return (Opc == Hexagon::JMP);
77 case Hexagon::JMP_t:
78 NewOpcode = Hexagon::JMP_f;
81 case Hexagon::JMP_f:
82 NewOpcode = Hexagon::JMP_t;
85 case Hexagon::JMP_tnew_t:
86 NewOpcode = Hexagon::JMP_fnew_t;
89 case Hexagon::JMP_fnew_t:
90 NewOpcode = Hexagon::JMP_tnew_t;
165 if ((MI->getOpcode() == Hexagon::JMP_t) ||
166 (MI->getOpcode() == Hexagon::JMP_f)) {
241 PassInfo *PI = new PassInfo("Hexagon CFG Optimizer", "hexagon-cfg",