blob: 5c75f20a82b350048097d64a656eba862109b033 [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001#
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
Ian Rogersafd9acc2014-06-17 08:21:54 -070019include art/build/Android.executable.mk
20
Brian Carlstrom7940e442013-07-12 13:46:57 -070021OATDUMP_SRC_FILES := \
22 oatdump.cc
23
Igor Murashkin37743352014-11-13 14:38:00 -080024# 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))
Ian Rogersafd9acc2014-06-17 08:21:54 -070026
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)
Ian Rogers13407c52014-11-07 16:55:45 -080045dump-oat-core-host: $(HOST_CORE_IMG_OUTS) $(OATDUMP)
Ian Rogersafd9acc2014-06-17 08:21:54 -070046 $(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
Brian Carlstromab00b7a2015-06-19 22:05:35 -070050.PHONY: dump-oat-core-target-$(TARGET_ARCH)
Ian Rogersafd9acc2014-06-17 08:21:54 -070051ifeq ($(ART_BUILD_TARGET),true)
Brian Carlstromab00b7a2015-06-19 22:05:35 -070052dump-oat-core-target-$(TARGET_ARCH): $(TARGET_CORE_IMAGE_default_no-pic_$(ART_PHONY_TEST_TARGET_SUFFIX)) $(OATDUMP)
Ian Rogersafd9acc2014-06-17 08:21:54 -070053 $(OATDUMP) --image=$(TARGET_CORE_IMG_LOCATION) \
Brian Carlstromab00b7a2015-06-19 22:05:35 -070054 --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)
Ian Rogersafd9acc2014-06-17 08:21:54 -070072endif
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)
Jeff Haodcdc85b2015-12-04 14:06:18 -080077 $(OATDUMP) $(addprefix --image=,$(DEFAULT_DEX_PREOPT_BUILT_IMAGE_LOCATION)) \
Ian Rogersafd9acc2014-06-17 08:21:54 -070078 --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)
Jeff Haodcdc85b2015-12-04 14:06:18 -080084 $(OATDUMP) $(addprefix --image=,$(2ND_DEFAULT_DEX_PREOPT_BUILT_IMAGE_LOCATION)) \
Ian Rogersafd9acc2014-06-17 08:21:54 -070085 --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