1# 2# Copyright (C) 2011 The Android Open Source Project 3# 4# Licensed under the Apache License, Version 2.0 (the "License"); 5# you may not use this file except in compliance with the License. 6# You may obtain a copy of the License at 7# 8# http://www.apache.org/licenses/LICENSE-2.0 9# 10# Unless required by applicable law or agreed to in writing, software 11# distributed under the License is distributed on an "AS IS" BASIS, 12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13# See the License for the specific language governing permissions and 14# limitations under the License. 15# 16 17LOCAL_PATH := $(call my-dir) 18 19include art/build/Android.executable.mk 20 21OATDUMP_SRC_FILES := \ 22 oatdump.cc 23 24# Build variants {target,host} x {debug,ndebug} 25$(eval $(call build-art-multi-executable,oatdump,$(OATDUMP_SRC_FILES),libart-compiler libart-disassembler,libcutils,,art/compiler art/disassembler)) 26 27######################################################################## 28# oatdump targets 29 30ART_DUMP_OAT_PATH ?= $(OUT_DIR) 31 32OATDUMP := $(HOST_OUT_EXECUTABLES)/oatdump$(HOST_EXECUTABLE_SUFFIX) 33OATDUMPD := $(HOST_OUT_EXECUTABLES)/oatdumpd$(HOST_EXECUTABLE_SUFFIX) 34# TODO: for now, override with debug version for better error reporting 35OATDUMP := $(OATDUMPD) 36 37.PHONY: dump-oat 38dump-oat: dump-oat-core dump-oat-boot 39 40.PHONY: dump-oat-core 41dump-oat-core: dump-oat-core-host dump-oat-core-target 42 43.PHONY: dump-oat-core-host 44ifeq ($(ART_BUILD_HOST),true) 45dump-oat-core-host: $(HOST_CORE_IMG_OUTS) $(OATDUMP) 46 $(OATDUMP) --image=$(HOST_CORE_IMG_LOCATION) --output=$(ART_DUMP_OAT_PATH)/core.host.oatdump.txt 47 @echo Output in $(ART_DUMP_OAT_PATH)/core.host.oatdump.txt 48endif 49 50.PHONY: dump-oat-core-target-$(TARGET_ARCH) 51ifeq ($(ART_BUILD_TARGET),true) 52dump-oat-core-target-$(TARGET_ARCH): $(TARGET_CORE_IMAGE_default_no-pic_$(ART_PHONY_TEST_TARGET_SUFFIX)) $(OATDUMP) 53 $(OATDUMP) --image=$(TARGET_CORE_IMG_LOCATION) \ 54 --output=$(ART_DUMP_OAT_PATH)/core.target.$(TARGET_ARCH).oatdump.txt --instruction-set=$(TARGET_ARCH) 55 @echo Output in $(ART_DUMP_OAT_PATH)/core.target.$(TARGET_ARCH).oatdump.txt 56endif 57 58ifdef TARGET_2ND_ARCH 59.PHONY: dump-oat-core-target-$(TARGET_2ND_ARCH) 60ifeq ($(ART_BUILD_TARGET),true) 61dump-oat-core-target-$(TARGET_2ND_ARCH): $(TARGET_CORE_IMAGE_default_no-pic_$(2ND_ART_PHONY_TEST_TARGET_SUFFIX)) $(OATDUMP) 62 $(OATDUMP) --image=$(TARGET_CORE_IMG_LOCATION) \ 63 --output=$(ART_DUMP_OAT_PATH)/core.target.$(TARGET_2ND_ARCH).oatdump.txt --instruction-set=$(TARGET_2ND_ARCH) 64 @echo Output in $(ART_DUMP_OAT_PATH)/core.target.$(TARGET_2ND_ARCH).oatdump.txt 65endif 66endif 67 68.PHONY: dump-oat-core-target 69dump-oat-core-target: dump-oat-core-target-$(TARGET_ARCH) 70ifdef TARGET_2ND_ARCH 71dump-oat-core-target: dump-oat-core-target-$(TARGET_2ND_ARCH) 72endif 73 74.PHONY: dump-oat-boot-$(TARGET_ARCH) 75ifeq ($(ART_BUILD_TARGET_NDEBUG),true) 76dump-oat-boot-$(TARGET_ARCH): $(DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME) $(OATDUMP) 77 $(OATDUMP) $(addprefix --image=,$(DEFAULT_DEX_PREOPT_BUILT_IMAGE_LOCATION)) \ 78 --output=$(ART_DUMP_OAT_PATH)/boot.$(TARGET_ARCH).oatdump.txt --instruction-set=$(TARGET_ARCH) 79 @echo Output in $(ART_DUMP_OAT_PATH)/boot.$(TARGET_ARCH).oatdump.txt 80endif 81 82ifdef TARGET_2ND_ARCH 83dump-oat-boot-$(TARGET_2ND_ARCH): $(2ND_DEFAULT_DEX_PREOPT_BUILT_IMAGE_FILENAME) $(OATDUMP) 84 $(OATDUMP) $(addprefix --image=,$(2ND_DEFAULT_DEX_PREOPT_BUILT_IMAGE_LOCATION)) \ 85 --output=$(ART_DUMP_OAT_PATH)/boot.$(TARGET_2ND_ARCH).oatdump.txt --instruction-set=$(TARGET_2ND_ARCH) 86 @echo Output in $(ART_DUMP_OAT_PATH)/boot.$(TARGET_2ND_ARCH).oatdump.txt 87endif 88 89.PHONY: dump-oat-boot 90dump-oat-boot: dump-oat-boot-$(TARGET_ARCH) 91ifdef TARGET_2ND_ARCH 92dump-oat-boot: dump-oat-boot-$(TARGET_2ND_ARCH) 93endif 94 95.PHONY: dump-oat-Calculator 96ifeq ($(ART_BUILD_TARGET_NDEBUG),true) 97dump-oat-Calculator: $(TARGET_OUT_APPS)/Calculator.odex $(DEFAULT_DEX_PREOPT_BUILT_IMAGE) $(OATDUMP) 98 $(OATDUMP) --oat-file=$< --output=$(ART_DUMP_OAT_PATH)/Calculator.oatdump.txt 99 @echo Output in $(ART_DUMP_OAT_PATH)/Calculator.oatdump.txt 100endif 101