Index: src/x87/stub-cache-x87.cc |
diff --git a/src/x87/stub-cache-x87.cc b/src/x87/stub-cache-x87.cc |
index aade4fe88df2c8fb92dde5d43a9e20a0843a12b9..80d069616a3eac622cc17b15f1d56a5fc36c2996 100644 |
--- a/src/x87/stub-cache-x87.cc |
+++ b/src/x87/stub-cache-x87.cc |
@@ -401,19 +401,6 @@ void PropertyHandlerCompiler::GenerateCheckPropertyCell( |
} |
-void NamedStoreHandlerCompiler::GenerateNegativeHolderLookup( |
- MacroAssembler* masm, Handle<JSObject> holder, Register holder_reg, |
- Handle<Name> name, Label* miss) { |
- if (holder->IsJSGlobalObject()) { |
- GenerateCheckPropertyCell( |
- masm, Handle<JSGlobalObject>::cast(holder), name, scratch1(), miss); |
- } else if (!holder->HasFastProperties() && !holder->IsJSGlobalProxy()) { |
- GenerateDictionaryNegativeLookup( |
- masm, miss, holder_reg, name, scratch1(), scratch2()); |
- } |
-} |
- |
- |
// Receiver_reg is preserved on jumps to miss_label, but may be destroyed if |
// store is successful. |
void NamedStoreHandlerCompiler::GenerateStoreTransition( |
@@ -1168,20 +1155,6 @@ Handle<Code> PropertyICCompiler::CompileKeyedStorePolymorphic( |
} |
-Handle<Code> NamedLoadHandlerCompiler::CompileLoadNonexistent( |
- Handle<Name> name) { |
- NonexistentFrontend(name); |
- |
- // Return undefined if maps of the full prototype chain are still the |
- // same and no global property with this name contains a value. |
- __ mov(eax, isolate()->factory()->undefined_value()); |
- __ ret(0); |
- |
- // Return the generated code. |
- return GetCode(kind(), Code::FAST, name); |
-} |
- |
- |
Register* PropertyAccessCompiler::load_calling_convention() { |
// receiver, name, scratch1, scratch2, scratch3, scratch4. |
Register receiver = LoadIC::ReceiverRegister(); |