/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/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/runtime/ |
D | intern_table.cc | 181 gc::space::ImageSpace* image = Runtime::Current()->GetHeap()->GetImageSpace(); in LookupStringFromImage() local 182 if (image == nullptr) { in LookupStringFromImage() 185 mirror::Object* root = image->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches); in LookupStringFromImage() 195 mirror::String* image = dex_cache->GetResolvedString(string_idx); in LookupStringFromImage() local 196 if (image != nullptr) { in LookupStringFromImage() 197 return image; in LookupStringFromImage() 232 mirror::String* image = LookupStringFromImage(s); in Insert() local 233 if (image != nullptr) { in Insert() 234 return is_strong ? InsertStrong(image) : InsertWeak(image); in Insert()
|
D | image.h | 96 static std::string GetOatLocationFromImageLocation(const std::string& image) { in GetOatLocationFromImageLocation() argument 97 std::string oat_filename = image; in GetOatLocationFromImageLocation()
|
D | Android.mk | 75 image.cc \
|
D | class_linker.cc | 3393 gc::space::ImageSpace* image = Runtime::Current()->GetHeap()->GetImageSpace(); in GetImageDexCaches() local 3394 CHECK(image != nullptr); in GetImageDexCaches() 3395 mirror::Object* root = image->GetImageHeader().GetImageRoot(ImageHeader::kDexCaches); in GetImageDexCaches()
|
/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/patchoat/ |
D | patchoat.h | 64 PatchOat(InstructionSet isa, MemMap* image, gc::accounting::ContinuousSpaceBitmap* bitmap, in PatchOat() argument 66 : image_(image), bitmap_(bitmap), heap_(heap), in PatchOat() 68 PatchOat(InstructionSet isa, ElfFile* oat_file, MemMap* image, in PatchOat() argument 71 : oat_file_(oat_file), image_(image), bitmap_(bitmap), heap_(heap), in PatchOat()
|
D | patchoat.cc | 169 std::unique_ptr<MemMap> image(MemMap::MapFile(image_len, PROT_READ | PROT_WRITE, MAP_PRIVATE, in Patch() local 173 if (image.get() == nullptr) { in Patch() 179 PatchOat p(isa, image.release(), ispc->GetLiveBitmap(), ispc->GetMemMap(), in Patch() 264 std::unique_ptr<MemMap> image(MemMap::MapFile(image_len, PROT_READ | PROT_WRITE, MAP_PRIVATE, in Patch() local 268 if (image.get() == nullptr) { in Patch() 301 PatchOat p(isa, elf.release(), image.release(), ispc->GetLiveBitmap(), ispc->GetMemMap(), in Patch()
|
/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 | 147 std::string image("-Ximage:"); in TEST_F() local 148 image.append(image_location.GetFilename()); in TEST_F() 149 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 | 360 bool image, in CreateOatFile() argument 396 image, in CreateOatFile() 1140 bool image = (!image_filename.empty()); in dex2oat() local 1141 if (!image && boot_image_filename.empty()) { in dex2oat() 1151 if (image_classes_filename != nullptr && !image) { in dex2oat() 1163 if (compiled_classes_filename != nullptr && !image) { in dex2oat() 1217 } else if (image) { in dex2oat() 1408 } else if (image) { in dex2oat() 1430 } else if (image) { in dex2oat() 1495 if (!UseSwap(image, dex_files)) { in dex2oat() [all …]
|
/art/test/ |
D | run-test | 113 image="$1" 114 run_args="${run_args} --image $image"
|
/art/compiler/driver/ |
D | compiler_driver.h | 110 bool image, std::set<std::string>* image_classes,
|
D | compiler_driver.cc | 338 bool image, std::set<std::string>* image_classes, in CompilerDriver() argument 354 image_(image), in CompilerDriver()
|