Searched refs:instruction_bits (Results 1 – 1 of 1) sorted by relevance
2018 int instruction_bits = *(reinterpret_cast<int*>(instr_ptr)); in IsConstantPoolAt() local2019 return (instruction_bits & kConstantPoolMarkerMask) == kConstantPoolMarker; in IsConstantPoolAt()2025 int instruction_bits = *(reinterpret_cast<int*>(instr_ptr)); in ConstantPoolSizeAt() local2026 return DecodeConstantPoolLength(instruction_bits); in ConstantPoolSizeAt()2044 int instruction_bits = *(reinterpret_cast<int*>(instr_ptr)); in InstructionDecode() local2045 if ((instruction_bits & kConstantPoolMarkerMask) == kConstantPoolMarker) { in InstructionDecode()2048 DecodeConstantPoolLength(instruction_bits)); in InstructionDecode()2050 } else if (instruction_bits == kCodeAgeJumpInstruction) { in InstructionDecode()