Simple register allocation for ARM. Only top of expression
stack for now. Next step is probably fixing the binary op stubs so they can take swapped registers and fixing the deferred code so it doesn't insist that all registers except the two operands are flushed. Generates slightly worse code sometimes because the peephole push-pop elimination gets confused when we don't use the same register all the time (the old code used r0 always). Review URL: http://codereview.chromium.org/1604002 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4368 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
c898c7ae03
commit
fbefa72f81
@ -29,6 +29,8 @@
|
||||
#ifndef V8_ARM_CODEGEN_ARM_INL_H_
|
||||
#define V8_ARM_CODEGEN_ARM_INL_H_
|
||||
|
||||
#include "virtual-frame-arm.h"
|
||||
|
||||
namespace v8 {
|
||||
namespace internal {
|
||||
|
||||
@ -43,6 +45,7 @@ void CodeGenerator::LoadConditionAndSpill(Expression* expression,
|
||||
|
||||
|
||||
void CodeGenerator::LoadAndSpill(Expression* expression) {
|
||||
ASSERT(VirtualFrame::SpilledScope::is_spilled());
|
||||
Load(expression);
|
||||
}
|
||||
|
||||
@ -57,11 +60,6 @@ void CodeGenerator::VisitStatementsAndSpill(ZoneList<Statement*>* statements) {
|
||||
}
|
||||
|
||||
|
||||
void Reference::GetValueAndSpill() {
|
||||
GetValue();
|
||||
}
|
||||
|
||||
|
||||
// Platform-specific inline functions.
|
||||
|
||||
void DeferredCode::Jump() { __ jmp(&entry_label_); }
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -92,10 +92,6 @@ class Reference BASE_EMBEDDED {
|
||||
// If the reference is not consumed, it is left in place under its value.
|
||||
void GetValue();
|
||||
|
||||
// Generate code to pop a reference, push the value of the reference,
|
||||
// and then spill the stack frame.
|
||||
inline void GetValueAndSpill();
|
||||
|
||||
// Generate code to store the value on top of the expression stack in the
|
||||
// reference. The reference is expected to be immediately below the value
|
||||
// on the expression stack. The value is stored in the location specified
|
||||
@ -314,6 +310,9 @@ class CodeGenerator: public AstVisitor {
|
||||
void GenericBinaryOperation(Token::Value op,
|
||||
OverwriteMode overwrite_mode,
|
||||
int known_rhs = kUnknownIntValue);
|
||||
void VirtualFrameBinaryOperation(Token::Value op,
|
||||
OverwriteMode overwrite_mode,
|
||||
int known_rhs = kUnknownIntValue);
|
||||
void Comparison(Condition cc,
|
||||
Expression* left,
|
||||
Expression* right,
|
||||
@ -324,6 +323,11 @@ class CodeGenerator: public AstVisitor {
|
||||
bool reversed,
|
||||
OverwriteMode mode);
|
||||
|
||||
void VirtualFrameSmiOperation(Token::Value op,
|
||||
Handle<Object> value,
|
||||
bool reversed,
|
||||
OverwriteMode mode);
|
||||
|
||||
void CallWithArguments(ZoneList<Expression*>* arguments,
|
||||
CallFunctionFlags flags,
|
||||
int position);
|
||||
|
@ -180,6 +180,19 @@ void MacroAssembler::Drop(int count, Condition cond) {
|
||||
}
|
||||
|
||||
|
||||
void MacroAssembler::Swap(Register reg1, Register reg2, Register scratch) {
|
||||
if (scratch.is(no_reg)) {
|
||||
eor(reg1, reg1, Operand(reg2));
|
||||
eor(reg2, reg2, Operand(reg1));
|
||||
eor(reg1, reg1, Operand(reg2));
|
||||
} else {
|
||||
mov(scratch, reg1);
|
||||
mov(reg1, reg2);
|
||||
mov(reg2, scratch);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void MacroAssembler::Call(Label* target) {
|
||||
bl(target);
|
||||
}
|
||||
@ -190,6 +203,13 @@ void MacroAssembler::Move(Register dst, Handle<Object> value) {
|
||||
}
|
||||
|
||||
|
||||
void MacroAssembler::Move(Register dst, Register src) {
|
||||
if (!dst.is(src)) {
|
||||
mov(dst, src);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void MacroAssembler::SmiJumpTable(Register index, Vector<Label*> targets) {
|
||||
// Empty the const pool.
|
||||
CheckConstPool(true, true);
|
||||
|
@ -70,8 +70,15 @@ class MacroAssembler: public Assembler {
|
||||
// from the stack, clobbering only the sp register.
|
||||
void Drop(int count, Condition cond = al);
|
||||
|
||||
|
||||
// Swap two registers. If the scratch register is omitted then a slightly
|
||||
// less efficient form using xor instead of mov is emitted.
|
||||
void Swap(Register reg1, Register reg2, Register scratch = no_reg);
|
||||
|
||||
void Call(Label* target);
|
||||
void Move(Register dst, Handle<Object> value);
|
||||
// May do nothing if the registers are identical.
|
||||
void Move(Register dst, Register src);
|
||||
// Jumps to the label at the index given by the Smi in "index".
|
||||
void SmiJumpTable(Register index, Vector<Label*> targets);
|
||||
// Load an object from the root table.
|
||||
|
@ -92,9 +92,6 @@ Register RegisterAllocator::ToRegister(int num) {
|
||||
|
||||
void RegisterAllocator::Initialize() {
|
||||
Reset();
|
||||
// The non-reserved r1 and lr registers are live on JS function entry.
|
||||
Use(r1); // JS function.
|
||||
Use(lr); // Return address.
|
||||
}
|
||||
|
||||
|
||||
|
@ -33,7 +33,8 @@ namespace internal {
|
||||
|
||||
class RegisterAllocatorConstants : public AllStatic {
|
||||
public:
|
||||
static const int kNumRegisters = 12;
|
||||
// No registers are currently managed by the register allocator on ARM.
|
||||
static const int kNumRegisters = 0;
|
||||
static const int kInvalidRegister = -1;
|
||||
};
|
||||
|
||||
|
@ -37,34 +37,126 @@ namespace internal {
|
||||
|
||||
#define __ ACCESS_MASM(masm())
|
||||
|
||||
void VirtualFrame::SyncElementBelowStackPointer(int index) {
|
||||
UNREACHABLE();
|
||||
void VirtualFrame::PopToR1R0() {
|
||||
VirtualFrame where_to_go = *this;
|
||||
// Shuffle things around so the top of stack is in r0 and r1.
|
||||
where_to_go.top_of_stack_state_ = R0_R1_TOS;
|
||||
MergeTo(&where_to_go);
|
||||
// Pop the two registers off the stack so they are detached from the frame.
|
||||
element_count_ -= 2;
|
||||
top_of_stack_state_ = NO_TOS_REGISTERS;
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::SyncElementByPushing(int index) {
|
||||
UNREACHABLE();
|
||||
void VirtualFrame::PopToR1() {
|
||||
VirtualFrame where_to_go = *this;
|
||||
// Shuffle things around so the top of stack is only in r1.
|
||||
where_to_go.top_of_stack_state_ = R1_TOS;
|
||||
MergeTo(&where_to_go);
|
||||
// Pop the register off the stack so it is detached from the frame.
|
||||
element_count_ -= 1;
|
||||
top_of_stack_state_ = NO_TOS_REGISTERS;
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::PopToR0() {
|
||||
VirtualFrame where_to_go = *this;
|
||||
// Shuffle things around so the top of stack only in r0.
|
||||
where_to_go.top_of_stack_state_ = R0_TOS;
|
||||
MergeTo(&where_to_go);
|
||||
// Pop the register off the stack so it is detached from the frame.
|
||||
element_count_ -= 1;
|
||||
top_of_stack_state_ = NO_TOS_REGISTERS;
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::MergeTo(VirtualFrame* expected) {
|
||||
// ARM frames are currently always in memory.
|
||||
ASSERT(Equals(expected));
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::MergeMoveRegistersToMemory(VirtualFrame* expected) {
|
||||
UNREACHABLE();
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::MergeMoveRegistersToRegisters(VirtualFrame* expected) {
|
||||
UNREACHABLE();
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::MergeMoveMemoryToRegisters(VirtualFrame* expected) {
|
||||
UNREACHABLE();
|
||||
if (Equals(expected)) return;
|
||||
#define CASE_NUMBER(a, b) ((a) * TOS_STATES + (b))
|
||||
switch (CASE_NUMBER(top_of_stack_state_, expected->top_of_stack_state_)) {
|
||||
case CASE_NUMBER(NO_TOS_REGISTERS, NO_TOS_REGISTERS):
|
||||
break;
|
||||
case CASE_NUMBER(NO_TOS_REGISTERS, R0_TOS):
|
||||
__ pop(r0);
|
||||
break;
|
||||
case CASE_NUMBER(NO_TOS_REGISTERS, R1_TOS):
|
||||
__ pop(r1);
|
||||
break;
|
||||
case CASE_NUMBER(NO_TOS_REGISTERS, R0_R1_TOS):
|
||||
__ pop(r0);
|
||||
__ pop(r1);
|
||||
break;
|
||||
case CASE_NUMBER(NO_TOS_REGISTERS, R1_R0_TOS):
|
||||
__ pop(r1);
|
||||
__ pop(r1);
|
||||
break;
|
||||
case CASE_NUMBER(R0_TOS, NO_TOS_REGISTERS):
|
||||
__ push(r0);
|
||||
break;
|
||||
case CASE_NUMBER(R0_TOS, R0_TOS):
|
||||
break;
|
||||
case CASE_NUMBER(R0_TOS, R1_TOS):
|
||||
__ mov(r1, r0);
|
||||
break;
|
||||
case CASE_NUMBER(R0_TOS, R0_R1_TOS):
|
||||
__ pop(r1);
|
||||
break;
|
||||
case CASE_NUMBER(R0_TOS, R1_R0_TOS):
|
||||
__ mov(r1, r0);
|
||||
__ pop(r0);
|
||||
break;
|
||||
case CASE_NUMBER(R1_TOS, NO_TOS_REGISTERS):
|
||||
__ push(r1);
|
||||
break;
|
||||
case CASE_NUMBER(R1_TOS, R0_TOS):
|
||||
__ mov(r0, r1);
|
||||
break;
|
||||
case CASE_NUMBER(R1_TOS, R1_TOS):
|
||||
break;
|
||||
case CASE_NUMBER(R1_TOS, R0_R1_TOS):
|
||||
__ mov(r0, r1);
|
||||
__ pop(r1);
|
||||
break;
|
||||
case CASE_NUMBER(R1_TOS, R1_R0_TOS):
|
||||
__ pop(r0);
|
||||
break;
|
||||
case CASE_NUMBER(R0_R1_TOS, NO_TOS_REGISTERS):
|
||||
__ push(r1);
|
||||
__ push(r0);
|
||||
break;
|
||||
case CASE_NUMBER(R0_R1_TOS, R0_TOS):
|
||||
__ push(r1);
|
||||
break;
|
||||
case CASE_NUMBER(R0_R1_TOS, R1_TOS):
|
||||
__ push(r1);
|
||||
__ mov(r1, r0);
|
||||
break;
|
||||
case CASE_NUMBER(R0_R1_TOS, R0_R1_TOS):
|
||||
break;
|
||||
case CASE_NUMBER(R0_R1_TOS, R1_R0_TOS):
|
||||
__ Swap(r0, r1, ip);
|
||||
break;
|
||||
case CASE_NUMBER(R1_R0_TOS, NO_TOS_REGISTERS):
|
||||
__ push(r0);
|
||||
__ push(r1);
|
||||
break;
|
||||
case CASE_NUMBER(R1_R0_TOS, R0_TOS):
|
||||
__ push(r0);
|
||||
__ mov(r0, r1);
|
||||
break;
|
||||
case CASE_NUMBER(R1_R0_TOS, R1_TOS):
|
||||
__ push(r0);
|
||||
break;
|
||||
case CASE_NUMBER(R1_R0_TOS, R0_R1_TOS):
|
||||
__ Swap(r0, r1, ip);
|
||||
break;
|
||||
case CASE_NUMBER(R1_R0_TOS, R1_R0_TOS):
|
||||
break;
|
||||
default:
|
||||
UNREACHABLE();
|
||||
#undef CASE_NUMBER
|
||||
}
|
||||
ASSERT(register_allocation_map_ == expected->register_allocation_map_);
|
||||
}
|
||||
|
||||
|
||||
@ -92,8 +184,6 @@ void VirtualFrame::Enter() {
|
||||
__ stm(db_w, sp, r1.bit() | cp.bit() | fp.bit() | lr.bit());
|
||||
// Adjust FP to point to saved FP.
|
||||
__ add(fp, sp, Operand(2 * kPointerSize));
|
||||
cgen()->allocator()->Unuse(r1);
|
||||
cgen()->allocator()->Unuse(lr);
|
||||
}
|
||||
|
||||
|
||||
@ -152,37 +242,11 @@ void VirtualFrame::AllocateStackSlots() {
|
||||
|
||||
|
||||
|
||||
void VirtualFrame::SaveContextRegister() {
|
||||
UNIMPLEMENTED();
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::RestoreContextRegister() {
|
||||
UNIMPLEMENTED();
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::PushReceiverSlotAddress() {
|
||||
UNIMPLEMENTED();
|
||||
}
|
||||
|
||||
|
||||
int VirtualFrame::InvalidateFrameSlotAt(int index) {
|
||||
UNIMPLEMENTED();
|
||||
return kIllegalIndex;
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::TakeFrameSlotAt(int index) {
|
||||
UNIMPLEMENTED();
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::StoreToFrameSlotAt(int index) {
|
||||
UNIMPLEMENTED();
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::PushTryHandler(HandlerType type) {
|
||||
// Grow the expression stack by handler size less one (the return
|
||||
// address in lr is already counted by a call instruction).
|
||||
@ -247,52 +311,192 @@ void VirtualFrame::CallCodeObject(Handle<Code> code,
|
||||
}
|
||||
|
||||
|
||||
// NO_TOS_REGISTERS, R0_TOS, R1_TOS, R1_R0_TOS, R0_R1_TOS.
|
||||
const bool VirtualFrame::kR0InUse[TOS_STATES] =
|
||||
{ false, true, false, true, true };
|
||||
const bool VirtualFrame::kR1InUse[TOS_STATES] =
|
||||
{ false, false, true, true, true };
|
||||
const int VirtualFrame::kVirtualElements[TOS_STATES] =
|
||||
{ 0, 1, 1, 2, 2 };
|
||||
const Register VirtualFrame::kTopRegister[TOS_STATES] =
|
||||
{ r0, r0, r1, r1, r0 };
|
||||
const Register VirtualFrame::kBottomRegister[TOS_STATES] =
|
||||
{ r0, r0, r1, r0, r1 };
|
||||
const Register VirtualFrame::kAllocatedRegisters[
|
||||
VirtualFrame::kNumberOfAllocatedRegisters] = { r2, r3, r4, r5, r6 };
|
||||
// Popping is done by the transition implied by kStateAfterPop. Of course if
|
||||
// there were no stack slots allocated to registers then the physical SP must
|
||||
// be adjusted.
|
||||
const VirtualFrame::TopOfStack VirtualFrame::kStateAfterPop[TOS_STATES] =
|
||||
{ NO_TOS_REGISTERS, NO_TOS_REGISTERS, NO_TOS_REGISTERS, R0_TOS, R1_TOS };
|
||||
// Pushing is done by the transition implied by kStateAfterPush. Of course if
|
||||
// the maximum number of registers was already allocated to the top of stack
|
||||
// slots then one register must be physically pushed onto the stack.
|
||||
const VirtualFrame::TopOfStack VirtualFrame::kStateAfterPush[TOS_STATES] =
|
||||
{ R0_TOS, R1_R0_TOS, R0_R1_TOS, R0_R1_TOS, R1_R0_TOS };
|
||||
|
||||
|
||||
bool VirtualFrame::SpilledScope::is_spilled_ = false;
|
||||
|
||||
|
||||
void VirtualFrame::Drop(int count) {
|
||||
ASSERT(count >= 0);
|
||||
ASSERT(height() >= count);
|
||||
int num_virtual_elements = (element_count() - 1) - stack_pointer_;
|
||||
|
||||
// Emit code to lower the stack pointer if necessary.
|
||||
if (num_virtual_elements < count) {
|
||||
int num_dropped = count - num_virtual_elements;
|
||||
stack_pointer_ -= num_dropped;
|
||||
__ add(sp, sp, Operand(num_dropped * kPointerSize));
|
||||
}
|
||||
|
||||
// Discard elements from the virtual frame and free any registers.
|
||||
int num_virtual_elements = kVirtualElements[top_of_stack_state_];
|
||||
while (num_virtual_elements > 0) {
|
||||
Pop();
|
||||
num_virtual_elements--;
|
||||
count--;
|
||||
if (count == 0) return;
|
||||
}
|
||||
if (count == 0) return;
|
||||
__ add(sp, sp, Operand(count * kPointerSize));
|
||||
element_count_ -= count;
|
||||
}
|
||||
|
||||
|
||||
Result VirtualFrame::Pop() {
|
||||
UNIMPLEMENTED();
|
||||
return Result();
|
||||
void VirtualFrame::Pop() {
|
||||
if (top_of_stack_state_ == NO_TOS_REGISTERS) {
|
||||
__ add(sp, sp, Operand(kPointerSize));
|
||||
} else {
|
||||
top_of_stack_state_ = kStateAfterPop[top_of_stack_state_];
|
||||
}
|
||||
element_count_--;
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::EmitPop(Register reg) {
|
||||
ASSERT(stack_pointer_ == element_count() - 1);
|
||||
stack_pointer_--;
|
||||
ASSERT(!is_used(reg));
|
||||
if (top_of_stack_state_ == NO_TOS_REGISTERS) {
|
||||
__ pop(reg);
|
||||
} else {
|
||||
__ mov(reg, kTopRegister[top_of_stack_state_]);
|
||||
top_of_stack_state_ = kStateAfterPop[top_of_stack_state_];
|
||||
}
|
||||
element_count_--;
|
||||
__ pop(reg);
|
||||
}
|
||||
|
||||
|
||||
Register VirtualFrame::Peek() {
|
||||
AssertIsNotSpilled();
|
||||
if (top_of_stack_state_ == NO_TOS_REGISTERS) {
|
||||
top_of_stack_state_ = kStateAfterPush[top_of_stack_state_];
|
||||
Register answer = kTopRegister[top_of_stack_state_];
|
||||
__ pop(answer);
|
||||
return answer;
|
||||
} else {
|
||||
return kTopRegister[top_of_stack_state_];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Register VirtualFrame::PopToRegister(Register but_not_to_this_one) {
|
||||
ASSERT(but_not_to_this_one.is(r0) ||
|
||||
but_not_to_this_one.is(r1) ||
|
||||
but_not_to_this_one.is(no_reg));
|
||||
AssertIsNotSpilled();
|
||||
element_count_--;
|
||||
if (top_of_stack_state_ == NO_TOS_REGISTERS) {
|
||||
if (but_not_to_this_one.is(r0)) {
|
||||
__ pop(r1);
|
||||
return r1;
|
||||
} else {
|
||||
__ pop(r0);
|
||||
return r0;
|
||||
}
|
||||
} else {
|
||||
Register answer = kTopRegister[top_of_stack_state_];
|
||||
ASSERT(!answer.is(but_not_to_this_one));
|
||||
top_of_stack_state_ = kStateAfterPop[top_of_stack_state_];
|
||||
return answer;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::EnsureOneFreeTOSRegister() {
|
||||
if (kVirtualElements[top_of_stack_state_] == kMaxTOSRegisters) {
|
||||
__ push(kBottomRegister[top_of_stack_state_]);
|
||||
top_of_stack_state_ = kStateAfterPush[top_of_stack_state_];
|
||||
top_of_stack_state_ = kStateAfterPop[top_of_stack_state_];
|
||||
}
|
||||
ASSERT(kVirtualElements[top_of_stack_state_] != kMaxTOSRegisters);
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::EmitPush(Register reg) {
|
||||
ASSERT(stack_pointer_ == element_count() - 1);
|
||||
element_count_++;
|
||||
stack_pointer_++;
|
||||
__ push(reg);
|
||||
if (SpilledScope::is_spilled()) {
|
||||
__ push(reg);
|
||||
return;
|
||||
}
|
||||
if (top_of_stack_state_ == NO_TOS_REGISTERS) {
|
||||
if (reg.is(r0)) {
|
||||
top_of_stack_state_ = R0_TOS;
|
||||
return;
|
||||
}
|
||||
if (reg.is(r1)) {
|
||||
top_of_stack_state_ = R1_TOS;
|
||||
return;
|
||||
}
|
||||
}
|
||||
EnsureOneFreeTOSRegister();
|
||||
top_of_stack_state_ = kStateAfterPush[top_of_stack_state_];
|
||||
Register dest = kTopRegister[top_of_stack_state_];
|
||||
__ Move(dest, reg);
|
||||
}
|
||||
|
||||
|
||||
Register VirtualFrame::GetTOSRegister() {
|
||||
if (SpilledScope::is_spilled()) return r0;
|
||||
|
||||
EnsureOneFreeTOSRegister();
|
||||
return kTopRegister[kStateAfterPush[top_of_stack_state_]];
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::EmitPush(MemOperand operand) {
|
||||
element_count_++;
|
||||
if (SpilledScope::is_spilled()) {
|
||||
__ ldr(r0, operand);
|
||||
__ push(r0);
|
||||
return;
|
||||
}
|
||||
EnsureOneFreeTOSRegister();
|
||||
top_of_stack_state_ = kStateAfterPush[top_of_stack_state_];
|
||||
__ ldr(kTopRegister[top_of_stack_state_], operand);
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::EmitPushMultiple(int count, int src_regs) {
|
||||
ASSERT(stack_pointer_ == element_count() - 1);
|
||||
ASSERT(SpilledScope::is_spilled());
|
||||
Adjust(count);
|
||||
__ stm(db_w, sp, src_regs);
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::SpillAll() {
|
||||
switch (top_of_stack_state_) {
|
||||
case R1_R0_TOS:
|
||||
masm()->push(r0);
|
||||
// Fall through.
|
||||
case R1_TOS:
|
||||
masm()->push(r1);
|
||||
top_of_stack_state_ = NO_TOS_REGISTERS;
|
||||
break;
|
||||
case R0_R1_TOS:
|
||||
masm()->push(r1);
|
||||
// Fall through.
|
||||
case R0_TOS:
|
||||
masm()->push(r0);
|
||||
top_of_stack_state_ = NO_TOS_REGISTERS;
|
||||
// Fall through.
|
||||
case NO_TOS_REGISTERS:
|
||||
break;
|
||||
}
|
||||
ASSERT(register_allocation_map_ == 0); // Not yet implemented.
|
||||
}
|
||||
|
||||
#undef __
|
||||
|
||||
} } // namespace v8::internal
|
||||
|
@ -45,14 +45,69 @@ namespace internal {
|
||||
|
||||
class VirtualFrame : public ZoneObject {
|
||||
public:
|
||||
class RegisterAllocationScope;
|
||||
// A utility class to introduce a scope where the virtual frame is
|
||||
// expected to remain spilled. The constructor spills the code
|
||||
// generator's current frame, but no attempt is made to require it
|
||||
// to stay spilled. It is intended as documentation while the code
|
||||
// generator is being transformed.
|
||||
// generator's current frame, and keeps it spilled.
|
||||
class SpilledScope BASE_EMBEDDED {
|
||||
public:
|
||||
SpilledScope() {}
|
||||
explicit SpilledScope(VirtualFrame* frame)
|
||||
: old_is_spilled_(is_spilled_) {
|
||||
if (frame != NULL) {
|
||||
if (!is_spilled_) {
|
||||
frame->SpillAll();
|
||||
} else {
|
||||
frame->AssertIsSpilled();
|
||||
}
|
||||
}
|
||||
is_spilled_ = true;
|
||||
}
|
||||
~SpilledScope() {
|
||||
is_spilled_ = old_is_spilled_;
|
||||
}
|
||||
static bool is_spilled() { return is_spilled_; }
|
||||
|
||||
private:
|
||||
static bool is_spilled_;
|
||||
int old_is_spilled_;
|
||||
|
||||
SpilledScope() { }
|
||||
|
||||
friend class RegisterAllocationScope;
|
||||
};
|
||||
|
||||
class RegisterAllocationScope BASE_EMBEDDED {
|
||||
public:
|
||||
// A utility class to introduce a scope where the virtual frame
|
||||
// is not spilled, ie. where register allocation occurs. Eventually
|
||||
// when RegisterAllocationScope is ubiquitous it can be removed
|
||||
// along with the (by then unused) SpilledScope class.
|
||||
explicit RegisterAllocationScope(CodeGenerator* cgen)
|
||||
: cgen_(cgen),
|
||||
old_is_spilled_(SpilledScope::is_spilled_) {
|
||||
SpilledScope::is_spilled_ = false;
|
||||
if (old_is_spilled_) {
|
||||
VirtualFrame* frame = cgen->frame();
|
||||
if (frame != NULL) {
|
||||
frame->AssertIsSpilled();
|
||||
}
|
||||
}
|
||||
}
|
||||
~RegisterAllocationScope() {
|
||||
SpilledScope::is_spilled_ = old_is_spilled_;
|
||||
if (old_is_spilled_) {
|
||||
VirtualFrame* frame = cgen_->frame();
|
||||
if (frame != NULL) {
|
||||
frame->SpillAll();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private:
|
||||
CodeGenerator* cgen_;
|
||||
bool old_is_spilled_;
|
||||
|
||||
RegisterAllocationScope() { }
|
||||
};
|
||||
|
||||
// An illegal index into the virtual frame.
|
||||
@ -75,27 +130,38 @@ class VirtualFrame : public ZoneObject {
|
||||
return element_count() - expression_base_index();
|
||||
}
|
||||
|
||||
int register_location(int num) {
|
||||
ASSERT(num >= 0 && num < RegisterAllocator::kNumRegisters);
|
||||
return register_locations_[num];
|
||||
}
|
||||
|
||||
int register_location(Register reg) {
|
||||
return register_locations_[RegisterAllocator::ToNumber(reg)];
|
||||
}
|
||||
|
||||
void set_register_location(Register reg, int index) {
|
||||
register_locations_[RegisterAllocator::ToNumber(reg)] = index;
|
||||
}
|
||||
|
||||
bool is_used(int num) {
|
||||
ASSERT(num >= 0 && num < RegisterAllocator::kNumRegisters);
|
||||
return register_locations_[num] != kIllegalIndex;
|
||||
switch (num) {
|
||||
case 0: { // r0.
|
||||
return kR0InUse[top_of_stack_state_];
|
||||
}
|
||||
case 1: { // r1.
|
||||
return kR1InUse[top_of_stack_state_];
|
||||
}
|
||||
case 2:
|
||||
case 3:
|
||||
case 4:
|
||||
case 5:
|
||||
case 6: { // r2 to r6.
|
||||
ASSERT(num - kFirstAllocatedRegister < kNumberOfAllocatedRegisters);
|
||||
ASSERT(num >= kFirstAllocatedRegister);
|
||||
if ((register_allocation_map_ &
|
||||
(1 << (num - kFirstAllocatedRegister))) == 0) {
|
||||
return false;
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
default: {
|
||||
ASSERT(num < kFirstAllocatedRegister ||
|
||||
num >= kFirstAllocatedRegister + kNumberOfAllocatedRegisters);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bool is_used(Register reg) {
|
||||
return register_locations_[RegisterAllocator::ToNumber(reg)]
|
||||
!= kIllegalIndex;
|
||||
return is_used(RegisterAllocator::ToNumber(reg));
|
||||
}
|
||||
|
||||
// Add extra in-memory elements to the top of the frame to match an actual
|
||||
@ -104,39 +170,35 @@ class VirtualFrame : public ZoneObject {
|
||||
void Adjust(int count);
|
||||
|
||||
// Forget elements from the top of the frame to match an actual frame (eg,
|
||||
// the frame after a runtime call). No code is emitted.
|
||||
// the frame after a runtime call). No code is emitted except to bring the
|
||||
// frame to a spilled state.
|
||||
void Forget(int count) {
|
||||
ASSERT(count >= 0);
|
||||
ASSERT(stack_pointer_ == element_count() - 1);
|
||||
stack_pointer_ -= count;
|
||||
// On ARM, all elements are in memory, so there is no extra bookkeeping
|
||||
// (registers, copies, etc.) beyond dropping the elements.
|
||||
SpillAll();
|
||||
element_count_ -= count;
|
||||
}
|
||||
|
||||
// Forget count elements from the top of the frame and adjust the stack
|
||||
// pointer downward. This is used, for example, before merging frames at
|
||||
// break, continue, and return targets.
|
||||
void ForgetElements(int count);
|
||||
|
||||
// Spill all values from the frame to memory.
|
||||
inline void SpillAll();
|
||||
void SpillAll();
|
||||
|
||||
void AssertIsSpilled() {
|
||||
ASSERT(top_of_stack_state_ == NO_TOS_REGISTERS);
|
||||
ASSERT(register_allocation_map_ == 0);
|
||||
}
|
||||
|
||||
void AssertIsNotSpilled() {
|
||||
ASSERT(!SpilledScope::is_spilled());
|
||||
}
|
||||
|
||||
// Spill all occurrences of a specific register from the frame.
|
||||
void Spill(Register reg) {
|
||||
if (is_used(reg)) SpillElementAt(register_location(reg));
|
||||
UNIMPLEMENTED();
|
||||
}
|
||||
|
||||
// Spill all occurrences of an arbitrary register if possible. Return the
|
||||
// register spilled or no_reg if it was not possible to free any register
|
||||
// (ie, they all have frame-external references).
|
||||
// (ie, they all have frame-external references). Unimplemented.
|
||||
Register SpillAnyRegister();
|
||||
|
||||
// Prepare this virtual frame for merging to an expected frame by
|
||||
// performing some state changes that do not require generating
|
||||
// code. It is guaranteed that no code will be generated.
|
||||
void PrepareMergeTo(VirtualFrame* expected);
|
||||
|
||||
// Make this virtual frame have a state identical to an expected virtual
|
||||
// frame. As a side effect, code may be emitted to make this frame match
|
||||
// the expected one.
|
||||
@ -147,10 +209,7 @@ class VirtualFrame : public ZoneObject {
|
||||
// registers. Used when the code generator's frame is switched from this
|
||||
// one to NULL by an unconditional jump.
|
||||
void DetachFromCodeGenerator() {
|
||||
RegisterAllocator* cgen_allocator = cgen()->allocator();
|
||||
for (int i = 0; i < RegisterAllocator::kNumRegisters; i++) {
|
||||
if (is_used(i)) cgen_allocator->Unuse(i);
|
||||
}
|
||||
AssertIsSpilled();
|
||||
}
|
||||
|
||||
// (Re)attach a frame to its code generator. This informs the register
|
||||
@ -158,10 +217,7 @@ class VirtualFrame : public ZoneObject {
|
||||
// Used when a code generator's frame is switched from NULL to this one by
|
||||
// binding a label.
|
||||
void AttachToCodeGenerator() {
|
||||
RegisterAllocator* cgen_allocator = cgen()->allocator();
|
||||
for (int i = 0; i < RegisterAllocator::kNumRegisters; i++) {
|
||||
if (is_used(i)) cgen_allocator->Unuse(i);
|
||||
}
|
||||
AssertIsSpilled();
|
||||
}
|
||||
|
||||
// Emit code for the physical JS entry and exit frame sequences. After
|
||||
@ -184,23 +240,17 @@ class VirtualFrame : public ZoneObject {
|
||||
void AllocateStackSlots();
|
||||
|
||||
// The current top of the expression stack as an assembly operand.
|
||||
MemOperand Top() { return MemOperand(sp, 0); }
|
||||
MemOperand Top() {
|
||||
AssertIsSpilled();
|
||||
return MemOperand(sp, 0);
|
||||
}
|
||||
|
||||
// An element of the expression stack as an assembly operand.
|
||||
MemOperand ElementAt(int index) {
|
||||
AssertIsSpilled();
|
||||
return MemOperand(sp, index * kPointerSize);
|
||||
}
|
||||
|
||||
// Random-access store to a frame-top relative frame element. The result
|
||||
// becomes owned by the frame and is invalidated.
|
||||
void SetElementAt(int index, Result* value);
|
||||
|
||||
// Set a frame element to a constant. The index is frame-top relative.
|
||||
void SetElementAt(int index, Handle<Object> value) {
|
||||
Result temp(value);
|
||||
SetElementAt(index, &temp);
|
||||
}
|
||||
|
||||
// A frame-allocated local as an assembly operand.
|
||||
MemOperand LocalAt(int index) {
|
||||
ASSERT(0 <= index);
|
||||
@ -208,13 +258,6 @@ class VirtualFrame : public ZoneObject {
|
||||
return MemOperand(fp, kLocal0Offset - index * kPointerSize);
|
||||
}
|
||||
|
||||
// Push the value of a local frame slot on top of the frame and invalidate
|
||||
// the local slot. The slot should be written to before trying to read
|
||||
// from it again.
|
||||
void TakeLocalAt(int index) {
|
||||
TakeFrameSlotAt(local0_index() + index);
|
||||
}
|
||||
|
||||
// Push the address of the receiver slot on the frame.
|
||||
void PushReceiverSlotAddress();
|
||||
|
||||
@ -224,13 +267,6 @@ class VirtualFrame : public ZoneObject {
|
||||
// The context frame slot.
|
||||
MemOperand Context() { return MemOperand(fp, kContextOffset); }
|
||||
|
||||
// Save the value of the esi register to the context frame slot.
|
||||
void SaveContextRegister();
|
||||
|
||||
// Restore the esi register from the value of the context frame
|
||||
// slot.
|
||||
void RestoreContextRegister();
|
||||
|
||||
// A parameter as an assembly operand.
|
||||
MemOperand ParameterAt(int index) {
|
||||
// Index -1 corresponds to the receiver.
|
||||
@ -239,19 +275,6 @@ class VirtualFrame : public ZoneObject {
|
||||
return MemOperand(fp, (1 + parameter_count() - index) * kPointerSize);
|
||||
}
|
||||
|
||||
// Push the value of a paramter frame slot on top of the frame and
|
||||
// invalidate the parameter slot. The slot should be written to before
|
||||
// trying to read from it again.
|
||||
void TakeParameterAt(int index) {
|
||||
TakeFrameSlotAt(param0_index() + index);
|
||||
}
|
||||
|
||||
// Store the top value on the virtual frame into a parameter frame slot.
|
||||
// The value is left in place on top of the frame.
|
||||
void StoreToParameterAt(int index) {
|
||||
StoreToFrameSlotAt(param0_index() + index);
|
||||
}
|
||||
|
||||
// The receiver frame slot.
|
||||
MemOperand Receiver() { return ParameterAt(-1); }
|
||||
|
||||
@ -261,7 +284,7 @@ class VirtualFrame : public ZoneObject {
|
||||
// Call stub given the number of arguments it expects on (and
|
||||
// removes from) the stack.
|
||||
void CallStub(CodeStub* stub, int arg_count) {
|
||||
Forget(arg_count);
|
||||
if (arg_count != 0) Forget(arg_count);
|
||||
ASSERT(cgen()->HasValidEntryRegisters());
|
||||
masm()->CallStub(stub);
|
||||
}
|
||||
@ -296,34 +319,49 @@ class VirtualFrame : public ZoneObject {
|
||||
// Drop one element.
|
||||
void Drop() { Drop(1); }
|
||||
|
||||
// Pop an element from the top of the expression stack. Returns a
|
||||
// Result, which may be a constant or a register.
|
||||
Result Pop();
|
||||
// Pop an element from the top of the expression stack. Discards
|
||||
// the result.
|
||||
void Pop();
|
||||
|
||||
// Pop an element from the top of the expression stack. The register
|
||||
// will be one normally used for the top of stack register allocation
|
||||
// so you can't hold on to it if you push on the stack.
|
||||
Register PopToRegister(Register but_not_to_this_one = no_reg);
|
||||
|
||||
// Look at the top of the stack. The register returned is aliased and
|
||||
// must be copied to a scratch register before modification.
|
||||
Register Peek();
|
||||
|
||||
// Pop and save an element from the top of the expression stack and
|
||||
// emit a corresponding pop instruction.
|
||||
void EmitPop(Register reg);
|
||||
|
||||
// Takes the top two elements and puts them in r0 (top element) and r1
|
||||
// (second element).
|
||||
void PopToR1R0();
|
||||
|
||||
// Takes the top element and puts it in r1.
|
||||
void PopToR1();
|
||||
|
||||
// Takes the top element and puts it in r0.
|
||||
void PopToR0();
|
||||
|
||||
// Push an element on top of the expression stack and emit a
|
||||
// corresponding push instruction.
|
||||
void EmitPush(Register reg);
|
||||
void EmitPush(MemOperand operand);
|
||||
|
||||
// Get a register which is free and which must be immediately used to
|
||||
// push on the top of the stack.
|
||||
Register GetTOSRegister();
|
||||
|
||||
// Push multiple registers on the stack and the virtual frame
|
||||
// Register are selected by setting bit in src_regs and
|
||||
// are pushed in decreasing order: r15 .. r0.
|
||||
void EmitPushMultiple(int count, int src_regs);
|
||||
|
||||
// Push an element on the virtual frame.
|
||||
inline void Push(Handle<Object> value);
|
||||
inline void Push(Smi* value);
|
||||
|
||||
// Nip removes zero or more elements from immediately below the top
|
||||
// of the frame, leaving the previous top-of-frame value on top of
|
||||
// the frame. Nip(k) is equivalent to x = Pop(), Drop(k), Push(x).
|
||||
inline void Nip(int num_dropped);
|
||||
|
||||
inline void SetTypeForLocalAt(int index, TypeInfo info);
|
||||
inline void SetTypeForParamAt(int index, TypeInfo info);
|
||||
static Register scratch0() { return r7; }
|
||||
static Register scratch1() { return r9; }
|
||||
|
||||
private:
|
||||
static const int kLocal0Offset = JavaScriptFrameConstants::kLocal0Offset;
|
||||
@ -333,16 +371,40 @@ class VirtualFrame : public ZoneObject {
|
||||
static const int kHandlerSize = StackHandlerConstants::kSize / kPointerSize;
|
||||
static const int kPreallocatedElements = 5 + 8; // 8 expression stack slots.
|
||||
|
||||
// 5 states for the top of stack, which can be in memory or in r0 and r1.
|
||||
enum TopOfStack { NO_TOS_REGISTERS, R0_TOS, R1_TOS, R1_R0_TOS, R0_R1_TOS,
|
||||
TOS_STATES};
|
||||
static const int kMaxTOSRegisters = 2;
|
||||
|
||||
static const bool kR0InUse[TOS_STATES];
|
||||
static const bool kR1InUse[TOS_STATES];
|
||||
static const int kVirtualElements[TOS_STATES];
|
||||
static const TopOfStack kStateAfterPop[TOS_STATES];
|
||||
static const TopOfStack kStateAfterPush[TOS_STATES];
|
||||
static const Register kTopRegister[TOS_STATES];
|
||||
static const Register kBottomRegister[TOS_STATES];
|
||||
|
||||
// We allocate up to 5 locals in registers.
|
||||
static const int kNumberOfAllocatedRegisters = 5;
|
||||
// r2 to r6 are allocated to locals.
|
||||
static const int kFirstAllocatedRegister = 2;
|
||||
|
||||
static const Register kAllocatedRegisters[kNumberOfAllocatedRegisters];
|
||||
|
||||
static Register AllocatedRegister(int r) {
|
||||
ASSERT(r >= 0 && r < kNumberOfAllocatedRegisters);
|
||||
return kAllocatedRegisters[r];
|
||||
}
|
||||
|
||||
// The number of elements on the stack frame.
|
||||
int element_count_;
|
||||
TopOfStack top_of_stack_state_:3;
|
||||
int register_allocation_map_:kNumberOfAllocatedRegisters;
|
||||
|
||||
// The index of the element that is at the processor's stack pointer
|
||||
// (the sp register).
|
||||
int stack_pointer_;
|
||||
|
||||
// The index of the register frame element using each register, or
|
||||
// kIllegalIndex if a register is not on the frame.
|
||||
int register_locations_[RegisterAllocator::kNumRegisters];
|
||||
// (the sp register). For now since everything is in memory it is given
|
||||
// by the number of elements on the not-very-virtual stack frame.
|
||||
int stack_pointer() { return element_count_ - 1; }
|
||||
|
||||
// The number of frame-allocated locals and parameters respectively.
|
||||
int parameter_count() { return cgen()->scope()->num_parameters(); }
|
||||
@ -380,80 +442,15 @@ class VirtualFrame : public ZoneObject {
|
||||
return (frame_pointer() - index) * kPointerSize;
|
||||
}
|
||||
|
||||
// Record an occurrence of a register in the virtual frame. This has the
|
||||
// effect of incrementing the register's external reference count and
|
||||
// of updating the index of the register's location in the frame.
|
||||
void Use(Register reg, int index) {
|
||||
ASSERT(!is_used(reg));
|
||||
set_register_location(reg, index);
|
||||
cgen()->allocator()->Use(reg);
|
||||
}
|
||||
|
||||
// Record that a register reference has been dropped from the frame. This
|
||||
// decrements the register's external reference count and invalidates the
|
||||
// index of the register's location in the frame.
|
||||
void Unuse(Register reg) {
|
||||
ASSERT(is_used(reg));
|
||||
set_register_location(reg, kIllegalIndex);
|
||||
cgen()->allocator()->Unuse(reg);
|
||||
}
|
||||
|
||||
// Spill the element at a particular index---write it to memory if
|
||||
// necessary, free any associated register, and forget its value if
|
||||
// constant.
|
||||
void SpillElementAt(int index);
|
||||
|
||||
// Sync the element at a particular index. If it is a register or
|
||||
// constant that disagrees with the value on the stack, write it to memory.
|
||||
// Keep the element type as register or constant, and clear the dirty bit.
|
||||
void SyncElementAt(int index);
|
||||
|
||||
// Sync a single unsynced element that lies beneath or at the stack pointer.
|
||||
void SyncElementBelowStackPointer(int index);
|
||||
|
||||
// Sync a single unsynced element that lies just above the stack pointer.
|
||||
void SyncElementByPushing(int index);
|
||||
|
||||
// Push a the value of a frame slot (typically a local or parameter) on
|
||||
// top of the frame and invalidate the slot.
|
||||
void TakeFrameSlotAt(int index);
|
||||
|
||||
// Store the value on top of the frame to a frame slot (typically a local
|
||||
// or parameter).
|
||||
void StoreToFrameSlotAt(int index);
|
||||
|
||||
// Spill all elements in registers. Spill the top spilled_args elements
|
||||
// on the frame. Sync all other frame elements.
|
||||
// Then drop dropped_args elements from the virtual frame, to match
|
||||
// the effect of an upcoming call that will drop them from the stack.
|
||||
void PrepareForCall(int spilled_args, int dropped_args);
|
||||
|
||||
// Move frame elements currently in registers or constants, that
|
||||
// should be in memory in the expected frame, to memory.
|
||||
void MergeMoveRegistersToMemory(VirtualFrame* expected);
|
||||
|
||||
// Make the register-to-register moves necessary to
|
||||
// merge this frame with the expected frame.
|
||||
// Register to memory moves must already have been made,
|
||||
// and memory to register moves must follow this call.
|
||||
// This is because some new memory-to-register moves are
|
||||
// created in order to break cycles of register moves.
|
||||
// Used in the implementation of MergeTo().
|
||||
void MergeMoveRegistersToRegisters(VirtualFrame* expected);
|
||||
|
||||
// Make the memory-to-register and constant-to-register moves
|
||||
// needed to make this frame equal the expected frame.
|
||||
// Called after all register-to-memory and register-to-register
|
||||
// moves have been made. After this function returns, the frames
|
||||
// should be equal.
|
||||
void MergeMoveMemoryToRegisters(VirtualFrame* expected);
|
||||
|
||||
// Invalidates a frame slot (puts an invalid frame element in it).
|
||||
// Copies on the frame are correctly handled, and if this slot was
|
||||
// the backing store of copies, the index of the new backing store
|
||||
// is returned. Otherwise, returns kIllegalIndex.
|
||||
// Register counts are correctly updated.
|
||||
int InvalidateFrameSlotAt(int index);
|
||||
// If all top-of-stack registers are in use then the lowest one is pushed
|
||||
// onto the physical stack and made free.
|
||||
void EnsureOneFreeTOSRegister();
|
||||
|
||||
inline bool Equals(VirtualFrame* other);
|
||||
|
||||
|
@ -229,7 +229,12 @@ class DeferredCode: public ZoneObject {
|
||||
Label entry_label_;
|
||||
Label exit_label_;
|
||||
|
||||
int registers_[RegisterAllocator::kNumRegisters];
|
||||
// C++ doesn't allow zero length arrays, so we make the array length 1 even
|
||||
// if we don't need it.
|
||||
static const int kRegistersArrayLength =
|
||||
(RegisterAllocator::kNumRegisters == 0) ?
|
||||
1 : RegisterAllocator::kNumRegisters;
|
||||
int registers_[kRegistersArrayLength];
|
||||
|
||||
#ifdef DEBUG
|
||||
const char* comment_;
|
||||
|
@ -77,23 +77,10 @@ DeferredCode::DeferredCode()
|
||||
ASSERT(position_ != RelocInfo::kNoPosition);
|
||||
|
||||
CodeGeneratorScope::Current()->AddDeferred(this);
|
||||
#ifdef DEBUG
|
||||
comment_ = "";
|
||||
#endif
|
||||
|
||||
// Copy the register locations from the code generator's frame.
|
||||
// These are the registers that will be spilled on entry to the
|
||||
// deferred code and restored on exit.
|
||||
VirtualFrame* frame = CodeGeneratorScope::Current()->frame();
|
||||
for (int i = 0; i < RegisterAllocator::kNumRegisters; i++) {
|
||||
int loc = frame->register_location(i);
|
||||
if (loc == VirtualFrame::kIllegalIndex) {
|
||||
registers_[i] = kIgnore;
|
||||
} else {
|
||||
// Needs to be restored on exit but not saved on entry.
|
||||
registers_[i] = frame->fp_relative(loc) | kSyncedFlag;
|
||||
}
|
||||
}
|
||||
#ifdef DEBUG
|
||||
CodeGeneratorScope::Current()->frame()->AssertIsSpilled();
|
||||
#endif
|
||||
}
|
||||
|
||||
} } // namespace v8::internal
|
||||
|
@ -213,7 +213,11 @@ class RegisterFile BASE_EMBEDDED {
|
||||
}
|
||||
|
||||
private:
|
||||
static const int kNumRegisters = RegisterAllocatorConstants::kNumRegisters;
|
||||
// C++ doesn't like zero length arrays, so we make the array length 1 even if
|
||||
// we don't need it.
|
||||
static const int kNumRegisters =
|
||||
(RegisterAllocatorConstants::kNumRegisters == 0) ?
|
||||
1 : RegisterAllocatorConstants::kNumRegisters;
|
||||
|
||||
int ref_counts_[kNumRegisters];
|
||||
|
||||
|
@ -131,6 +131,22 @@ void VirtualFrame::SetTypeForParamAt(int index, TypeInfo info) {
|
||||
elements_[param0_index() + index].set_type_info(info);
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::Nip(int num_dropped) {
|
||||
ASSERT(num_dropped >= 0);
|
||||
if (num_dropped == 0) return;
|
||||
Result tos = Pop();
|
||||
if (num_dropped > 1) {
|
||||
Drop(num_dropped - 1);
|
||||
}
|
||||
SetElementAt(0, &tos);
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::Push(Smi* value) {
|
||||
Push(Handle<Object> (value));
|
||||
}
|
||||
|
||||
} } // namespace v8::internal
|
||||
|
||||
#endif // V8_VIRTUAL_FRAME_HEAVY_INL_H_
|
||||
|
@ -295,4 +295,18 @@ void VirtualFrame::PrepareForCall(int spilled_args, int dropped_args) {
|
||||
}
|
||||
|
||||
|
||||
// If there are any registers referenced only by the frame, spill one.
|
||||
Register VirtualFrame::SpillAnyRegister() {
|
||||
// Find the leftmost (ordered by register number) register whose only
|
||||
// reference is in the frame.
|
||||
for (int i = 0; i < RegisterAllocator::kNumRegisters; i++) {
|
||||
if (is_used(i) && cgen()->allocator()->count(i) == 1) {
|
||||
SpillElementAt(register_location(i));
|
||||
ASSERT(!cgen()->allocator()->is_used(i));
|
||||
return RegisterAllocator::ToRegister(i);
|
||||
}
|
||||
}
|
||||
return no_reg;
|
||||
}
|
||||
|
||||
} } // namespace v8::internal
|
||||
|
@ -36,25 +36,4 @@
|
||||
#include "virtual-frame-light-inl.h"
|
||||
#endif
|
||||
|
||||
|
||||
namespace v8 {
|
||||
namespace internal {
|
||||
|
||||
void VirtualFrame::Push(Smi* value) {
|
||||
Push(Handle<Object> (value));
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::Nip(int num_dropped) {
|
||||
ASSERT(num_dropped >= 0);
|
||||
if (num_dropped == 0) return;
|
||||
Result tos = Pop();
|
||||
if (num_dropped > 1) {
|
||||
Drop(num_dropped - 1);
|
||||
}
|
||||
SetElementAt(0, &tos);
|
||||
}
|
||||
|
||||
} } // namespace v8::internal
|
||||
|
||||
#endif // V8_VIRTUAL_FRAME_INL_H_
|
||||
|
@ -39,54 +39,28 @@ namespace internal {
|
||||
// the parameters, and a return address. All frame elements are in memory.
|
||||
VirtualFrame::VirtualFrame()
|
||||
: element_count_(parameter_count() + 2),
|
||||
stack_pointer_(parameter_count() + 1) {
|
||||
for (int i = 0; i < RegisterAllocator::kNumRegisters; i++) {
|
||||
register_locations_[i] = kIllegalIndex;
|
||||
}
|
||||
}
|
||||
top_of_stack_state_(NO_TOS_REGISTERS),
|
||||
register_allocation_map_(0) { }
|
||||
|
||||
|
||||
// When cloned, a frame is a deep copy of the original.
|
||||
VirtualFrame::VirtualFrame(VirtualFrame* original)
|
||||
: element_count_(original->element_count()),
|
||||
stack_pointer_(original->stack_pointer_) {
|
||||
memcpy(®ister_locations_,
|
||||
original->register_locations_,
|
||||
sizeof(register_locations_));
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::Push(Handle<Object> value) {
|
||||
UNIMPLEMENTED();
|
||||
}
|
||||
top_of_stack_state_(original->top_of_stack_state_),
|
||||
register_allocation_map_(original->register_allocation_map_) { }
|
||||
|
||||
|
||||
bool VirtualFrame::Equals(VirtualFrame* other) {
|
||||
#ifdef DEBUG
|
||||
for (int i = 0; i < RegisterAllocator::kNumRegisters; i++) {
|
||||
if (register_location(i) != other->register_location(i)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
if (element_count() != other->element_count()) return false;
|
||||
#endif
|
||||
if (stack_pointer_ != other->stack_pointer_) return false;
|
||||
ASSERT(element_count() == other->element_count());
|
||||
if (top_of_stack_state_ != other->top_of_stack_state_) return false;
|
||||
if (register_allocation_map_ != other->register_allocation_map_) return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::SetTypeForLocalAt(int index, TypeInfo info) {
|
||||
UNIMPLEMENTED();
|
||||
}
|
||||
|
||||
|
||||
// Everything is always spilled anyway.
|
||||
void VirtualFrame::SpillAll() {
|
||||
}
|
||||
|
||||
|
||||
void VirtualFrame::PrepareForReturn() {
|
||||
SpillAll();
|
||||
}
|
||||
|
||||
|
||||
|
@ -36,17 +36,14 @@ namespace internal {
|
||||
|
||||
void VirtualFrame::Adjust(int count) {
|
||||
ASSERT(count >= 0);
|
||||
ASSERT(stack_pointer_ == element_count() - 1);
|
||||
|
||||
element_count_ += count;
|
||||
stack_pointer_ += count;
|
||||
}
|
||||
|
||||
|
||||
// Make the type of the element at a given index be MEMORY.
|
||||
void VirtualFrame::SpillElementAt(int index) {
|
||||
// If there are any registers referenced only by the frame, spill one.
|
||||
Register VirtualFrame::SpillAnyRegister() {
|
||||
UNIMPLEMENTED();
|
||||
return no_reg;
|
||||
}
|
||||
|
||||
|
||||
} } // namespace v8::internal
|
||||
|
@ -37,21 +37,6 @@ namespace internal {
|
||||
// -------------------------------------------------------------------------
|
||||
// VirtualFrame implementation.
|
||||
|
||||
// If there are any registers referenced only by the frame, spill one.
|
||||
Register VirtualFrame::SpillAnyRegister() {
|
||||
// Find the leftmost (ordered by register number) register whose only
|
||||
// reference is in the frame.
|
||||
for (int i = 0; i < RegisterAllocator::kNumRegisters; i++) {
|
||||
if (is_used(i) && cgen()->allocator()->count(i) == 1) {
|
||||
SpillElementAt(register_location(i));
|
||||
ASSERT(!cgen()->allocator()->is_used(i));
|
||||
return RegisterAllocator::ToRegister(i);
|
||||
}
|
||||
}
|
||||
return no_reg;
|
||||
}
|
||||
|
||||
|
||||
// Specialization of List::ResizeAdd to non-inlined version for FrameElements.
|
||||
// The function ResizeAdd becomes a real function, whose implementation is the
|
||||
// inlined ResizeAddInternal.
|
||||
|
Loading…
Reference in New Issue
Block a user