summaryrefslogtreecommitdiffstats
path: root/compiler
diff options
context:
space:
mode:
authorMathieu Chartier <mathieuc@google.com>2014-03-25 15:58:50 -0700
committerMathieu Chartier <mathieuc@google.com>2014-03-25 16:25:26 -0700
commit91e3063d97b4dba239682d00ecfb3ea8c0a96539 (patch)
tree1ccb6b866a61596efb0b9931f687ecca67742a14 /compiler
parentc92492fc2565515ac5d68a8443efa91ba189b404 (diff)
downloadart-91e3063d97b4dba239682d00ecfb3ea8c0a96539.zip
art-91e3063d97b4dba239682d00ecfb3ea8c0a96539.tar.gz
art-91e3063d97b4dba239682d00ecfb3ea8c0a96539.tar.bz2
Add GC mode for stressing testing heap transitions.
The stress testing mode does repeated heap transitions when the heap gets a process state update. In between each transition, the heap waits for a specified number of time. Change-Id: Ie3f43835e539fa8da147f77b4623a432a0d858c2
Diffstat (limited to 'compiler')
-rw-r--r--compiler/jni/quick/arm/calling_convention_arm.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/jni/quick/arm/calling_convention_arm.cc b/compiler/jni/quick/arm/calling_convention_arm.cc
index 9778293..78f403c 100644
--- a/compiler/jni/quick/arm/calling_convention_arm.cc
+++ b/compiler/jni/quick/arm/calling_convention_arm.cc
@@ -133,7 +133,7 @@ ArmJniCallingConvention::ArmJniCallingConvention(bool is_static, bool is_synchro
uint32_t ArmJniCallingConvention::CoreSpillMask() const {
// Compute spill mask to agree with callee saves initialized in the constructor
uint32_t result = 0;
- result = 1 << R5 | 1 << R6 | 1 << R7 | 1 << R8 | 1 << R10 | 1 << R11 | 1 << LR;
+ result = 1 << R5 | 1 << R6 | 1 << R7 | 1 << R8 | 1 << R10 | 1 << R11 | 1 << LR;
return result;
}