Lines Matching defs:code
192 DUMP_OAT_HEADER_OFFSET("INTERPRETER TO COMPILED CODE BRIDGE",
303 // We don't know the length of the code for each method, but we need to know where to stop
304 // when disassembling. What we do know is that a region of code will be followed by some other
306 // of a piece of code by using upper_bound to find the start of the next region.
340 // If the last thing in the file is code for a method, there won't be an offset for the "next"
341 // thing. Instead of having a special case in the upper_bound code, let's just add an entry
461 *indent1_os << "DEX CODE:\n";
495 "code offset 0x%08x is past end of file 0x%08zx.\n",
584 *indent1_os << "CODE: ";
588 "code size offset 0x%08x is past end of file 0x%08zx.",
592 const void* code = oat_method.GetQuickCode();
594 if (code == nullptr) {
595 code = oat_method.GetPortableCode();
604 *indent1_os << StringPrintf("%p ", code);
610 code != nullptr ? "..." : "");
614 "start of code at 0x%08x is past end of file 0x%08zx.",
619 "end of code at 0x%08" PRIx64 " is past end of file 0x%08zx. "
620 "code size is 0x%08x loaded from offset 0x%08x.\n",
631 "code size %d is bigger than max expected threshold of %d. "
632 "code size is 0x%08x loaded from offset 0x%08x.\n",
930 os << "NO CODE!\n";
1328 indent_os << StringPrintf("OAT CODE: %p\n", quick_oat_code);
1378 indent_os << StringPrintf("OAT CODE: %p-%p\n", quick_oat_code_begin, quick_oat_code_end);
1576 os << PrettyMethod(method_outlier[j]) << " expanded code by "
1795 // We are more like a compiler than a run-time. We don't want to execute code.