Home
last modified time | relevance | path

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

/external/v8/src/ppc/
Dassembler-ppc.h432 int branch_offset(Label* L) { in branch_offset() function
571 void bc(int branch_offset, BOfield bo, int condition_bit, LKBit lk = LeaveLK);
572 void b(int branch_offset, LKBit lk);
579 void b(Label* L, LKBit lk = LeaveLK) { b(branch_offset(L), lk); }
624 int b_offset = branch_offset(L);
799 bc(branch_offset(L), DCBNZ, 0, lk);
Dassembler-ppc.cc700 void Assembler::bc(int branch_offset, BOfield bo, int condition_bit, LKBit lk) { in bc() argument
704 int imm16 = branch_offset; in bc()
710 void Assembler::b(int branch_offset, LKBit lk) { in b() argument
714 int imm26 = branch_offset; in b()
/external/v8/src/arm/
Dassembler-arm.cc1329 int Assembler::branch_offset(Label* L) { in branch_offset() function in v8::internal::Assembler
1353 void Assembler::b(int branch_offset, Condition cond) { in b() argument
1354 DCHECK((branch_offset & 3) == 0); in b()
1355 int imm24 = branch_offset >> 2; in b()
1366 void Assembler::bl(int branch_offset, Condition cond) { in bl() argument
1368 DCHECK((branch_offset & 3) == 0); in bl()
1369 int imm24 = branch_offset >> 2; in bl()
1375 void Assembler::blx(int branch_offset) { // v5 and above in blx() argument
1377 DCHECK((branch_offset & 1) == 0); in blx()
1378 int h = ((branch_offset & 2) >> 1)*B24; in blx()
[all …]
Dassembler-arm.h660 int branch_offset(Label* L);
744 void b(int branch_offset, Condition cond = al);
745 void bl(int branch_offset, Condition cond = al);
746 void blx(int branch_offset); // v5 and above
/external/v8/src/mips/
Dassembler-mips.h434 inline int32_t branch_offset(Label* L) { in branch_offset() function
444 return branch_offset(L) >> 2; in shifted_branch_offset()
622 bgezall(rs, branch_offset(L) >> 2); in bgezall()
Dassembler-mips.cc853 int branch_offset = BranchOffset(instr); in bind_to() local
854 if (dist > branch_offset) { in bind_to()
859 CHECK((trampoline_pos - fixup_pos) <= branch_offset); in bind_to()
/external/v8/src/mips64/
Dassembler-mips64.h437 inline int32_t branch_offset(Label* L) { in branch_offset() function
447 return branch_offset(L) >> 2; in shifted_branch_offset()
626 bgezall(rs, branch_offset(L) >> 2); in bgezall()
Dassembler-mips64.cc867 int branch_offset = BranchOffset(instr); in bind_to() local
868 if (dist > branch_offset) { in bind_to()
873 CHECK((trampoline_pos - fixup_pos) <= branch_offset); in bind_to()
/external/valgrind/VEX/priv/
Dguest_mips_toIR.c1344 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/
Dfull-codegen-arm.cc4823 int branch_offset = pc - Instruction::kPCReadOffset - branch_address + in PatchAt() local
4825 patcher.masm()->b(branch_offset, pl); in PatchAt()