Lines Matching refs:branch_offset
973 int Assembler::branch_offset(Label* L, bool jump_elimination_allowed) {
1010 void Assembler::b(int branch_offset, Condition cond) {
1011 ASSERT((branch_offset & 3) == 0);
1012 int imm24 = branch_offset >> 2;
1023 void Assembler::bl(int branch_offset, Condition cond) {
1025 ASSERT((branch_offset & 3) == 0);
1026 int imm24 = branch_offset >> 2;
1032 void Assembler::blx(int branch_offset) { // v5 and above
1034 ASSERT((branch_offset & 1) == 0);
1035 int h = ((branch_offset & 2) >> 1)*B24;
1036 int imm24 = branch_offset >> 2;