diff options
author | 2014-09-23 13:36:28 +0000 | |
---|---|---|
committer | 2014-09-23 13:36:29 +0000 | |
commit | 3f5e9bbb1e25b50dbaf75e1b5300863c112a62d0 (patch) | |
tree | ca535bf8e23ab08996caed729febc51838f43399 /compiler/optimizing/register_allocator.h | |
parent | 2e1391b9abdafdbe7e0ef5ef116c49f812394056 (diff) | |
parent | 3bca0df855f0e575c6ee020ed016999fc8f14122 (diff) |
Merge "Support for saving and restoring live registers in a slow path."
Diffstat (limited to 'compiler/optimizing/register_allocator.h')
-rw-r--r-- | compiler/optimizing/register_allocator.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/optimizing/register_allocator.h b/compiler/optimizing/register_allocator.h index 7d397e3649..3c305c8f58 100644 --- a/compiler/optimizing/register_allocator.h +++ b/compiler/optimizing/register_allocator.h @@ -179,6 +179,9 @@ class RegisterAllocator { // Slots reserved for out arguments. size_t reserved_out_slots_; + // The maximum live registers at safepoints. + size_t maximum_number_of_live_registers_; + FRIEND_TEST(RegisterAllocatorTest, FreeUntil); DISALLOW_COPY_AND_ASSIGN(RegisterAllocator); |