Searched refs:BranchCode (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/Target/XCore/
H A DXCoreInstrInfo.cpp214 XCore::CondCode BranchCode = GetCondFromBranchOpc(LastInst->getOpcode()); local
215 if (BranchCode == XCore::COND_INVALID)
222 Cond.push_back(MachineOperand::CreateImm(BranchCode));
236 XCore::CondCode BranchCode = GetCondFromBranchOpc(SecondLastOpc); local
240 if (BranchCode != XCore::COND_INVALID
244 Cond.push_back(MachineOperand::CreateImm(BranchCode));
/external/llvm/lib/Target/MSP430/
H A DMSP430InstrInfo.cpp225 MSP430CC::CondCodes BranchCode = local
227 if (BranchCode == MSP430CC::COND_INVALID)
234 Cond.push_back(MachineOperand::CreateImm(BranchCode));
250 if (OldBranchCode == BranchCode)
/external/llvm/lib/Target/Sparc/
H A DSparcInstrInfo.cpp181 SPCC::CondCodes BranchCode = (SPCC::CondCodes)I->getOperand(1).getImm();
203 BranchCode = GetOppositeBranchCondition(BranchCode);
206 .addMBB(UnCondBrIter->getOperand(0).getMBB()).addImm(BranchCode);
219 Cond.push_back(MachineOperand::CreateImm(BranchCode));
/external/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp2530 X86::CondCode BranchCode = getCondFromBranchOpc(I->getOpcode()); local
2531 if (BranchCode == X86::COND_INVALID)
2556 BranchCode = GetOppositeBranchCondition(BranchCode);
2557 unsigned JNCC = GetCondBranchFromCond(BranchCode);
2576 Cond.push_back(MachineOperand::CreateImm(BranchCode));
2593 if (OldBranchCode == BranchCode)
2600 BranchCode == X86::COND_E) ||
2602 BranchCode == X86::COND_NP))
2603 BranchCode
[all...]

Completed in 139 milliseconds