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

/external/v8/src/mips/
H A Dassembler-mips.h312 int32_t branch_offset(Label* L, bool jump_elimination_allowed);
314 int32_t o = branch_offset(L, jump_elimination_allowed);
368 void b(Label* L) { b(branch_offset(L, false)>>2); }
370 void bal(Label* L) { bal(branch_offset(L, false)>>2); }
374 beq(rs, rt, branch_offset(L, false) >> 2);
384 bne(rs, rt, branch_offset(L, false)>>2);
500 void bc1f(Label* L, uint16_t cc = 0) { bc1f(branch_offset(L, false)>>2, cc); }
502 void bc1t(Label* L, uint16_t cc = 0) { bc1t(branch_offset(L, false)>>2, cc); }
H A Dassembler-mips.cc538 int32_t Assembler::branch_offset(Label* L, bool jump_elimination_allowed) { function in class:v8::internal::Assembler
/external/v8/src/arm/
H A Dassembler-arm.h558 int branch_offset(Label* L, bool jump_elimination_allowed);
615 void b(int branch_offset, Condition cond = al);
616 void bl(int branch_offset, Condition cond = al);
617 void blx(int branch_offset); // v5 and above
623 b(branch_offset(L, cond == al), cond);
625 void b(Condition cond, Label* L) { b(branch_offset(L, cond == al), cond); }
626 void bl(Label* L, Condition cond = al) { bl(branch_offset(L, false), cond); }
627 void bl(Condition cond, Label* L) { bl(branch_offset(L, false), cond); }
628 void blx(Label* L) { blx(branch_offset(L, false)); } // v5 and above
H A Dassembler-thumb2.h558 int branch_offset(Label* L, bool jump_elimination_allowed);
615 void b(int branch_offset, Condition cond = al);
616 void bl(int branch_offset, Condition cond = al);
617 void blx(int branch_offset); // v5 and above
623 b(branch_offset(L, cond == al), cond);
625 void b(Condition cond, Label* L) { b(branch_offset(L, cond == al), cond); }
626 void bl(Label* L, Condition cond = al) { bl(branch_offset(L, false), cond); }
627 void bl(Condition cond, Label* L) { bl(branch_offset(L, false), cond); }
628 void blx(Label* L) { blx(branch_offset(L, false)); } // v5 and above
H A Dassembler-arm.cc801 int Assembler::branch_offset(Label* L, bool jump_elimination_allowed) { function in class:v8::internal::Assembler
838 void Assembler::b(int branch_offset, Condition cond) { argument
839 ASSERT((branch_offset & 3) == 0);
840 int imm24 = branch_offset >> 2;
850 void Assembler::bl(int branch_offset, Condition cond) { argument
851 ASSERT((branch_offset & 3) == 0);
852 int imm24 = branch_offset >> 2;
858 void Assembler::blx(int branch_offset) { // v5 and above argument
860 ASSERT((branch_offset & 1) == 0);
861 int h = ((branch_offset
[all...]
H A Dassembler-thumb2.cc781 int Assembler::branch_offset(Label* L, bool jump_elimination_allowed) { function in class:v8::internal::Assembler
818 void Assembler::b(int branch_offset, Condition cond) { argument
819 ASSERT((branch_offset & 3) == 0);
820 int imm24 = branch_offset >> 2;
830 void Assembler::bl(int branch_offset, Condition cond) { argument
831 ASSERT((branch_offset & 3) == 0);
832 int imm24 = branch_offset >> 2;
838 void Assembler::blx(int branch_offset) { // v5 and above argument
840 ASSERT((branch_offset & 1) == 0);
841 int h = ((branch_offset
[all...]

Completed in 57 milliseconds