Commit 1ae585b0 authored by sgjesse@chromium.org's avatar sgjesse@chromium.org

Support both TOS register combinations in inlined keyed load

When popping key and receiver for an inlined keyed load support either order of r0/r1. The possible swap to have key in r0 and receiver in r1 is postponed to the deferred code calling the keyed load IC.
Review URL: http://codereview.chromium.org/1992012

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4634 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent f54b7767
...@@ -5471,20 +5471,34 @@ void DeferredReferenceGetNamedValue::Generate() { ...@@ -5471,20 +5471,34 @@ void DeferredReferenceGetNamedValue::Generate() {
class DeferredReferenceGetKeyedValue: public DeferredCode { class DeferredReferenceGetKeyedValue: public DeferredCode {
public: public:
DeferredReferenceGetKeyedValue() { DeferredReferenceGetKeyedValue(Register key, Register receiver)
: key_(key), receiver_(receiver) {
set_comment("[ DeferredReferenceGetKeyedValue"); set_comment("[ DeferredReferenceGetKeyedValue");
} }
virtual void Generate(); virtual void Generate();
private:
Register key_;
Register receiver_;
}; };
void DeferredReferenceGetKeyedValue::Generate() { void DeferredReferenceGetKeyedValue::Generate() {
ASSERT((key_.is(r0) && receiver_.is(r1)) ||
(key_.is(r1) && receiver_.is(r0)));
Register scratch1 = VirtualFrame::scratch0(); Register scratch1 = VirtualFrame::scratch0();
Register scratch2 = VirtualFrame::scratch1(); Register scratch2 = VirtualFrame::scratch1();
__ DecrementCounter(&Counters::keyed_load_inline, 1, scratch1, scratch2); __ DecrementCounter(&Counters::keyed_load_inline, 1, scratch1, scratch2);
__ IncrementCounter(&Counters::keyed_load_inline_miss, 1, scratch1, scratch2); __ IncrementCounter(&Counters::keyed_load_inline_miss, 1, scratch1, scratch2);
// Ensure key in r0 and receiver in r1 to match keyed load ic calling
// convention.
if (key_.is(r1)) {
__ Swap(r0, r1, ip);
}
// The rest of the instructions in the deferred code must be together. // The rest of the instructions in the deferred code must be together.
{ Assembler::BlockConstPoolScope block_const_pool(masm_); { Assembler::BlockConstPoolScope block_const_pool(masm_);
// Call keyed load IC. It has the arguments key and receiver in r0 and r1. // Call keyed load IC. It has the arguments key and receiver in r0 and r1.
...@@ -5620,15 +5634,14 @@ void CodeGenerator::EmitKeyedLoad() { ...@@ -5620,15 +5634,14 @@ void CodeGenerator::EmitKeyedLoad() {
__ IncrementCounter(&Counters::keyed_load_inline, 1, __ IncrementCounter(&Counters::keyed_load_inline, 1,
frame_->scratch0(), frame_->scratch1()); frame_->scratch0(), frame_->scratch1());
// Load the key and receiver from the stack to r0 and r1. // Load the key and receiver from the stack.
frame_->PopToR1R0(); Register key = frame_->PopToRegister();
Register key = r0; Register receiver = frame_->PopToRegister(key);
Register receiver = r1;
VirtualFrame::SpilledScope spilled(frame_); VirtualFrame::SpilledScope spilled(frame_);
// The deferred code expects key and receiver in r0 and r1. // The deferred code expects key and receiver in registers.
DeferredReferenceGetKeyedValue* deferred = DeferredReferenceGetKeyedValue* deferred =
new DeferredReferenceGetKeyedValue(); new DeferredReferenceGetKeyedValue(key, receiver);
// Check that the receiver is a heap object. // Check that the receiver is a heap object.
__ tst(receiver, Operand(kSmiTagMask)); __ tst(receiver, Operand(kSmiTagMask));
......
...@@ -219,7 +219,7 @@ class CodeGenerator: public AstVisitor { ...@@ -219,7 +219,7 @@ class CodeGenerator: public AstVisitor {
// expected arguments. Otherwise return -1. // expected arguments. Otherwise return -1.
static int InlineRuntimeCallArgumentsCount(Handle<String> name); static int InlineRuntimeCallArgumentsCount(Handle<String> name);
// Constants related to patching of inlined lokad/store. // Constants related to patching of inlined load/store.
static const int kInlinedKeyedLoadInstructionsAfterPatchSize = 19; static const int kInlinedKeyedLoadInstructionsAfterPatchSize = 19;
private: private:
......
...@@ -576,7 +576,6 @@ Register VirtualFrame::PopToRegister(Register but_not_to_this_one) { ...@@ -576,7 +576,6 @@ Register VirtualFrame::PopToRegister(Register but_not_to_this_one) {
ASSERT(but_not_to_this_one.is(r0) || ASSERT(but_not_to_this_one.is(r0) ||
but_not_to_this_one.is(r1) || but_not_to_this_one.is(r1) ||
but_not_to_this_one.is(no_reg)); but_not_to_this_one.is(no_reg));
AssertIsNotSpilled();
element_count_--; element_count_--;
if (top_of_stack_state_ == NO_TOS_REGISTERS) { if (top_of_stack_state_ == NO_TOS_REGISTERS) {
if (but_not_to_this_one.is(r0)) { if (but_not_to_this_one.is(r0)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment