Searched refs:condition_bit (Results 1 - 3 of 3) sorted by relevance
/third_party/node/deps/v8/src/codegen/ppc/ |
H A D | assembler-ppc.cc | 698 void Assembler::bclr(BOfield bo, int condition_bit, LKBit lk) { in bclr() argument 699 emit(EXT1 | bo | condition_bit * B16 | BCLRX | lk); in bclr() 702 void Assembler::bcctr(BOfield bo, int condition_bit, LKBit lk) { in bcctr() argument 703 emit(EXT1 | bo | condition_bit * B16 | BCCTRX | lk); in bcctr() 714 void Assembler::bc(int branch_offset, BOfield bo, int condition_bit, LKBit lk) { in bc() argument 717 emit(BCX | bo | condition_bit * B16 | (imm16 & kImm16Mask) | lk); in bc()
|
H A D | assembler-ppc.h | 639 void bclr(BOfield bo, int condition_bit, LKBit lk); 641 void bc(int branch_offset, BOfield bo, int condition_bit, LKBit lk = LeaveLK); 644 void bcctr(BOfield bo, int condition_bit, LKBit lk);
|
/third_party/node/deps/v8/src/execution/ppc/ |
H A D | simulator-ppc.cc | 1368 int condition_bit = instr->Bits(20, 16); in ExecuteBranchConditional() local 1369 int condition_mask = 0x80000000 >> condition_bit; in ExecuteBranchConditional() 3267 int condition_bit = instr->RCValue(); in ExecuteGeneric() local 3268 int condition_mask = 0x80000000 >> condition_bit; in ExecuteGeneric()
|
Completed in 16 milliseconds