HomeSort by relevance Sort by last modified time
    Searched full:crbit (Results 1 - 7 of 7) sorted by null

  /external/llvm/lib/Target/PowerPC/
PPCRegisterInfo.td 97 // CRBIT - One of the 32 1-bit condition register fields
98 class CRBIT<bits<5> num, string n> : PPCReg<n> {
159 def CR0LT : CRBIT< 0, "0">;
160 def CR0GT : CRBIT< 1, "1">;
161 def CR0EQ : CRBIT< 2, "2">;
162 def CR0UN : CRBIT< 3, "3">;
163 def CR1LT : CRBIT< 4, "4">;
164 def CR1GT : CRBIT< 5, "5">;
165 def CR1EQ : CRBIT< 6, "6">;
166 def CR1UN : CRBIT< 7, "7">
    [all...]
PPCBranchSelector.cpp 200 unsigned CRBit = I->getOperand(0).getReg();
201 BuildMI(MBB, I, dl, TII->get(PPC::BCn)).addReg(CRBit).addImm(2);
203 unsigned CRBit = I->getOperand(0).getReg();
204 BuildMI(MBB, I, dl, TII->get(PPC::BC)).addReg(CRBit).addImm(2);
PPCInstrInfo.cpp 787 static unsigned getCRBitValue(unsigned CRBit) {
789 if (CRBit == PPC::CR0LT || CRBit == PPC::CR1LT ||
790 CRBit == PPC::CR2LT || CRBit == PPC::CR3LT ||
791 CRBit == PPC::CR4LT || CRBit == PPC::CR5LT ||
792 CRBit == PPC::CR6LT || CRBit == PPC::CR7LT)
794 if (CRBit == PPC::CR0GT || CRBit == PPC::CR1GT |
    [all...]
  /external/v8/src/compiler/ppc/
code-generator-ppc.cc 1225 int crbit = v8::internal::Assembler::encode_crbit( local
1252 int crbit = v8::internal::Assembler::encode_crbit( local
    [all...]
  /external/v8/src/ppc/
disasm-ppc.cc 380 CRBit cond = static_cast<CRBit>(bi & (CRWIDTH - 1));
1150 CRBit cond = static_cast<CRBit>(bi & (CRWIDTH - 1));
    [all...]
assembler-ppc.h 551 static inline int encode_crbit(const CRegister& cr, enum CRBit crbit) {
552 return ((cr.code() * CRWIDTH) + crbit);
    [all...]
constants-ppc.h 403 enum CRBit { CR_LT = 0, CR_GT = 1, CR_EQ = 2, CR_SO = 3, CR_FU = 3 };

Completed in 658 milliseconds