Lines Matching refs:instr
39 void Decoder::Decode(const Instruction* instr) {
50 compiled_decoder_root_->Decode(instr);
53 void Decoder::Decode(Instruction* instr) {
54 compiled_decoder_root_->Decode(const_cast<const Instruction*>(instr));
152 void Decoder::VisitNamedInstruction(const Instruction* instr,
157 (*it)->Visit(&m, instr);
523 void CompiledDecodeNode::Decode(const Instruction* instr) const {
527 decoder_->VisitNamedInstruction(instr, instruction_name_);
532 VIXL_ASSERT((instr->*bit_extract_fn_)() < decode_table_size_);
533 VIXL_ASSERT(decode_table_[(instr->*bit_extract_fn_)()] != NULL);
534 decode_table_[(instr->*bit_extract_fn_)()]->Decode(instr);