Home
last modified time | relevance | path

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

/external/v8/src/mips/
Dassembler-mips.h555 int32_t branch_offset(Label* L, bool jump_elimination_allowed);
557 int32_t o = branch_offset(L, jump_elimination_allowed); in shifted_branch_offset()
673 void b(Label* L) { b(branch_offset(L, false)>>2); } in b()
675 void bal(Label* L) { bal(branch_offset(L, false)>>2); } in bal()
679 beq(rs, rt, branch_offset(L, false) >> 2); in beq()
689 bne(rs, rt, branch_offset(L, false)>>2); in bne()
852 void bc1f(Label* L, uint16_t cc = 0) { bc1f(branch_offset(L, false)>>2, cc); }
854 void bc1t(Label* L, uint16_t cc = 0) { bc1t(branch_offset(L, false)>>2, cc); }
Dassembler-mips.cc1004 int32_t Assembler::branch_offset(Label* L, bool jump_elimination_allowed) { in branch_offset() function in v8::internal::Assembler
/external/v8/src/arm/
Dassembler-arm.h673 int branch_offset(Label* L, bool jump_elimination_allowed);
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
777 b(branch_offset(L, cond == al), cond);
779 void b(Condition cond, Label* L) { b(branch_offset(L, cond == al), cond); } in b()
780 void bl(Label* L, Condition cond = al) { bl(branch_offset(L, false), cond); }
781 void bl(Condition cond, Label* L) { bl(branch_offset(L, false), cond); } in bl()
782 void blx(Label* L) { blx(branch_offset(L, false)); } // v5 and above in blx()
Dassembler-arm.cc989 int Assembler::branch_offset(Label* L, bool jump_elimination_allowed) { in branch_offset() function in v8::internal::Assembler
1026 void Assembler::b(int branch_offset, Condition cond) { in b() argument
1027 ASSERT((branch_offset & 3) == 0); in b()
1028 int imm24 = branch_offset >> 2; in b()
1039 void Assembler::bl(int branch_offset, Condition cond) { in bl() argument
1041 ASSERT((branch_offset & 3) == 0); in bl()
1042 int imm24 = branch_offset >> 2; in bl()
1048 void Assembler::blx(int branch_offset) { // v5 and above in blx() argument
1050 ASSERT((branch_offset & 1) == 0); in blx()
1051 int h = ((branch_offset & 2) >> 1)*B24; in blx()
[all …]