Searched refs:oat (Results 1 – 19 of 19) sorted by relevance
/art/oatdump/ |
D | Android.mk | 48 .PHONY: dump-oat 49 dump-oat: dump-oat-core dump-oat-boot 51 .PHONY: dump-oat-core 52 dump-oat-core: dump-oat-core-host dump-oat-core-target 54 .PHONY: dump-oat-core-host 56 dump-oat-core-host: $(HOST_CORE_IMG_OUT) $(OATDUMP) 61 .PHONY: dump-oat-core-target 63 dump-oat-core-target: $(TARGET_CORE_IMG_OUT) $(OATDUMP) 69 .PHONY: dump-oat-boot-$(TARGET_ARCH) 71 dump-oat-boot-$(TARGET_ARCH): $(DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME) $(OATDUMP) [all …]
|
/art/build/ |
D | Android.oat.mk | 28 define create-core-oat-host-rules 34 $$(addprefix --dex-location=,$$(HOST_CORE_DEX_LOCATIONS)) --oat-file=$$($(1)HOST_CORE_OAT_OUT) \ 35 --oat-location=$$($(1)HOST_CORE_OAT) --image=$$($(1)HOST_CORE_IMG_OUT) \ 46 $(eval $(call create-core-oat-host-rules,)) 48 $(eval $(call create-core-oat-host-rules,2ND_)) 51 define create-core-oat-target-rules 57 …$$(addprefix --dex-location=,$$(TARGET_CORE_DEX_LOCATIONS)) --oat-file=$$($(1)TARGET_CORE_OAT_OUT)… 58 --oat-location=$$($(1)TARGET_CORE_OAT) --image=$$($(1)TARGET_CORE_IMG_OUT) \ 70 $(eval $(call create-core-oat-target-rules,2ND_)) 72 $(eval $(call create-core-oat-target-rules,)) [all …]
|
D | Android.common_path.mk | 45 TARGET_CORE_OAT := $(ART_TARGET_TEST_DIR)/$(DEX2OAT_TARGET_ARCH)/core.oat 47 …GET_CORE_OAT := $(ART_TARGET_TEST_DIR)/$($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH)/core.oat 51 HOST_CORE_OAT_OUT := $(HOST_OUT_JAVA_LIBRARIES)/$(ART_HOST_ARCH)/core.oat 53 2ND_HOST_CORE_OAT_OUT := $(HOST_OUT_JAVA_LIBRARIES)/$(2ND_ART_HOST_ARCH)/core.oat 55 TARGET_CORE_OAT_OUT := $(ART_TARGET_TEST_OUT)/$(DEX2OAT_TARGET_ARCH)/core.oat 57 …CORE_OAT_OUT := $(ART_TARGET_TEST_OUT)/$($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH)/core.oat
|
/art/test/117-nopatchoat/ |
D | expected.txt | 2 dex2oat & patchoat are disabled, has oat is true, has executable oat is expected. 5 dex2oat & patchoat are enabled, has oat is true, has executable oat is expected. 8 dex2oat & patchoat are enabled, has oat is true, has executable oat is expected.
|
/art/ |
D | Android.mk | 28 ifneq (,$(filter clean-oat,$(MAKECMDGOALS))) 31 ifneq (,$(filter clean-oat-host,$(MAKECMDGOALS))) 34 ifneq (,$(filter clean-oat-target,$(MAKECMDGOALS))) 38 .PHONY: clean-oat 39 clean-oat: clean-oat-host clean-oat-target 41 .PHONY: clean-oat-host 42 clean-oat-host: 59 rm -f $(TARGET_OUT_UNSTRIPPED)/system/framework/*/*.oat 61 rm -f $(TARGET_OUT)/framework/*/*.oat 78 .PHONY: clean-oat-target [all …]
|
/art/runtime/ |
D | oat_file.cc | 237 const byte* oat = Begin(); in Setup() local 238 oat += sizeof(OatHeader); in Setup() 239 if (oat > End()) { in Setup() 244 oat += GetOatHeader().GetKeyValueStoreSize(); in Setup() 245 if (oat > End()) { in Setup() 256 uint32_t dex_file_location_size = *reinterpret_cast<const uint32_t*>(oat); in Setup() 262 oat += sizeof(dex_file_location_size); in Setup() 263 if (UNLIKELY(oat > End())) { in Setup() 269 const char* dex_file_location_data = reinterpret_cast<const char*>(oat); in Setup() 270 oat += dex_file_location_size; in Setup() [all …]
|
D | Android.mk | 132 oat.cc \ 313 oat.h \
|
/art/test/116-nodex2oat/ |
D | expected.txt | 2 Has oat is false, is dex2oat enabled is false. 4 Has oat is true, is dex2oat enabled is true. 6 Has oat is true, is dex2oat enabled is true.
|
/art/test/004-JniTest/ |
D | info.txt | 1 Imported from oat tests.
|
/art/test/004-NativeAllocations/ |
D | info.txt | 1 Imported from oat tests.
|
/art/test/004-InterfaceTest/ |
D | info.txt | 1 Imported from oat tests.
|
/art/test/004-ThreadStress/ |
D | info.txt | 1 Imported from oat tests.
|
/art/test/004-UnsafeTest/ |
D | info.txt | 1 Imported from oat tests.
|
/art/test/004-SignalTest/ |
D | info.txt | 1 Imported from oat tests.
|
/art/test/004-ReferenceMap/ |
D | info.txt | 1 Imported from oat tests.
|
/art/test/004-StackWalk/ |
D | info.txt | 1 Imported from oat tests.
|
/art/test/001-HelloWorld/ |
D | info.txt | 1 Imported from oat test. Print "Hello World."
|
/art/test/114-ParallelGC/ |
D | info.txt | 1 Imported from oat tests. Allocates and frees objects with multiple threads.
|
/art/test/001-Main/ |
D | info.txt | 1 Import of a previous oat test. Empty main, just test starting up the runtime.
|