/art/test/119-noimage-patchoat/ |
D | expected.txt | 2 Has image is false, is image dex2oat enabled is false. 4 Has image is true, is image dex2oat enabled is true. 6 Has image is true, is image dex2oat enabled is true.
|
D | info.txt | 1 Test that disables patchoat'ing the image.
|
/art/test/118-noimage-dex2oat/ |
D | expected.txt | 2 Has image is false, is image dex2oat enabled is false, is BOOTCLASSPATH on disk is false. 4 Has image is true, is image dex2oat enabled is true, is BOOTCLASSPATH on disk is true. 6 Has image is true, is image dex2oat enabled is true, is BOOTCLASSPATH on disk is true.
|
D | info.txt | 1 Test that disables dex2oat'ing the image.
|
/art/runtime/ |
D | intern_table.cc | 170 gc::space::ImageSpace* image = Runtime::Current()->GetHeap()->GetImageSpace(); in LookupStringFromImage() local 171 if (image == NULL) { in LookupStringFromImage() 174 mirror::Object* root = image->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches); in LookupStringFromImage() 184 mirror::String* image = dex_cache->GetResolvedString(string_idx); in LookupStringFromImage() local 185 if (image != NULL) { in LookupStringFromImage() 186 return image; in LookupStringFromImage() 224 mirror::String* image = LookupStringFromImage(s); in Insert() local 225 if (image != NULL) { in Insert() 226 return InsertStrong(image); in Insert() 248 mirror::String* image = LookupStringFromImage(s); in Insert() local [all …]
|
D | image.h | 95 static std::string GetOatLocationFromImageLocation(const std::string& image) { in GetOatLocationFromImageLocation() argument 96 std::string oat_filename = image; in GetOatLocationFromImageLocation()
|
D | Android.mk | 75 image.cc \
|
D | class_linker.cc | 3369 gc::space::ImageSpace* image = Runtime::Current()->GetHeap()->GetImageSpace(); in GetImageDexCaches() local 3370 CHECK(image != nullptr); in GetImageDexCaches() 3371 mirror::Object* root = image->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches); in GetImageDexCaches()
|
/art/build/ |
D | Android.oat.mk | 33 --image-classes=$$(PRELOADED_CLASSES) $$(addprefix --dex-file=,$$(HOST_CORE_DEX_FILES)) \ 35 --oat-location=$$($(1)HOST_CORE_OAT) --image=$$($(1)HOST_CORE_IMG_OUT) \ 56 --image-classes=$$(PRELOADED_CLASSES) $$(addprefix --dex-file=,$$(TARGET_CORE_DEX_FILES)) \ 58 --oat-location=$$($(1)TARGET_CORE_OAT) --image=$$($(1)TARGET_CORE_IMG_OUT) \
|
/art/patchoat/ |
D | patchoat.h | 56 PatchOat(MemMap* image, gc::accounting::ContinuousSpaceBitmap* bitmap, in PatchOat() argument 58 : image_(image), bitmap_(bitmap), heap_(heap), in PatchOat() 60 PatchOat(ElfFile* oat_file, MemMap* image, gc::accounting::ContinuousSpaceBitmap* bitmap, in PatchOat() argument 62 : oat_file_(oat_file), image_(image), bitmap_(bitmap), heap_(heap), in PatchOat()
|
D | patchoat.cc | 164 std::unique_ptr<MemMap> image(MemMap::MapFile(image_len, PROT_READ | PROT_WRITE, MAP_PRIVATE, in Patch() local 168 if (image.get() == nullptr) { in Patch() 174 PatchOat p(image.release(), ispc->GetLiveBitmap(), ispc->GetMemMap(), in Patch() 253 std::unique_ptr<MemMap> image(MemMap::MapFile(image_len, PROT_READ | PROT_WRITE, MAP_PRIVATE, in Patch() local 257 if (image.get() == nullptr) { in Patch() 270 PatchOat p(elf.release(), image.release(), ispc->GetLiveBitmap(), ispc->GetMemMap(), in Patch()
|
/art/oatdump/ |
D | Android.mk | 57 $(OATDUMP) --image=$(HOST_CORE_IMG_LOCATION) --output=$(ART_DUMP_OAT_PATH)/core.host.oatdump.txt 64 $(OATDUMP) --image=$(TARGET_CORE_IMG_LOCATION) \ 72 $(OATDUMP) --image=$(DEFAULT_DEX_PREOPT_BUILT_IMAGE_LOCATION) \ 79 $(OATDUMP) --image=$(2ND_DEFAULT_DEX_PREOPT_BUILT_IMAGE_LOCATION) \
|
/art/runtime/gc/space/ |
D | image_space.h | 46 static ImageSpace* Create(const char* image, InstructionSet image_isa, std::string* error_msg) 135 OatFile* OpenOatFile(const char* image, std::string* error_msg) const
|
/art/compiler/ |
D | image_test.cc | 144 std::string image("-Ximage:"); in TEST_F() local 145 image.append(image_location.GetFilename()); in TEST_F() 146 options.push_back(std::make_pair(image.c_str(), reinterpret_cast<void*>(NULL))); in TEST_F()
|
/art/ |
D | Android.mk | 320 --boot-image=$(DEFAULT_DEX_PREOPT_BUILT_IMAGE) --dex-file=$(PRODUCT_OUT)/$(1) \ 399 adb shell setprop dalvik.vm.image-dex2oat-filter "" 409 adb shell setprop dalvik.vm.image-dex2oat-filter "" 419 adb shell setprop dalvik.vm.image-dex2oat-filter "" 429 adb shell setprop dalvik.vm.image-dex2oat-filter "interpret-only" 439 adb shell setprop dalvik.vm.image-dex2oat-filter "interpret-only" 449 adb shell setprop dalvik.vm.image-dex2oat-filter "verify-none"
|
/art/dex2oat/ |
D | dex2oat.cc | 351 bool image, in CreateOatFile() argument 385 image, in CreateOatFile() 1085 bool image = (!image_filename.empty()); in dex2oat() local 1086 if (!image && boot_image_filename.empty()) { in dex2oat() 1096 if (image_classes_filename != nullptr && !image) { in dex2oat() 1150 } else if (image) { in dex2oat() 1308 } else if (image) { in dex2oat() 1367 if (!image && compiler_options->IsCompilationEnabled()) { in dex2oat() 1404 image, in dex2oat() 1469 if (image) { in dex2oat()
|
/art/test/ |
D | run-test | 113 image="$1" 114 run_args="${run_args} --image $image"
|
/art/compiler/driver/ |
D | compiler_driver.h | 106 bool image, std::set<std::string>* image_classes,
|
D | compiler_driver.cc | 333 … bool image, std::set<std::string>* image_classes, size_t thread_count, in CompilerDriver() argument 345 image_(image), in CompilerDriver()
|