Searched defs:instr_ptr (Results 1 - 8 of 8) sorted by relevance

/external/v8/src/arm/
H A Dassembler-arm-inl.h561 uint32_t* instr_ptr = reinterpret_cast<uint32_t*>(pc); local
563 instr_ptr[0] = PatchMovwImmediate(instr_ptr[0], immediate & 0xFFFF);
564 instr_ptr[1] = PatchMovwImmediate(instr_ptr[1], immediate >> 16);
577 uint32_t* instr_ptr = reinterpret_cast<uint32_t*>(pc); local
579 instr_ptr[0] = PatchShiftImm(instr_ptr[0], immediate & kImm8Mask);
580 instr_ptr[1] = PatchShiftImm(instr_ptr[
[all...]
H A Ddisasm-arm.cc66 static bool IsConstantPoolAt(byte* instr_ptr);
67 static int ConstantPoolSizeAt(byte* instr_ptr);
2017 bool Decoder::IsConstantPoolAt(byte* instr_ptr) { argument
2018 int instruction_bits = *(reinterpret_cast<int*>(instr_ptr));
2023 int Decoder::ConstantPoolSizeAt(byte* instr_ptr) { argument
2024 if (IsConstantPoolAt(instr_ptr)) {
2025 int instruction_bits = *(reinterpret_cast<int*>(instr_ptr));
2033 // Disassemble the instruction at *instr_ptr into the output buffer.
2034 int Decoder::InstructionDecode(byte* instr_ptr) { argument
2035 Instruction* instr = Instruction::At(instr_ptr);
[all...]
/external/v8/src/ppc/
H A Ddisasm-ppc.cc1078 // Disassemble the instruction at *instr_ptr into the output buffer.
1079 int Decoder::InstructionDecode(byte* instr_ptr) { argument
1080 Instruction* instr = Instruction::At(instr_ptr);
/external/v8/src/s390/
H A Ddisasm-s390.cc1399 // Disassemble the instruction at *instr_ptr into the output buffer.
1400 int Decoder::InstructionDecode(byte* instr_ptr) { argument
1401 Instruction* instr = Instruction::At(instr_ptr);
/external/v8/src/mips/
H A Ddisasm-mips.cc1708 // Disassemble the instruction at *instr_ptr into the output buffer.
1709 int Decoder::InstructionDecode(byte* instr_ptr) { argument
1710 Instruction* instr = Instruction::At(instr_ptr);
/external/v8/src/mips64/
H A Ddisasm-mips64.cc1939 // Disassemble the instruction at *instr_ptr into the output buffer.
1943 int Decoder::InstructionDecode(byte* instr_ptr) { argument
1944 Instruction* instr = Instruction::At(instr_ptr);
/external/vixl/src/aarch32/
H A Dmacro-assembler-aarch32.cc533 uint16_t* instr_ptr = buffer_.GetOffsetAddress<uint16_t*>(location); local
534 if ((instr_ptr[0] & kCbzCbnzMask) == kCbzCbnzValue) {
H A Dassembler-aarch32.cc117 uint16_t* instr_ptr = buffer_.GetOffsetAddress<uint16_t*>(location); local
118 if (Is16BitEncoding(instr_ptr[0])) {
121 uint32_t instr = static_cast<uint32_t>(instr_ptr[0]);
125 instr_ptr[0] = static_cast<uint16_t>(instr);
128 instr_ptr[1] | (static_cast<uint32_t>(instr_ptr[0]) << 16);
130 instr_ptr[0] = static_cast<uint16_t>(instr >> 16);
131 instr_ptr[1] = static_cast<uint16_t>(instr);
134 uint32_t* instr_ptr = buffer_.GetOffsetAddress<uint32_t*>(location); local
135 instr_ptr[
[all...]

Completed in 410 milliseconds