Home
last modified time | relevance | path

Searched refs:instruction_bits (Results 1 – 1 of 1) sorted by relevance

/external/v8/src/arm/
Ddisasm-arm.cc2018 int instruction_bits = *(reinterpret_cast<int*>(instr_ptr)); in IsConstantPoolAt() local
2019 return (instruction_bits & kConstantPoolMarkerMask) == kConstantPoolMarker; in IsConstantPoolAt()
2025 int instruction_bits = *(reinterpret_cast<int*>(instr_ptr)); in ConstantPoolSizeAt() local
2026 return DecodeConstantPoolLength(instruction_bits); in ConstantPoolSizeAt()
2044 int instruction_bits = *(reinterpret_cast<int*>(instr_ptr)); in InstructionDecode() local
2045 if ((instruction_bits & kConstantPoolMarkerMask) == kConstantPoolMarker) { in InstructionDecode()
2048 DecodeConstantPoolLength(instruction_bits)); in InstructionDecode()
2050 } else if (instruction_bits == kCodeAgeJumpInstruction) { in InstructionDecode()