diff options
author | Andreas Gampe <agampe@google.com> | 2014-07-14 16:21:44 -0700 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2014-07-21 23:36:31 -0700 |
commit | 7ea6f79bbddd69d5db86a8656a31aaaf64ae2582 (patch) | |
tree | c64f89b15ca71e87317f6dd405ef4a5560b73e01 /runtime/well_known_classes.h | |
parent | e72ff8022968b23efedc56c0afdc1d24e8a928c2 (diff) | |
download | art-7ea6f79bbddd69d5db86a8656a31aaaf64ae2582.zip art-7ea6f79bbddd69d5db86a8656a31aaaf64ae2582.tar.gz art-7ea6f79bbddd69d5db86a8656a31aaaf64ae2582.tar.bz2 |
ART: Throw StackOverflowError in native code
Initialize stack-overflow errors in native code to be able to reduce
the preserved area size of the stack.
Includes a refactoring away from constexpr in instruction_set.h to allow
for easy changing of the values.
Change-Id: I117cc8485f43da5f0a470f0f5e5b3dc3b5a06246
Diffstat (limited to 'runtime/well_known_classes.h')
-rw-r--r-- | runtime/well_known_classes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/well_known_classes.h b/runtime/well_known_classes.h index f6c2930..7639f50 100644 --- a/runtime/well_known_classes.h +++ b/runtime/well_known_classes.h @@ -60,7 +60,9 @@ struct WellKnownClasses { static jclass java_lang_ThreadGroup; static jclass java_lang_Thread$UncaughtExceptionHandler; static jclass java_lang_Throwable; + static jclass java_util_Collections; static jclass java_nio_DirectByteBuffer; + static jclass libcore_util_EmptyArray; static jclass org_apache_harmony_dalvik_ddmc_Chunk; static jclass org_apache_harmony_dalvik_ddmc_DdmServer; |