Home | History | Annotate | Download | only in arm

Lines Matching defs:branch_offset

1345 int Assembler::branch_offset(Label* L) {
1369 void Assembler::b(int branch_offset, Condition cond) {
1370 DCHECK((branch_offset & 3) == 0);
1371 int imm24 = branch_offset >> 2;
1382 void Assembler::bl(int branch_offset, Condition cond) {
1383 DCHECK((branch_offset & 3) == 0);
1384 int imm24 = branch_offset >> 2;
1390 void Assembler::blx(int branch_offset) { // v5 and above
1391 DCHECK((branch_offset & 1) == 0);
1392 int h = ((branch_offset & 2) >> 1)*B24;
1393 int imm24 = branch_offset >> 2;
1413 b(branch_offset(L), cond);
1419 bl(branch_offset(L), cond);
1425 blx(branch_offset(L));