Searched refs:branch_offset (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/v8/src/mips/
H A Dassembler-mips.h469 int32_t branch_offset(Label* L, bool jump_elimination_allowed);
474 int32_t o = branch_offset(L, jump_elimination_allowed);
632 void b(Label* L) { b(branch_offset(L, false)>>2); }
634 void bal(Label* L) { bal(branch_offset(L, false)>>2); }
638 beq(rs, rt, branch_offset(L, false) >> 2);
660 bgezall(rs, branch_offset(L, false)>>2);
724 bne(rs, rt, branch_offset(L, false)>>2);
927 bc1eqz(branch_offset(L, false)>>2, ft);
931 bc1nez(branch_offset(L, false)>>2, ft);
939 void bc1f(Label* L, uint16_t cc = 0) { bc1f(branch_offset(
[all...]
H A Dassembler-mips.cc1026 int32_t Assembler::branch_offset(Label* L, bool jump_elimination_allowed) { function in class:v8::Assembler
/external/chromium_org/v8/src/mips64/
H A Dassembler-mips64.h459 int32_t branch_offset(Label* L, bool jump_elimination_allowed);
464 int32_t o = branch_offset(L, jump_elimination_allowed);
623 void b(Label* L) { b(branch_offset(L, false)>>2); }
625 void bal(Label* L) { bal(branch_offset(L, false)>>2); }
629 beq(rs, rt, branch_offset(L, false) >> 2);
651 bgezall(rs, branch_offset(L, false)>>2);
716 bne(rs, rt, branch_offset(L, false)>>2);
959 bc1eqz(branch_offset(L, false)>>2, ft);
963 bc1nez(branch_offset(L, false)>>2, ft);
972 bc1f(branch_offset(
[all...]
H A Dassembler-mips64.cc1008 int32_t Assembler::branch_offset(Label* L, bool jump_elimination_allowed) { function in class:v8::Assembler
/external/chromium_org/v8/src/arm/
H A Dassembler-arm.h744 int branch_offset(Label* L, bool jump_elimination_allowed);
836 void b(int branch_offset, Condition cond = al);
837 void bl(int branch_offset, Condition cond = al);
838 void blx(int branch_offset); // v5 and above
844 b(branch_offset(L, cond == al), cond);
846 void b(Condition cond, Label* L) { b(branch_offset(L, cond == al), cond); }
847 void bl(Label* L, Condition cond = al) { bl(branch_offset(L, false), cond); }
848 void bl(Condition cond, Label* L) { bl(branch_offset(L, false), cond); }
849 void blx(Label* L) { blx(branch_offset(L, false)); } // v5 and above
H A Dassembler-arm.cc1312 int Assembler::branch_offset(Label* L, bool jump_elimination_allowed) { function in class:v8::internal::Assembler
1335 void Assembler::b(int branch_offset, Condition cond) { argument
1336 DCHECK((branch_offset & 3) == 0);
1337 int imm24 = branch_offset >> 2;
1348 void Assembler::bl(int branch_offset, Condition cond) { argument
1350 DCHECK((branch_offset & 3) == 0);
1351 int imm24 = branch_offset >> 2;
1357 void Assembler::blx(int branch_offset) { // v5 and above argument
1359 DCHECK((branch_offset & 1) == 0);
1360 int h = ((branch_offset
[all...]
H A Dfull-codegen-arm.cc4953 int branch_offset = pc - Instruction::kPCReadOffset - branch_address + local
4955 patcher.masm()->b(branch_offset, pl);
/external/valgrind/main/VEX/priv/
H A Dguest_mips_toIR.c1338 ULong branch_offset; local
1347 branch_offset = extend_s_18to64(imm << 2);
1349 branch_offset = extend_s_18to32(imm << 2);
1364 return mkU64(guest_PC_curr_instr + 4 + branch_offset);
1366 return mkU32(guest_PC_curr_instr + 4 + branch_offset);
1371 ULong branch_offset; local
1388 branch_offset = extend_s_18to64(imm << 2);
1390 branch_offset = extend_s_18to32(imm << 2);
1396 IRConst_U64(guest_PC_curr_instr + 4 + branch_offset),
1401 (UInt) branch_offset), OFFB_P
[all...]

Completed in 1675 milliseconds