Lines Matching refs:OldOpcode
233 static int getBranchNzeroOpcode(int OldOpcode);
234 static int getBranchZeroOpcode(int OldOpcode);
235 static int getContinueNzeroOpcode(int OldOpcode);
236 static int getContinueZeroOpcode(int OldOpcode);
514 int AMDGPUCFGStructurizer::getBranchNzeroOpcode(int OldOpcode) { in getBranchNzeroOpcode() argument
515 switch(OldOpcode) { in getBranchNzeroOpcode()
525 int AMDGPUCFGStructurizer::getBranchZeroOpcode(int OldOpcode) { in getBranchZeroOpcode() argument
526 switch(OldOpcode) { in getBranchZeroOpcode()
536 int AMDGPUCFGStructurizer::getContinueNzeroOpcode(int OldOpcode) { in getContinueNzeroOpcode() argument
537 switch(OldOpcode) { in getContinueNzeroOpcode()
545 int AMDGPUCFGStructurizer::getContinueZeroOpcode(int OldOpcode) { in getContinueZeroOpcode() argument
546 switch(OldOpcode) { in getContinueZeroOpcode()
1392 int OldOpcode = BranchMI->getOpcode(); in mergeIfthenelseBlock() local
1404 insertCondBranchBefore(I, getBranchNzeroOpcode(OldOpcode), in mergeIfthenelseBlock()
1476 int OldOpcode = MI->getOpcode(); in settleLoopcontBlock() local
1483 TrueBranch == ContMBB ? getBranchNzeroOpcode(OldOpcode) : in settleLoopcontBlock()
1484 getBranchZeroOpcode(OldOpcode); in settleLoopcontBlock()
1491 TrueBranch == ContMBB ? getContinueNzeroOpcode(OldOpcode) : in settleLoopcontBlock()
1492 getContinueZeroOpcode(OldOpcode); in settleLoopcontBlock()