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

Unified Diff: src/builtins.cc

Issue 458813002: Prototype implementation of GET_OWN_PROPERTY intrinsic. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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/builtins.h ('k') | src/code-stubs.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/builtins.cc
diff --git a/src/builtins.cc b/src/builtins.cc
index 498387353da9f46d4e49b16ae697e9f4149b0d05..cd20e0f0e9a40f698b98151cdd2755f7e88f4de9 100644
--- a/src/builtins.cc
+++ b/src/builtins.cc
@@ -1258,6 +1258,11 @@ static void Generate_LoadIC_Slow(MacroAssembler* masm) {
}
+static void Generate_LoadICOwn_Slow(MacroAssembler* masm) {
+ LoadIC::GenerateRuntimeGetOwnProperty(masm);
+}
+
+
static void Generate_KeyedLoadIC_Initialize(MacroAssembler* masm) {
KeyedLoadIC::GenerateInitialize(masm);
}
@@ -1268,14 +1273,20 @@ static void Generate_KeyedLoadIC_Slow(MacroAssembler* masm) {
}
+static void Generate_KeyedLoadICOwn_Slow(MacroAssembler* masm) {
+ KeyedLoadIC::GenerateRuntimeGetOwnProperty(masm);
+}
+
+
static void Generate_KeyedLoadIC_Miss(MacroAssembler* masm) {
KeyedLoadIC::GenerateMiss(masm);
}
-
+/*
static void Generate_KeyedLoadIC_Generic(MacroAssembler* masm) {
- KeyedLoadIC::GenerateGeneric(masm);
+ // KeyedLoadIC::GenerateGeneric(masm);
}
+*/
static void Generate_KeyedLoadIC_String(MacroAssembler* masm) {
« no previous file with comments | « src/builtins.h ('k') | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698