Searched refs:condition_bit (Results 1 – 3 of 3) sorted by relevance
/external/v8/src/codegen/ppc/ |
D | assembler-ppc.cc | 696 void Assembler::bclr(BOfield bo, int condition_bit, LKBit lk) { in bclr() argument 697 emit(EXT1 | bo | condition_bit * B16 | BCLRX | lk); in bclr() 700 void Assembler::bcctr(BOfield bo, int condition_bit, LKBit lk) { in bcctr() argument 701 emit(EXT1 | bo | condition_bit * B16 | BCCTRX | lk); in bcctr() 712 void Assembler::bc(int branch_offset, BOfield bo, int condition_bit, LKBit lk) { in bc() argument 715 emit(BCX | bo | condition_bit * B16 | (imm16 & kImm16Mask) | lk); in bc()
|
D | assembler-ppc.h | 546 void bclr(BOfield bo, int condition_bit, LKBit lk); 548 void bc(int branch_offset, BOfield bo, int condition_bit, LKBit lk = LeaveLK); 551 void bcctr(BOfield bo, int condition_bit, LKBit lk);
|
/external/v8/src/execution/ppc/ |
D | simulator-ppc.cc | 1328 int condition_bit = instr->Bits(20, 16); in ExecuteBranchConditional() local 1329 int condition_mask = 0x80000000 >> condition_bit; in ExecuteBranchConditional() 2877 int condition_bit = instr->RCValue(); in ExecuteGeneric() local 2878 int condition_mask = 0x80000000 >> condition_bit; in ExecuteGeneric()
|