Searched refs:core (Results 1 – 16 of 16) sorted by relevance
/art/oatdump/ |
D | Android.mk | 30 dump-oat: dump-oat-core dump-oat-boot 32 .PHONY: dump-oat-core 33 dump-oat-core: dump-oat-core-host dump-oat-core-target 35 .PHONY: dump-oat-core-host 37 dump-oat-core-host: $(HOST_CORE_IMG_OUTS) $(OATDUMP) 38 $(OATDUMP) --image=$(HOST_CORE_IMG_LOCATION) --output=$(ART_DUMP_OAT_PATH)/core.host.oatdump.txt 39 @echo Output in $(ART_DUMP_OAT_PATH)/core.host.oatdump.txt 42 .PHONY: dump-oat-core-target-$(TARGET_ARCH) 44 dump-oat-core-target-$(TARGET_ARCH): $(TARGET_CORE_IMAGE_DEFAULT_$(ART_PHONY_TEST_TARGET_SUFFIX)) $… 46 …--output=$(ART_DUMP_OAT_PATH)/core.target.$(TARGET_ARCH).oatdump.txt --instruction-set=$(TARGET_AR… [all …]
|
/art/build/ |
D | Android.oat.mk | 47 define create-core-oat-host-rules 74 core_multi_param := --multi-image --no-inline-from=core-oj-hostdex.jar 131 define create-core-oat-host-rule-combination 132 $(call create-core-oat-host-rules,$(1),,$(2),$(3),$(4)) 135 $(call create-core-oat-host-rules,$(1),2ND_,$(2),$(3),$(4)) 139 $(eval $(call create-core-oat-host-rule-combination,optimizing,,,false)) 140 $(eval $(call create-core-oat-host-rule-combination,interpreter,,,false)) 141 $(eval $(call create-core-oat-host-rule-combination,interp-ac,,,false)) 142 $(eval $(call create-core-oat-host-rule-combination,optimizing,,,true)) 143 $(eval $(call create-core-oat-host-rule-combination,interpreter,,,true)) [all …]
|
D | Android.common_path.mk | 39 TARGET_CORE_OAT := $(ART_TARGET_TEST_DIR)/$(DEX2OAT_TARGET_ARCH)/core.oat 41 …GET_CORE_OAT := $(ART_TARGET_TEST_DIR)/$($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH)/core.oat 47 HOST_CORE_OAT_OUT_BASE := $(HOST_OUT_JAVA_LIBRARIES)/$(ART_HOST_ARCH)/core 49 2ND_HOST_CORE_OAT_OUT_BASE := $(HOST_OUT_JAVA_LIBRARIES)/$(2ND_ART_HOST_ARCH)/core 52 TARGET_CORE_OAT_OUT_BASE := $(ART_TARGET_TEST_OUT)/$(DEX2OAT_TARGET_ARCH)/core 54 …ORE_OAT_OUT_BASE := $(ART_TARGET_TEST_OUT)/$($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH)/core 61 HOST_CORE_IMG_OUT_BASE := $(HOST_OUT_JAVA_LIBRARIES)/$(ART_HOST_ARCH)/core 63 2ND_HOST_CORE_IMG_OUT_BASE := $(HOST_OUT_JAVA_LIBRARIES)/$(2ND_ART_HOST_ARCH)/core 66 TARGET_CORE_IMG_OUT_BASE := $(ART_TARGET_TEST_OUT)/$(DEX2OAT_TARGET_ARCH)/core 68 …ORE_IMG_OUT_BASE := $(ART_TARGET_TEST_OUT)/$($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH)/core [all …]
|
D | Android.gtest.mk | 444 $$(TARGET_OUT_JAVA_LIBRARIES)/core-libart-testdex.jar \ 445 $$(TARGET_OUT_JAVA_LIBRARIES)/core-oj-testdex.jar \
|
/art/test/ |
D | Android.run-test.mk | 58 TEST_ART_TARGET_SYNC_DEPS += $(TARGET_OUT_JAVA_LIBRARIES)/core-libart-testdex.jar 59 TEST_ART_TARGET_SYNC_DEPS += $(TARGET_OUT_JAVA_LIBRARIES)/core-oj-testdex.jar 113 define core-image-dependencies 146 $(call core-image-dependencies,$(target),$(image),$(compiler),$(address_size))))))) 172 core-image-dependencies :=
|
/art/tools/veridex/ |
D | appcompat.sh | 47 …--core-stubs=${PACKAGING}/core_dex_intermediates/classes.dex:${PACKAGING}/oahl_dex_intermediates/c…
|
/art/tools/ |
D | javac-helper.sh | 65 --core-only)
|
D | bootjars.sh | 36 --core)
|
D | desugar.sh | 66 --core-only)
|
D | art | 101 1) Not having core.art available (see $ANDROID_BUILD_TOP/art/Android.mk). 103 …2) Not having boot.art available (see $ANDROID_BUILD_TOP/build/make/core/dex_preopt_libart_boot.mk) 193 # Attempt to find $ANDROID_ROOT/framework/<isa>/core.art' without knowing what <isa> is. 207 # Automatically find the boot image location. It uses core.art by default. 208 # On a real device, it might only have a boot.art, so use that instead when core.art does not exist. 211 local image_location_name="core.art" 213 # If there are no existing core.art, try to find boot.art. 216 if ! check_if_boot_image_file_exists "$image_location_dir" "core.art" && \
|
/art/test/135-MirandaDispatch/ |
D | info.txt | 3 …n of 'java.lang.reflect.ArtMethod' appears in out/host/linux-x86/framework/core-libart-hostdex.jar)
|
/art/test/121-modifiers/ |
D | info.txt | 5 To reproduce, compile the source files. Asm.java needs the ASM libraries (core and tree). Then
|
/art/test/etc/ |
D | default-build | 286 "$DESUGAR" --core-only $desugar_args "$@" 298 "$ANDROID_BUILD_TOP/art/tools/javac-helper.sh" --core-only $helper_args ${JAVAC_ARGS} "$@"
|
/art/test/510-checker-try-catch/smali/ |
D | Runtime.smali | 25 # Test register allocation of 32-bit core intervals crossing catch block positions. 58 # Test register allocation of 64-bit core intervals crossing catch block positions. 211 # Test catch-phi runtime support for 32-bit values stored in core registers. 249 # Test catch-phi runtime support for 64-bit values stored in core registers. 256 # Note: values will be spilled on x86 because of too few callee-save core registers.
|
/art/compiler/optimizing/ |
D | locations.h | 482 RegisterSet(uint32_t core, uint32_t fp) : core_registers_(core), floating_point_registers_(fp) {} in RegisterSet() argument
|
/art/runtime/arch/arm/ |
D | quick_entrypoints_arm.S | 2281 push {r0-r4, r9, ip, lr} @ save return address, core caller-save registers and ip
|