Searched refs:branch_offset (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/v8/src/mips/
H A Dassembler-mips.h478 int32_t branch_offset(Label* L, bool jump_elimination_allowed);
480 int32_t o = branch_offset(L, jump_elimination_allowed);
608 void b(Label* L) { b(branch_offset(L, false)>>2); }
610 void bal(Label* L) { bal(branch_offset(L, false)>>2); }
614 beq(rs, rt, branch_offset(L, false) >> 2);
624 bne(rs, rt, branch_offset(L, false)>>2);
788 void bc1f(Label* L, uint16_t cc = 0) { bc1f(branch_offset(L, false)>>2, cc); }
790 void bc1t(Label* L, uint16_t cc = 0) { bc1t(branch_offset(L, false)>>2, cc); }
H A Dassembler-mips.cc1009 int32_t Assembler::branch_offset(Label* L, bool jump_elimination_allowed) { function in class:v8::Assembler
/external/v8/src/mips/
H A Dassembler-mips.h555 int32_t branch_offset(Label* L, bool jump_elimination_allowed);
557 int32_t o = branch_offset(L, jump_elimination_allowed);
673 void b(Label* L) { b(branch_offset(L, false)>>2); }
675 void bal(Label* L) { bal(branch_offset(L, false)>>2); }
679 beq(rs, rt, branch_offset(L, false) >> 2);
689 bne(rs, rt, branch_offset(L, false)>>2);
852 void bc1f(Label* L, uint16_t cc = 0) { bc1f(branch_offset(L, false)>>2, cc); }
854 void bc1t(Label* L, uint16_t cc = 0) { bc1t(branch_offset(L, false)>>2, cc); }
H A Dassembler-mips.cc1004 int32_t Assembler::branch_offset(Label* L, bool jump_elimination_allowed) { function in class:v8::Assembler
/external/v8/src/arm/
H A Dassembler-arm.h673 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
H A Dassembler-arm.cc989 int Assembler::branch_offset(Label* L, bool jump_elimination_allowed) {
1026 void Assembler::b(int branch_offset, Condition cond) {
1027 ASSERT((branch_offset & 3) == 0);
1028 int imm24 = branch_offset >> 2;
1039 void Assembler::bl(int branch_offset, Condition cond) {
1041 ASSERT((branch_offset & 3) == 0);
1042 int imm24 = branch_offset >> 2;
1048 void Assembler::blx(int branch_offset) { // v5 and above
1050 ASSERT((branch_offset & 1) == 0);
1051 int h = ((branch_offset
[all...]
/external/chromium_org/v8/src/arm/
H A Dassembler-arm.h749 int branch_offset(Label* L, bool jump_elimination_allowed);
829 void b(int branch_offset, Condition cond = al);
830 void bl(int branch_offset, Condition cond = al);
831 void blx(int branch_offset); // v5 and above
837 b(branch_offset(L, cond == al), cond);
839 void b(Condition cond, Label* L) { b(branch_offset(L, cond == al), cond); }
840 void bl(Label* L, Condition cond = al) { bl(branch_offset(L, false), cond); }
841 void bl(Condition cond, Label* L) { bl(branch_offset(L, false), cond); }
842 void blx(Label* L) { blx(branch_offset(L, false)); } // v5 and above
H A Dassembler-arm.cc1210 int Assembler::branch_offset(Label* L, bool jump_elimination_allowed) { function in class:v8::internal::Assembler
1248 void Assembler::b(int branch_offset, Condition cond) { argument
1249 ASSERT((branch_offset & 3) == 0);
1250 int imm24 = branch_offset >> 2;
1261 void Assembler::bl(int branch_offset, Condition cond) { argument
1263 ASSERT((branch_offset & 3) == 0);
1264 int imm24 = branch_offset >> 2;
1270 void Assembler::blx(int branch_offset) { // v5 and above argument
1272 ASSERT((branch_offset & 1) == 0);
1273 int h = ((branch_offset
[all...]
/external/valgrind/main/VEX/priv/
H A Dguest_mips_toIR.c830 ULong branch_offset; local
838 branch_offset = extend_s_18to32(imm << 2);
848 return mkU32(guest_PC_curr_instr + 4 + branch_offset);
853 ULong branch_offset; local
866 branch_offset = extend_s_18to32(imm << 2);
871 IRConst_U32(guest_PC_curr_instr + 4 + (UInt) branch_offset),

Completed in 93 milliseconds