Lines Matching defs:OldOpcode
211 static int getBranchNzeroOpcode(int OldOpcode);
212 static int getBranchZeroOpcode(int OldOpcode);
213 static int getContinueNzeroOpcode(int OldOpcode);
214 static int getContinueZeroOpcode(int OldOpcode);
492 int R600MachineCFGStructurizer::getBranchNzeroOpcode(int OldOpcode) {
493 switch(OldOpcode) {
503 int R600MachineCFGStructurizer::getBranchZeroOpcode(int OldOpcode) {
504 switch(OldOpcode) {
514 int R600MachineCFGStructurizer::getContinueNzeroOpcode(int OldOpcode) {
515 switch(OldOpcode) {
523 int R600MachineCFGStructurizer::getContinueZeroOpcode(int OldOpcode) {
524 switch(OldOpcode) {
1356 int OldOpcode = BranchMI->getOpcode();
1368 insertCondBranchBefore(I, getBranchNzeroOpcode(OldOpcode),
1440 int OldOpcode = MI->getOpcode();
1447 TrueBranch == ContMBB ? getBranchNzeroOpcode(OldOpcode) :
1448 getBranchZeroOpcode(OldOpcode);
1455 TrueBranch == ContMBB ? getContinueNzeroOpcode(OldOpcode) :
1456 getContinueZeroOpcode(OldOpcode);