/external/google-breakpad/src/processor/ |
disassembler_x86.cc | 65 uint32_t instr_size = 0; local 66 instr_size = libdis::x86_disasm((unsigned char *)bytecode_, size_, 69 if (instr_size == 0) { 74 current_byte_offset_ += instr_size; 210 return instr_size;
|
/art/runtime/arch/arm/ |
fault_handler_arm.cc | 45 uint32_t instr_size = is_32bit ? 4 : 2; local 46 return instr_size; 105 uint32_t instr_size = GetInstructionSize(ptr); local 107 *out_return_pc = (sc->arm_pc + instr_size) | 1; 123 uint32_t instr_size = GetInstructionSize(ptr); local 124 sc->arm_lr = (sc->arm_pc + instr_size) | 1; // LR needs to point to gc map location
|
/art/runtime/arch/x86/ |
fault_handler_x86.cc | 286 uint32_t instr_size = GetInstructionSize(pc); local 287 if (instr_size == 0) { 292 *out_return_pc = reinterpret_cast<uintptr_t>(pc + instr_size); 300 uint32_t instr_size = GetInstructionSize(pc); local 301 if (instr_size == 0) { 312 uintptr_t retaddr = reinterpret_cast<uintptr_t>(pc + instr_size);
|
/external/valgrind/callgrind/ |
sim.c | [all...] |
main.c | 115 CLG_(bb_base) + ii->instr_offset, ii->instr_size); 773 We only can set instr_offset/instr_size here. The required event set and 779 InstrInfo* next_InstrInfo ( ClgState* clgs, UInt instr_size ) 788 CLG_ASSERT(ii->instr_size == instr_size); 792 ii->instr_size = instr_size; 798 clgs->instr_offset += instr_size; [all...] |
callstack.c | 242 from->bb->instr[instr].instr_size;
|
global.h | 250 UInt instr_size; member in struct:_InstrInfo
|
/toolchain/binutils/binutils-2.25/gas/config/ |
tc-ns32k.c | 129 int instr_size; /* Max size of instruction in bytes. */ member in struct:int_ins_form 965 iif.instr_size, 997 iif.instr_size += suffixP[i] ? suffixP[i] : 4; 1004 iif.instr_size += suffixP[i] ? suffixP[i] : 4; 1045 iif.instr_size += 1; 1058 iif.instr_size += 1; /* 1 byte is allocated after the opcode. */ 1073 iif.instr_size += 1; 1237 iif.instr_size = desc->opcode_size / 8; 1238 IIF (1, 1, iif.instr_size, desc->opcode_seed, 0, 0, 0, 0, 0, 0, -1, 0); [all...] |
/external/v8/src/x87/ |
assembler-x87.cc | 222 desc->instr_size = pc_offset(); [all...] |
/external/v8/src/ |
globals.h | 551 // |<------------- instr_size ---------->| |<-- reloc_size -->| 563 int instr_size; member in struct:v8::internal::CodeDesc
|
factory.cc | [all...] |
deoptimizer.cc | [all...] |
/external/v8/test/cctest/ |
test-disasm-arm64.cc | 47 #define INSTR_SIZE (1024) 52 byte* buf = static_cast<byte*>(malloc(INSTR_SIZE)); \ 55 isolate, buf, INSTR_SIZE, v8::internal::CodeObjectRequired::kYes); \ 65 byte* buf = static_cast<byte*>(malloc(INSTR_SIZE)); \ 67 Assembler* assm = new Assembler(isolate, buf, INSTR_SIZE); \ [all...] |
/external/v8/src/ia32/ |
assembler-ia32.cc | 307 desc->instr_size = pc_offset(); [all...] |
/external/v8/src/ppc/ |
assembler-ppc.cc | 225 desc->instr_size = pc_offset(); 228 (constant_pool_offset ? desc->instr_size - constant_pool_offset : 0); [all...] |
/external/v8/src/x64/ |
assembler-x64.cc | 290 desc->instr_size = pc_offset(); 291 DCHECK(desc->instr_size > 0); // Zero-size code objects upset the system. 393 desc.instr_size = pc_offset(); 407 MemMove(desc.buffer, buffer_, desc.instr_size); [all...] |
/external/v8/src/arm64/ |
assembler-arm64.cc | 587 desc->instr_size = pc_offset(); [all...] |
/external/v8/src/mips/ |
assembler-mips.cc | 296 desc->instr_size = pc_offset(); [all...] |
/external/v8/src/mips64/ |
assembler-mips64.cc | 272 desc->instr_size = pc_offset(); [all...] |
/external/v8/src/arm/ |
assembler-arm.cc | 510 desc->instr_size = pc_offset(); 513 (constant_pool_offset ? desc->instr_size - constant_pool_offset : 0); [all...] |
/external/vixl/test/ |
test-disasm-a64.cc | 37 #define INSTR_SIZE (1024) 39 byte* buf = new byte[INSTR_SIZE]; \ 41 ASMCLASS* masm = new ASMCLASS(buf, INSTR_SIZE); \ [all...] |