Home | History | Annotate | Download | only in arm

Lines Matching refs:branch_offset

673   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); }
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); }
782 void blx(Label* L) { blx(branch_offset(L, false)); } // v5 and above