Home
last modified time | relevance | path

Searched refs:core (Results 1 – 10 of 10) sorted by relevance

/art/build/
DAndroid.common_path.mk45 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
61 HOST_CORE_IMG_OUT := $(HOST_OUT_JAVA_LIBRARIES)/$(ART_HOST_ARCH)/core.art
63 2ND_HOST_CORE_IMG_OUT := $(HOST_OUT_JAVA_LIBRARIES)/$(2ND_ART_HOST_ARCH)/core.art
65 TARGET_CORE_IMG_OUT := $(ART_TARGET_TEST_OUT)/$(DEX2OAT_TARGET_ARCH)/core.art
67 …CORE_IMG_OUT := $(ART_TARGET_TEST_OUT)/$($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH)/core.art
[all …]
DAndroid.oat.mk28 define create-core-oat-host-rules
46 $(eval $(call create-core-oat-host-rules,))
48 $(eval $(call create-core-oat-host-rules,2ND_))
51 define create-core-oat-target-rules
70 $(eval $(call create-core-oat-target-rules,2ND_))
72 $(eval $(call create-core-oat-target-rules,))
77 LOCAL_MODULE := core.art-host
88 LOCAL_MODULE := core.art
/art/oatdump/
DAndroid.mk49 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)
57 $(OATDUMP) --image=$(HOST_CORE_IMG_LOCATION) --output=$(ART_DUMP_OAT_PATH)/core.host.oatdump.txt
58 @echo Output in $(ART_DUMP_OAT_PATH)/core.host.oatdump.txt
61 .PHONY: dump-oat-core-target
63 dump-oat-core-target: $(TARGET_CORE_IMG_OUT) $(OATDUMP)
65 --output=$(ART_DUMP_OAT_PATH)/core.target.oatdump.txt --instruction-set=$(TARGET_ARCH)
[all …]
/art/compiler/dex/
Dreg_location.h48 unsigned core:1; // Non-floating point? member
Dvreg_analysis.cc45 reg_location_[index].core = true; in SetCore()
55 reg_location_[index].core = true; in SetCore()
347 bool defined_core = rl_temp.defined && rl_temp.core; in InferTypeAndSize()
354 defined_core |= rl_temp.defined && rl_temp.core; in InferTypeAndSize()
491 reg_location_[s_reg].core = true; in InitRegLocations()
504 reg_location_[s_reg].core = true; in InitRegLocations()
/art/tools/
Dart67 -Ximage:$ANDROID_HOST_OUT/framework/core.art \
/art/compiler/dex/quick/mips/
DREADME.mips27 the larger number of MIPS core and float registers render this too small.
/art/
DAndroid.mk117 $(HOST_OUT_JAVA_LIBRARIES)/core-libart-hostdex.jar \
121 $(TARGET_OUT_JAVA_LIBRARIES)/core-libart.jar \
/art/compiler/dex/portable/
Dmir_to_gbc.cc1583 DCHECK_EQ(rl_dest.core, loc.core); in HandlePhiNodes()
/art/compiler/dex/quick/x86/
Dtarget_x86.cc940 << (loc.core ? " C" : " ") in DumpRegLocation()