blob: 25c2c0747060fb337f6a080faccf3956765c2d43 [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 [[ "$@" == *"--jit"* ]]; then
27 other_args=""
28else
29 other_args="--jit"
30fi
31if [[ "$@" == *"--jvm"* ]]; then
32 arg="jvm"
33else
34 arg="art"
35 if [[ "$@" != *"--debuggable"* ]]; then
36 other_args="$other_args -Xcompiler-option --debuggable "
37 fi
38fi
39
40
41./default-run "$@" --experimental agents \
42 --experimental runtime-plugins \
43 --runtime-option -agentpath:${agent}=915-obsolete-2,${arg} \
44 --android-runtime-option -Xplugin:${plugin} \
45 --android-runtime-option -Xfully-deoptable \
46 ${other_args} \
47 --args ${lib}