Home | History | Annotate | Download | only in arm

Lines Matching refs:branch_offset

1426 int Assembler::branch_offset(Label* L) {
1450 void Assembler::b(int branch_offset, Condition cond) {
1451 DCHECK((branch_offset & 3) == 0);
1452 int imm24 = branch_offset >> 2;
1463 void Assembler::bl(int branch_offset, Condition cond) {
1464 DCHECK((branch_offset & 3) == 0);
1465 int imm24 = branch_offset >> 2;
1470 void Assembler::blx(int branch_offset) {
1471 DCHECK((branch_offset & 1) == 0);
1472 int h = ((branch_offset & 2) >> 1)*B24;
1473 int imm24 = branch_offset >> 2;
1491 b(branch_offset(L), cond);
1497 bl(branch_offset(L), cond);
1503 blx(branch_offset(L));