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

Unified Diff: src/code-factory.cc

Issue 2733563002: [ic] Inline LoadIC into LdaNamedProperty bytecode handler (Closed)
Patch Set: Created 3 years, 10 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
Index: src/code-factory.cc
diff --git a/src/code-factory.cc b/src/code-factory.cc
index 04c758a3ec4d272ea51ce4473562ced882163441..71adf6dc5f11aa0e31cceb3a3c4bc4f2da869d96 100644
--- a/src/code-factory.cc
+++ b/src/code-factory.cc
@@ -57,6 +57,12 @@ Callable CodeFactory::LoadICInOptimizedCode(Isolate* isolate) {
}
// static
+Callable CodeFactory::LoadICInOptimizedCode_Noninlined(Isolate* isolate) {
+ return Callable(isolate->builtins()->LoadIC_Noninlined(),
+ LoadWithVectorDescriptor(isolate));
+}
+
+// static
Callable CodeFactory::LoadGlobalIC(Isolate* isolate, TypeofMode typeof_mode) {
return Callable(
typeof_mode == NOT_INSIDE_TYPEOF

Powered by Google App Engine
This is Rietveld 408576698