diff options
author | 2013-03-18 15:27:28 -0700 | |
---|---|---|
committer | 2013-03-18 15:29:59 -0700 | |
commit | 4f6ad8ab428038129b2d0d6c40b7fd625cca15e1 (patch) | |
tree | d1025ed9203d0cdf7aa959d9cecd8dc1f0c0bfeb /src/compiler/dex/compiler_utility.cc | |
parent | aabe8adacc7bf3a8ab6f6f3dd37fc839b6fd762f (diff) |
Various performance improvements.
Performance had regressed due to verify object and method invocation changes.
Avoid trampolines for static calls in same class.
Various inlining changes.
Make verify object something that's only compiled-in in debug builds.
Change-Id: Ia261a52232c3b10667c668f8adfadc0da3048bc5
Diffstat (limited to 'src/compiler/dex/compiler_utility.cc')
-rw-r--r-- | src/compiler/dex/compiler_utility.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/dex/compiler_utility.cc b/src/compiler/dex/compiler_utility.cc index b5185b00e6..9dc90ce311 100644 --- a/src/compiler/dex/compiler_utility.cc +++ b/src/compiler/dex/compiler_utility.cc @@ -15,6 +15,7 @@ */ #include "compiler_internals.h" +#include "dex_file-inl.h" namespace art { |