Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(215)

Unified Diff: src/ic/x87/handler-compiler-x87.cc

Issue 886503002: Extract LoadAccessor into a masm function. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix whitespace Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/ic/x64/handler-compiler-x64.cc ('k') | src/mips/macro-assembler-mips.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ic/x87/handler-compiler-x87.cc
diff --git a/src/ic/x87/handler-compiler-x87.cc b/src/ic/x87/handler-compiler-x87.cc
index d0e7dfe74daff7365d537c8d277d5127474a6259..6b97ccb0fb3de0beaa4dced361c1f7909a788273 100644
--- a/src/ic/x87/handler-compiler-x87.cc
+++ b/src/ic/x87/handler-compiler-x87.cc
@@ -32,12 +32,7 @@ void NamedLoadHandlerCompiler::GenerateLoadViaGetter(
__ push(receiver);
ParameterCount actual(0);
ParameterCount expected(expected_arguments);
- Register scratch = holder;
- __ mov(scratch, FieldOperand(holder, HeapObject::kMapOffset));
- __ LoadInstanceDescriptors(scratch, scratch);
- __ mov(scratch, FieldOperand(scratch, DescriptorArray::GetValueOffset(
- accessor_index)));
- __ mov(edi, FieldOperand(scratch, AccessorPair::kGetterOffset));
+ __ LoadAccessor(edi, holder, accessor_index, ACCESSOR_GETTER);
__ InvokeFunction(edi, expected, actual, CALL_FUNCTION,
NullCallWrapper());
} else {
@@ -257,12 +252,7 @@ void NamedStoreHandlerCompiler::GenerateStoreViaSetter(
__ push(value());
ParameterCount actual(1);
ParameterCount expected(expected_arguments);
- Register scratch = holder;
- __ mov(scratch, FieldOperand(holder, HeapObject::kMapOffset));
- __ LoadInstanceDescriptors(scratch, scratch);
- __ mov(scratch, FieldOperand(scratch, DescriptorArray::GetValueOffset(
- accessor_index)));
- __ mov(edi, FieldOperand(scratch, AccessorPair::kSetterOffset));
+ __ LoadAccessor(edi, holder, accessor_index, ACCESSOR_SETTER);
__ InvokeFunction(edi, expected, actual, CALL_FUNCTION,
NullCallWrapper());
} else {
« no previous file with comments | « src/ic/x64/handler-compiler-x64.cc ('k') | src/mips/macro-assembler-mips.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698