| /src/external/gpl3/gdb/dist/gdb/arch/ |
| arm.c | 110 arm_instruction_changes_pc (uint32_t this_instr) 112 if (bits (this_instr, 28, 31) == INST_NV) 114 switch (bits (this_instr, 24, 27)) 124 if (bits (this_instr, 12, 15) == 15) 131 switch (bits (this_instr, 25, 27)) 134 if (bits (this_instr, 23, 24) == 2 && bit (this_instr, 20) == 0) 137 if (bit (this_instr, 4) == 1 && bit (this_instr, 7) == 1) 145 if (bits (this_instr, 4, 27) == 0x12fff [all...] |
| arm-get-next-pcs.c | 651 unsigned long this_instr = 0; local 659 this_instr = self->ops->read_mem_uint (pc, 4, byte_order_for_code); 664 if (bits (this_instr, 28, 31) == INST_NV) 665 switch (bits (this_instr, 24, 27)) 671 nextpc = BranchDest (pc, this_instr); 672 nextpc |= bit (this_instr, 24) << 1; 680 if (bits (this_instr, 12, 15) == 15) 684 else if (condition_true (bits (this_instr, 28, 31), status)) 686 switch (bits (this_instr, 24, 27)) 697 if (bits (this_instr, 12, 15) != 15 [all...] |
| arm.h | 200 /* Return 1 if THIS_INSTR might change control flow, 0 otherwise. */ 201 int arm_instruction_changes_pc (uint32_t this_instr);
|
| /src/external/gpl3/gdb.old/dist/gdb/arch/ |
| arm.c | 110 arm_instruction_changes_pc (uint32_t this_instr) 112 if (bits (this_instr, 28, 31) == INST_NV) 114 switch (bits (this_instr, 24, 27)) 124 if (bits (this_instr, 12, 15) == 15) 131 switch (bits (this_instr, 25, 27)) 134 if (bits (this_instr, 23, 24) == 2 && bit (this_instr, 20) == 0) 137 if (bit (this_instr, 4) == 1 && bit (this_instr, 7) == 1) 145 if (bits (this_instr, 4, 27) == 0x12fff [all...] |
| arm-get-next-pcs.c | 652 unsigned long this_instr = 0; local 660 this_instr = self->ops->read_mem_uint (pc, 4, byte_order_for_code); 665 if (bits (this_instr, 28, 31) == INST_NV) 666 switch (bits (this_instr, 24, 27)) 672 nextpc = BranchDest (pc, this_instr); 673 nextpc |= bit (this_instr, 24) << 1; 681 if (bits (this_instr, 12, 15) == 15) 685 else if (condition_true (bits (this_instr, 28, 31), status)) 687 switch (bits (this_instr, 24, 27)) 698 if (bits (this_instr, 12, 15) != 15 [all...] |
| arm.h | 200 /* Return 1 if THIS_INSTR might change control flow, 0 otherwise. */ 201 int arm_instruction_changes_pc (uint32_t this_instr);
|
| /src/external/gpl3/gdb/dist/gdb/ |
| arm-wince-tdep.c | 90 ULONGEST this_instr; local 92 this_instr = read_memory_unsigned_integer (pc, 4, byte_order); 95 if ((this_instr & 0xfff00000) == 0xeb000000) 100 long offset = sign_extend (this_instr & 0x000fffff, 23) << 2;
|
| arm-linux-tdep.c | 878 unsigned long this_instr; local 884 this_instr = val; 886 unsigned long svc_operand = (0x00ffffff & this_instr); 923 unsigned long this_instr = local 926 unsigned long svc_operand = (0x00ffffff & this_instr);
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| arm-wince-tdep.c | 91 ULONGEST this_instr; local 93 this_instr = read_memory_unsigned_integer (pc, 4, byte_order); 96 if ((this_instr & 0xfff00000) == 0xeb000000) 101 long offset = sign_extend (this_instr & 0x000fffff, 23) << 2;
|
| arm-linux-tdep.c | 877 unsigned long this_instr; local 883 this_instr = val; 885 unsigned long svc_operand = (0x00ffffff & this_instr); 922 unsigned long this_instr = local 925 unsigned long svc_operand = (0x00ffffff & this_instr);
|
| /src/external/gpl3/gdb/dist/gdbserver/ |
| linux-arm-low.cc | 967 unsigned long this_instr; local 970 target_read_memory (pc, (unsigned char *) &this_instr, 4); 971 svc_operand = (0x00ffffff & this_instr);
|
| /src/external/gpl3/gdb.old/dist/gdbserver/ |
| linux-arm-low.cc | 926 unsigned long this_instr; local 929 target_read_memory (pc, (unsigned char *) &this_instr, 4); 930 svc_operand = (0x00ffffff & this_instr);
|