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

Unified Diff: src/x64/stub-cache-x64.cc

Issue 1605032: Patch trunk to version 2.2.3.1, reverting change 4401. (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 10 years, 8 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/version.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/x64/stub-cache-x64.cc
===================================================================
--- src/x64/stub-cache-x64.cc (revision 4416)
+++ src/x64/stub-cache-x64.cc (working copy)
@@ -1144,36 +1144,6 @@
}
-Object* LoadStubCompiler::CompileLoadNonexistent(JSObject* object) {
- // ----------- S t a t e -------------
- // -- rcx : name
- // -- rsp[0] : return address
- // -- rsp[8] : receiver
- // -----------------------------------
- Label miss;
-
- // Load receiver.
- __ movq(rax, Operand(rsp, kPointerSize));
-
- // Check the maps of the full prototype chain.
- JSObject* last = object;
- while (last->GetPrototype() != Heap::null_value()) {
- last = JSObject::cast(last->GetPrototype());
- }
- CheckPrototypes(object, rax, last, rbx, rdx, Heap::empty_string(), &miss);
-
- // Return undefined if maps of the full prototype chain is still the same.
- __ LoadRoot(rax, Heap::kUndefinedValueRootIndex);
- __ ret(0);
-
- __ bind(&miss);
- GenerateLoadMiss(masm(), Code::LOAD_IC);
-
- // Return the generated code.
- return GetCode(NONEXISTENT, Heap::empty_string());
-}
-
-
Object* LoadStubCompiler::CompileLoadField(JSObject* object,
JSObject* holder,
int index,
« no previous file with comments | « src/version.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698