summaryrefslogtreecommitdiffstats
path: root/compiler/jit
diff options
context:
space:
mode:
authorMathieu Chartier <mathieuc@google.com>2015-02-27 14:24:37 -0800
committerMathieu Chartier <mathieuc@google.com>2015-02-27 15:34:04 -0800
commitdce71f3ac5b427e545d11fb2c63fc65ae6c78da4 (patch)
tree47b0144de60167cac1a0767d9ab90d659fdffbed /compiler/jit
parent0d1ef55dd46ecd0309f8e9e6b30625cde9473fc8 (diff)
downloadandroid_art-dce71f3ac5b427e545d11fb2c63fc65ae6c78da4.tar.gz
android_art-dce71f3ac5b427e545d11fb2c63fc65ae6c78da4.tar.bz2
android_art-dce71f3ac5b427e545d11fb2c63fc65ae6c78da4.zip
Change JIT to not use PIC
Motivation: PIC is currenly slower and disables a lot of JIT friendly optimizations. EvaluateAndApplyChanges N5 eng interpreter + jit: Before: 2540ms After: 2350ms Bug: 17950037 Change-Id: I3de3e7bcccfc53e49cb78370443c514248ec78d7
Diffstat (limited to 'compiler/jit')
-rw-r--r--compiler/jit/jit_compiler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/jit/jit_compiler.cc b/compiler/jit/jit_compiler.cc
index 257739134b..0283791e28 100644
--- a/compiler/jit/jit_compiler.cc
+++ b/compiler/jit/jit_compiler.cc
@@ -76,7 +76,7 @@ JitCompiler::JitCompiler() : total_time_(0) {
false,
false,
false,
- true, // pic
+ false, // pic
nullptr,
pass_manager_options,
nullptr));