Home
last modified time | relevance | path

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

/art/compiler/dex/
Ddex_to_dex_compiler.cc173 VLOG(compiler) << "Replacing " << Instruction::Name(inst->Opcode()) in CompileReturnVoid()
174 << " by " << Instruction::Name(Instruction::RETURN_VOID_BARRIER) in CompileReturnVoid()
194 VLOG(compiler) << "Removing " << Instruction::Name(inst->Opcode()) in CompileCheckCast()
222 VLOG(compiler) << "Quickening " << Instruction::Name(inst->Opcode()) in CompileInstanceFieldAccess()
223 << " to " << Instruction::Name(new_opcode) in CompileInstanceFieldAccess()
256 VLOG(compiler) << "Quickening " << Instruction::Name(inst->Opcode()) in CompileInvokeVirtual()
258 << " to " << Instruction::Name(new_opcode) in CompileInvokeVirtual()
Dmir_graph.cc702 LOG(INFO) << "-C- " << Instruction::Name(static_cast<Instruction::Code>(i)) in ShowOpcodeStats()
746 (opcode < kMirOpFirst) ? Instruction::Name(mir->dalvikInsn.opcode) : in DumpCFG()
914 str.append(Instruction::Name(insn.opcode)); in GetDalvikDisassembly()
/art/runtime/
Ddex_instruction.cc137 default: LOG(FATAL) << "Tried to access vC of instruction " << Name() << in VRegC()
153 default: LOG(FATAL) << "Tried to access vB of instruction " << Name() << in VRegB()
179 default: LOG(FATAL) << "Tried to access vA of instruction " << Name() << in VRegA()
194 default: LOG(FATAL) << "Tried to access the branch offset of an instruction " << Name() << in GetTargetOffset()
621 return os << Instruction::Name(code); in operator <<()
Ddex_instruction.h208 const char* Name() const { in Name() function
209 return Instruction::Name(Opcode()); in Name()
213 static const char* Name(Code opcode) { in Name() function
/art/runtime/base/
Dhistogram.h78 const std::string& Name() const { in Name() function
Dhistogram-inl.h165 os << Name() << ":\t"; in PrintConfidenceIntervals()
/art/compiler/llvm/
Dir_builder.h44 void InsertHelper(::llvm::Instruction *I, const ::llvm::Twine &Name, in InsertHelper() argument
47 ::llvm::IRBuilderDefaultInserter<true>::InsertHelper(I, Name, BB, InsertPt); in InsertHelper()
/art/runtime/verifier/
Dmethod_verifier.cc680 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "unexpected opcode " << inst->Name(); in VerifyInstruction()
3149 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer method from " << inst->Name(); in VerifyInvokeVirtualQuickArgs()
3658 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer field from " << inst->Name(); in VerifyIGetQuick()
3702 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Cannot infer field from " << inst->Name(); in VerifyIPutQuick()
/art/compiler/dex/portable/
Dmir_to_gbc.cc699 LOG(INFO) << ".. " << Instruction::Name(opcode) << " 0x" << std::hex << op_val; in ConvertMIRNode()
1758 Instruction::Name(dalvik_opcode), in BlockBitcodeConversion()