Lines Matching full:oat
45 #include "oat.h"
63 " --oat-file=<file.oat>: specifies an input oat filename.\n"
64 " Example: --oat-file=/system/framework/boot.oat\n"
125 os << "IMAGE FILE LOCATION OAT CHECKSUM:\n";
128 os << "IMAGE FILE LOCATION OAT BEGIN:\n";
157 return 0; // Address not in oat file
245 os << "OAT DEX FILE:\n";
328 indent1_os << "OAT DATA:\n";
680 os << "OAT CHECKSUM: " << StringPrintf("0x%08x\n\n", image_header_.GetOatChecksum());
682 os << "OAT FILE BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatFileBegin()) << "\n\n";
684 os << "OAT DATA BEGIN:" << reinterpret_cast<void*>(image_header_.GetOatDataBegin()) << "\n\n";
686 os << "OAT DATA END:" << reinterpret_cast<void*>(image_header_.GetOatDataEnd()) << "\n\n";
688 os << "OAT FILE END:" << reinterpret_cast<void*>(image_header_.GetOatFileEnd()) << "\n\n";
724 os << "OAT LOCATION: " << oat_location;
994 indent_os << StringPrintf("OAT CODE: %p\n", oat_code);
1045 indent_os << StringPrintf("OAT CODE: %p-%p\n", oat_code_begin, oat_code_end);
1061 // Compute the size of the given data within the oat file and whether this is the first time
1293 "managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1294 "managed_to_native_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1295 "native_to_managed_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n"
1296 "class_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1297 "large_initializer_code_bytes = %8zd (%2.0f%% of oat file bytes)\n"
1298 "large_method_code_bytes = %8zd (%2.0f%% of oat file bytes)\n\n",
1308 os << StringPrintf("%s = %zd (%2.0f%% of oat file bytes)\n",
1313 os << "\n" << StringPrintf("gc_map_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1314 "pc_mapping_table_bytes = %7zd (%2.0f%% of oat file bytes)\n"
1315 "vmap_table_bytes = %7zd (%2.0f%% of oat file bytes)\n\n",
1373 if (option.starts_with("--oat-file=")) {
1374 oat_filename = option.substr(strlen("--oat-file=")).data();
1396 fprintf(stderr, "Either --image or --oat must be specified\n");
1401 fprintf(stderr, "Either --image or --oat must be specified but not both\n");
1418 fprintf(stderr, "Failed to open oat file from %s\n", oat_filename);