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

  /frameworks/compile/mclinker/lib/Target/ARM/
ARMToARMStub.cpp 77 int64_t branch_offset = static_cast<int64_t>(dest) - pSource; local
78 if ((branch_offset > ARMGNULDBackend::ARM_MAX_FWD_BRANCH_OFFSET) ||
79 (branch_offset < ARMGNULDBackend::ARM_MAX_BWD_BRANCH_OFFSET)) {
ARMToTHMStub.cpp 78 int64_t branch_offset = static_cast<int64_t>(dest) - pSource; local
79 if ((branch_offset > ARMGNULDBackend::ARM_MAX_FWD_BRANCH_OFFSET) ||
80 (branch_offset < ARMGNULDBackend::ARM_MAX_BWD_BRANCH_OFFSET)) {
THMToARMStub.cpp 78 int64_t branch_offset = static_cast<int64_t>(dest) - pSource; local
79 if ((branch_offset > ARMGNULDBackend::THM_MAX_FWD_BRANCH_OFFSET) ||
80 (branch_offset < ARMGNULDBackend::THM_MAX_BWD_BRANCH_OFFSET))
THMToTHMStub.cpp 80 int64_t branch_offset = static_cast<int64_t>(dest) - pSource; local
81 if ((branch_offset > ARMGNULDBackend::THM_MAX_FWD_BRANCH_OFFSET) ||
82 (branch_offset < ARMGNULDBackend::THM_MAX_BWD_BRANCH_OFFSET))
  /external/v8/src/mips/
assembler-mips.h 555 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); }
    [all...]
assembler-mips.cc 1004 int32_t Assembler::branch_offset(Label* L, bool jump_elimination_allowed) { function in class:v8::Assembler
    [all...]
  /external/v8/src/arm/
assembler-arm.h 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
    [all...]
assembler-arm.cc 989 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 & 2) >> 1)*B24
    [all...]
  /external/valgrind/main/VEX/priv/
guest_mips_toIR.c 830 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),
    [all...]

Completed in 245 milliseconds