Home
last modified time | relevance | path

Searched refs:branch_offset (Results 1 – 13 of 13) sorted by relevance

/external/v8/src/arm/
Dassembler-arm-inl.h65 int32_t branch_offset = branch->GetBranchOffset() + delta; in apply() local
66 branch->SetBranchOffset(branch_offset); in apply()
409 intptr_t branch_offset = target - pc - Instruction::kPcLoadDelta; in set_target_address_at() local
411 branch->SetBranchOffset(branch_offset); in set_target_address_at()
Dconstants-arm.h622 void SetBranchOffset(int32_t branch_offset) { in SetBranchOffset() argument
624 DCHECK_EQ(branch_offset % kInstrSize, 0); in SetBranchOffset()
625 int32_t new_imm24 = branch_offset / kInstrSize; in SetBranchOffset()
Dassembler-arm.cc1396 int Assembler::branch_offset(Label* L) { in branch_offset() function in v8::internal::Assembler
1420 void Assembler::b(int branch_offset, Condition cond, RelocInfo::Mode rmode) { in b() argument
1422 DCHECK_EQ(branch_offset & 3, 0); in b()
1423 int imm24 = branch_offset >> 2; in b()
1434 void Assembler::bl(int branch_offset, Condition cond, RelocInfo::Mode rmode) { in bl() argument
1436 DCHECK_EQ(branch_offset & 3, 0); in bl()
1437 int imm24 = branch_offset >> 2; in bl()
1443 void Assembler::blx(int branch_offset) { in blx() argument
1444 DCHECK_EQ(branch_offset & 1, 0); in blx()
1445 int h = ((branch_offset & 2) >> 1)*B24; in blx()
[all …]
Dassembler-arm.h651 int branch_offset(Label* L);
714 void b(int branch_offset, Condition cond = al,
716 void bl(int branch_offset, Condition cond = al,
718 void blx(int branch_offset); // v5 and above
/external/v8/src/s390/
Dassembler-s390.cc611 void Assembler::branchOnCond(Condition c, int branch_offset, bool is_bound) { in branchOnCond() argument
612 int offset_in_halfwords = branch_offset / 2; in branchOnCond()
660 larl(r1, Operand(branch_offset(l))); in larl()
Dassembler-s390.h526 int branch_offset(Label* L) { return link(L) - pc_offset(); } in branch_offset() function
1275 int32_t halfwords = branch_offset(l) / 2; in S390_SS_A_OPCODE_LIST()
1280 void branchOnCond(Condition c, int branch_offset, bool is_bound = false);
1284 branchOnCond(cond, branch_offset(l),
1322 int offset_halfwords = branch_offset(L) / 2; in brxh()
1328 int offset_halfwords = branch_offset(L) / 2; in brxhg()
Dmacro-assembler-s390.cc3446 int32_t offset = branch_offset(l); in BranchOnCount()
/external/v8/src/ppc/
Dassembler-ppc.h542 int branch_offset(Label* L) { in branch_offset() function
792 void bc(int branch_offset, BOfield bo, int condition_bit, LKBit lk = LeaveLK);
793 void b(int branch_offset, LKBit lk);
800 void b(Label* L, LKBit lk = LeaveLK) { b(branch_offset(L), lk); }
845 int b_offset = branch_offset(L);
1020 bc(branch_offset(L), DCBNZ, 0, lk);
Dassembler-ppc.cc743 void Assembler::bc(int branch_offset, BOfield bo, int condition_bit, LKBit lk) { in bc() argument
744 int imm16 = branch_offset; in bc()
750 void Assembler::b(int branch_offset, LKBit lk) { in b() argument
751 int imm26 = branch_offset; in b()
/external/v8/src/mips/
Dassembler-mips.h541 inline int32_t branch_offset(Label* L) { in branch_offset() function
551 return branch_offset(L) >> 2; in shifted_branch_offset()
734 bgezall(rs, branch_offset(L) >> 2); in bgezall()
Dassembler-mips.cc1089 int branch_offset = BranchOffset(instr); in bind_to() local
1090 if (dist > branch_offset) { in bind_to()
1095 CHECK((trampoline_pos - fixup_pos) <= branch_offset); in bind_to()
/external/v8/src/mips64/
Dassembler-mips64.h548 inline int32_t branch_offset(Label* L) { in branch_offset() function
558 return branch_offset(L) >> 2; in shifted_branch_offset()
744 bgezall(rs, branch_offset(L) >> 2); in bgezall()
Dassembler-mips64.cc1050 int branch_offset = BranchOffset(instr); in bind_to() local
1051 if (dist > branch_offset) { in bind_to()
1056 CHECK((trampoline_pos - fixup_pos) <= branch_offset); in bind_to()