/external/v8/src/ppc/ |
D | assembler-ppc.h | 439 int branch_offset(Label* L) { in branch_offset() function 578 void bc(int branch_offset, BOfield bo, int condition_bit, LKBit lk = LeaveLK); 579 void b(int branch_offset, LKBit lk); 586 void b(Label* L, LKBit lk = LeaveLK) { b(branch_offset(L), lk); } 631 int b_offset = branch_offset(L); 806 bc(branch_offset(L), DCBNZ, 0, lk);
|
D | assembler-ppc.cc | 727 void Assembler::bc(int branch_offset, BOfield bo, int condition_bit, LKBit lk) { in bc() argument 728 int imm16 = branch_offset; in bc() 734 void Assembler::b(int branch_offset, LKBit lk) { in b() argument 735 int imm26 = branch_offset; in b()
|
/external/v8/src/arm/ |
D | assembler-arm.cc | 1445 int Assembler::branch_offset(Label* L) { in branch_offset() function in v8::internal::Assembler 1469 void Assembler::b(int branch_offset, Condition cond) { in b() argument 1470 DCHECK((branch_offset & 3) == 0); in b() 1471 int imm24 = branch_offset >> 2; in b() 1482 void Assembler::bl(int branch_offset, Condition cond) { in bl() argument 1483 DCHECK((branch_offset & 3) == 0); in bl() 1484 int imm24 = branch_offset >> 2; in bl() 1489 void Assembler::blx(int branch_offset) { in blx() argument 1490 DCHECK((branch_offset & 1) == 0); in blx() 1491 int h = ((branch_offset & 2) >> 1)*B24; in blx() [all …]
|
D | assembler-arm.h | 685 int branch_offset(Label* L); 769 void b(int branch_offset, Condition cond = al); 770 void bl(int branch_offset, Condition cond = al); 771 void blx(int branch_offset); // v5 and above
|
/external/v8/src/s390/ |
D | assembler-s390.h | 438 int branch_offset(Label* L) { return link(L) - pc_offset(); } in branch_offset() function 550 int32_t halfwords = branch_offset(l) / 2; in b() 555 void branchOnCond(Condition c, int branch_offset, bool is_bound = false); 559 branchOnCond(cond, branch_offset(l),
|
D | assembler-s390.cc | 524 void Assembler::branchOnCond(Condition c, int branch_offset, bool is_bound) { in branchOnCond() argument 525 int offset = branch_offset; in branchOnCond() 1482 larl(r1, Operand(branch_offset(l))); in larl()
|
D | macro-assembler-s390.cc | 4501 int32_t offset = branch_offset(l); in BranchOnCount()
|
/external/v8/src/mips/ |
D | assembler-mips.h | 438 inline int32_t branch_offset(Label* L) { in branch_offset() function 448 return branch_offset(L) >> 2; in shifted_branch_offset() 631 bgezall(rs, branch_offset(L) >> 2); in bgezall()
|
D | assembler-mips.cc | 928 int branch_offset = BranchOffset(instr); in bind_to() local 929 if (dist > branch_offset) { in bind_to() 934 CHECK((trampoline_pos - fixup_pos) <= branch_offset); in bind_to()
|
/external/v8/src/mips64/ |
D | assembler-mips64.h | 441 inline int32_t branch_offset(Label* L) { in branch_offset() function 451 return branch_offset(L) >> 2; in shifted_branch_offset() 638 bgezall(rs, branch_offset(L) >> 2); in bgezall()
|
D | assembler-mips64.cc | 892 int branch_offset = BranchOffset(instr); in bind_to() local 893 if (dist > branch_offset) { in bind_to() 898 CHECK((trampoline_pos - fixup_pos) <= branch_offset); in bind_to()
|
/external/valgrind/VEX/priv/ |
D | guest_mips_toIR.c | 1344 ULong branch_offset; in dis_branch_likely() local 1353 branch_offset = extend_s_18to64(imm << 2); in dis_branch_likely() 1355 branch_offset = extend_s_18to32(imm << 2); in dis_branch_likely() 1370 return mkU64(guest_PC_curr_instr + 4 + branch_offset); in dis_branch_likely() 1372 return mkU32(guest_PC_curr_instr + 4 + branch_offset); in dis_branch_likely() 1377 ULong branch_offset; in dis_branch() local 1394 branch_offset = extend_s_18to64(imm << 2); in dis_branch() 1396 branch_offset = extend_s_18to32(imm << 2); in dis_branch() 1402 IRConst_U64(guest_PC_curr_instr + 4 + branch_offset), in dis_branch() 1407 (UInt) branch_offset), OFFB_PC); in dis_branch()
|
/external/v8/src/full-codegen/arm/ |
D | full-codegen-arm.cc | 3637 int branch_offset = pc - Instruction::kPCReadOffset - branch_address + in PatchAt() local 3639 patcher.masm()->b(branch_offset, pl); in PatchAt()
|