blob: bfe227fe2ade81562afe3ee2b85577a8155c513c [file] [log] [blame]
Alex Lightdba61482016-12-21 08:20:29 -08001#!/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"
30 if [[ "$@" != *"--debuggable"* ]]; then
31 other_args=" -Xcompiler-option --debuggable "
32 else
33 other_args=""
34 fi
35fi
36
37
38./default-run "$@" --experimental agents \
39 --experimental runtime-plugins \
40 --runtime-option -agentpath:${agent}=915-obsolete-2,${arg} \
41 --android-runtime-option -Xplugin:${plugin} \
42 --android-runtime-option -Xfully-deoptable \
43 ${other_args} \
44 --args ${lib}