HomeSort by relevance Sort by last modified time
    Searched refs:branch_offset (Results 1 - 4 of 4) sorted by null

  /external/v8/src/mips/
assembler-mips.h 447 int32_t branch_offset(Label* L, bool jump_elimination_allowed);
449 int32_t o = branch_offset(L, jump_elimination_allowed);
554 void b(Label* L) { b(branch_offset(L, false)>>2); }
556 void bal(Label* L) { bal(branch_offset(L, false)>>2); }
560 beq(rs, rt, branch_offset(L, false) >> 2);
570 bne(rs, rt, branch_offset(L, false)>>2);
730 void bc1f(Label* L, uint16_t cc = 0) { bc1f(branch_offset(L, false)>>2, cc); }
732 void bc1t(Label* L, uint16_t cc = 0) { bc1t(branch_offset(L, false)>>2, cc); }
    [all...]
assembler-mips.cc 785 int32_t Assembler::branch_offset(Label* L, bool jump_elimination_allowed) { function in class:v8::internal::Assembler
    [all...]
  /external/v8/src/arm/
assembler-arm.h 641 int branch_offset(Label* L, bool jump_elimination_allowed);
739 void b(int branch_offset, Condition cond = al);
740 void bl(int branch_offset, Condition cond = al);
741 void blx(int branch_offset); // v5 and above
747 b(branch_offset(L, cond == al), cond);
749 void b(Condition cond, Label* L) { b(branch_offset(L, cond == al), cond); }
750 void bl(Label* L, Condition cond = al) { bl(branch_offset(L, false), cond); }
751 void bl(Condition cond, Label* L) { bl(branch_offset(L, false), cond); }
752 void blx(Label* L) { blx(branch_offset(L, false)); } // v5 and above
    [all...]
assembler-arm.cc 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
    [all...]

Completed in 29 milliseconds