blob: 7bd8cbd1dd822c20a3f3f4492d89cd938ed2a6e6 [file] [log] [blame]
Andreas Gampe8da6d032016-10-31 19:31:03 -07001#!/bin/bash
2#
3# Copyright 2016 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17plugin=libopenjdkjvmtid.so
18agent=libtiagentd.so
19lib=tiagentd
20if [[ "$@" == *"-O"* ]]; then
21 agent=libtiagent.so
22 plugin=libopenjdkjvmti.so
23 lib=tiagent
24fi
25
26if [[ "$@" == *"--jvm"* ]]; then
27 arg="jvm"
28else
29 arg="art"
30fi
31
32if [[ "$@" != *"--debuggable"* ]]; then
33 other_args=" -Xcompiler-option --debuggable "
34else
35 other_args=""
36fi
37
38./default-run "$@" --experimental agents \
39 --experimental runtime-plugins \
40 --runtime-option -agentpath:${agent}=913-heaps,${arg} \
41 --android-runtime-option -Xplugin:${plugin} \
42 ${other_args} \
43 --args ${lib}