Searched refs:CRBit (Results 1 – 6 of 6) sorted by relevance
/external/llvm/lib/Target/PowerPC/ |
D | PPCInstrInfo.cpp | 787 static unsigned getCRBitValue(unsigned CRBit) { in getCRBitValue() argument 789 if (CRBit == PPC::CR0LT || CRBit == PPC::CR1LT || in getCRBitValue() 790 CRBit == PPC::CR2LT || CRBit == PPC::CR3LT || in getCRBitValue() 791 CRBit == PPC::CR4LT || CRBit == PPC::CR5LT || in getCRBitValue() 792 CRBit == PPC::CR6LT || CRBit == PPC::CR7LT) in getCRBitValue() 794 if (CRBit == PPC::CR0GT || CRBit == PPC::CR1GT || in getCRBitValue() 795 CRBit == PPC::CR2GT || CRBit == PPC::CR3GT || in getCRBitValue() 796 CRBit == PPC::CR4GT || CRBit == PPC::CR5GT || in getCRBitValue() 797 CRBit == PPC::CR6GT || CRBit == PPC::CR7GT) in getCRBitValue() 799 if (CRBit == PPC::CR0EQ || CRBit == PPC::CR1EQ || in getCRBitValue() [all …]
|
D | PPCBranchSelector.cpp | 200 unsigned CRBit = I->getOperand(0).getReg(); in runOnMachineFunction() local 201 BuildMI(MBB, I, dl, TII->get(PPC::BCn)).addReg(CRBit).addImm(2); in runOnMachineFunction() 203 unsigned CRBit = I->getOperand(0).getReg(); in runOnMachineFunction() local 204 BuildMI(MBB, I, dl, TII->get(PPC::BC)).addReg(CRBit).addImm(2); in runOnMachineFunction()
|
/external/v8/src/ppc/ |
D | disasm-ppc.cc | 380 CRBit cond = static_cast<CRBit>(bi & (CRWIDTH - 1)); in DecodeExt1() 1150 CRBit cond = static_cast<CRBit>(bi & (CRWIDTH - 1)); in InstructionDecode()
|
D | constants-ppc.h | 403 enum CRBit { CR_LT = 0, CR_GT = 1, CR_EQ = 2, CR_SO = 3, CR_FU = 3 }; enum
|
D | assembler-ppc.h | 551 static inline int encode_crbit(const CRegister& cr, enum CRBit crbit) { in encode_crbit()
|
/external/v8/src/compiler/ppc/ |
D | code-generator-ppc.cc | 1226 cr, static_cast<CRBit>(VXCVI % CRWIDTH)); in AssembleArchInstruction() 1253 cr, static_cast<CRBit>(VXCVI % CRWIDTH)); in AssembleArchInstruction()
|