blob: a434b63e421639e2cfcdf828fbc58e46b563ace3 [file] [log] [blame]
Alex Light200b9d72016-12-15 11:34:13 -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./default-run "$@" --experimental agents \
38 --experimental runtime-plugins \
39 --runtime-option -agentpath:${agent}=917-fields-transformation,${arg} \
40 --android-runtime-option -Xplugin:${plugin} \
41 --android-runtime-option -Xfully-deoptable \
42 ${other_args} \
43 --args ${lib}