Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_instruction_test.cc164 return Instruction::At(inst)->DumpString(nullptr); in DumpInst35c()
167 TEST(Instruction, DumpString) { in TEST() argument
Ddex_instruction.cc116 LOG(FATAL) << "Unreachable: " << DumpString(nullptr); in SizeInCodeUnitsComplexOpcode()
136 LOG(FATAL) << "Unreachable: " << DumpString(nullptr); in CodeUnitsRequiredForSizeOfComplexOpcode()
175 std::string Instruction::DumpString(const DexFile* file) const { in DumpString() function in art::Instruction
Ddex_instruction.h631 std::string DumpString(const DexFile*) const;
/art/test/983-source-transform-verify/
Dsource_transform_art.cc65 << inst.DumpString(dex.get()) << std::endl; in VerifyClassData()
/art/dexdump/
Ddexdump_cfg.cc109 std::string inst_str = pair.Inst().DumpString(dex_file); in DumpMethodCFG()
/art/runtime/
Dcommon_throws.cc581 << instr.DumpString(dex_file) in ThrowNullPointerExceptionFromDexPC()
719 << instr.DumpString(dex_file) in ThrowNullPointerExceptionFromDexPC()
/art/dex2oat/dex/
Ddex_to_dex_compiler.cc186 LOG(ERROR) << pair->DumpString(nullptr); in NextIndex()
/art/runtime/interpreter/
Dinterpreter_common.h592 << inst->DumpString(shadow_frame.GetMethod()->GetDexFile()) << "\n"; in TraceExecution()
Dinterpreter_common.cc533 << inst->DumpString(shadow_frame.GetMethod()->GetDexFile()); in UnexpectedOpcode()
/art/tools/dexanalyze/
Ddexanalyze_bytecode.cc227 std::cout << inst->DumpString(nullptr); in ProcessCodeItem()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc1207 return accessor.InstructionAt(dex_pc).DumpString(method->GetDexFile()); in DumpInstruction()
1374 LOG(FATAL) << "Unexpected call into trampoline: " << instr.DumpString(nullptr); in artQuickResolutionTrampoline()
2659 << "Unexpected call into interface trampoline: " << instr.DumpString(nullptr); in artInvokeInterfaceTrampoline()
/art/runtime/verifier/
Dmethod_verifier.cc1650 vios->Stream() << inst->DumpString(dex_file_) << "\n"; in Dump()
2044 LogVerifyInfo() << "Processing " << inst->DumpString(dex_file_) << std::endl in CodeFlowVerifyInstruction()
3459 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Unexpected opcode " << inst->DumpString(dex_file_); in CodeFlowVerifyInstruction()
3483 info_messages_ << "Rejecting opcode " << inst->DumpString(dex_file_); in CodeFlowVerifyInstruction()
/art/oatdump/
Doatdump.cc1150 << StringPrintf("\t| %s\n", inst->DumpString(&dex_file).c_str()); in DumpOatMethod()