HomeSort by relevance Sort by last modified time
    Searched full:branch_offset (Results 1 - 25 of 30) sorted by null

1 2

  /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/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...]
macro-assembler-mips.cc     [all...]
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java     [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/arm-eabi/bin/
nm 
ar 
objcopy 
ranlib 
strip 
as 
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/
arm-eabi-addr2line 
arm-eabi-c++filt 
arm-eabi-nm 
arm-eabi-size 
arm-eabi-strings 
arm-eabi-ar 
arm-eabi-gprof 
arm-eabi-objcopy 
arm-eabi-ranlib 
arm-eabi-run 
arm-eabi-strip 
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/bin/
arm-linux-androideabi-objcopy 
arm-linux-androideabi-strip 

Completed in 423 milliseconds

1 2