From e27f31a81636ad74bd3376ee39cf215941b85c0e Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Thu, 12 Jun 2014 17:53:14 +0100 Subject: Enable the register allocator on ARM. - Also fixes a few bugs/wrong assumptions in code not hit by x86. - We need to differentiate between moves due to connecting siblings within a block, and moves due to control flow resolution. Change-Id: Idd05cf138a71c8f36f5531c473de613c0166fe38 --- compiler/optimizing/code_generator.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'compiler/optimizing/code_generator.h') diff --git a/compiler/optimizing/code_generator.h b/compiler/optimizing/code_generator.h index 82fa6393e0..11b3a33b48 100644 --- a/compiler/optimizing/code_generator.h +++ b/compiler/optimizing/code_generator.h @@ -67,8 +67,7 @@ class CodeGenerator : public ArenaObject { // Note that this follows the current calling convention. return GetFrameSize() + kVRegSize // Art method - + (parameter->GetIndex() - graph_->GetNumberOfVRegs() + graph_->GetNumberOfInVRegs()) - * kVRegSize; + + parameter->GetIndex() * kVRegSize; } virtual void GenerateFrameEntry() = 0; -- cgit v1.2.3-59-g8ed1b