Home
last modified time | relevance | path

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

/aosp12/art/libdexfile/dex/
H A Ddex_instruction_test.cc164 return Instruction::At(inst)->DumpString(nullptr); in DumpInst35c()
167 TEST(Instruction, DumpString) { in TEST() argument
H A 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
H A Ddex_instruction.h638 std::string DumpString(const DexFile*) const;
/aosp12/art/test/983-source-transform-verify/
H A Dsource_transform_art.cc64 << inst.DumpString(dex.get()) << std::endl; in VerifyClassData()
/aosp12/art/dexdump/
H A Ddexdump_cfg.cc109 std::string inst_str = pair.Inst().DumpString(dex_file); in DumpMethodCFG()
/aosp12/art/runtime/
H A Dcommon_throws.cc557 << instr.DumpString(dex_file) in ThrowNullPointerExceptionFromDexPC()
657 << instr.DumpString(dex_file) in ThrowNullPointerExceptionFromDexPC()
/aosp12/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc1125 return accessor.InstructionAt(dex_pc).DumpString(method->GetDexFile()); in DumpInstruction()
1292 LOG(FATAL) << "Unexpected call into trampoline: " << instr.DumpString(nullptr); in artQuickResolutionTrampoline()
2311 << "Unexpected call into interface trampoline: " << instr.DumpString(nullptr); in artInvokeInterfaceTrampoline()
/aosp12/art/tools/dexanalyze/
H A Ddexanalyze_bytecode.cc227 std::cout << inst->DumpString(nullptr); in ProcessCodeItem()
/aosp12/art/runtime/interpreter/
H A Dinterpreter_common.h822 << inst->DumpString(shadow_frame.GetMethod()->GetDexFile()) << "\n"; in TraceExecution()
H A Dinterpreter_common.cc208 << inst->DumpString(shadow_frame.GetMethod()->GetDexFile()); in UnexpectedOpcode()
/aosp12/art/runtime/verifier/
H A Dmethod_verifier.cc1667 vios->Stream() << inst->DumpString(dex_file_) << "\n"; in Dump()
2055 LogVerifyInfo() << "Processing " << inst->DumpString(dex_file_) << std::endl in CodeFlowVerifyInstruction()
3411 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Unexpected opcode " << inst->DumpString(dex_file_); in CodeFlowVerifyInstruction()
3435 info_messages_ << "Rejecting opcode " << inst->DumpString(dex_file_); in CodeFlowVerifyInstruction()
/aosp12/art/oatdump/
H A Doatdump.cc1137 << StringPrintf("\t| %s\n", inst->DumpString(&dex_file).c_str()); in DumpOatMethod()