Chromium Code Reviews

Unified Diff: src/runtime/runtime.h

Issue 754863002: Optimize testing for an index's existence in packed Arrays (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: All fixed Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « src/runtime.js ('k') | src/runtime/runtime-object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/runtime/runtime.h
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
index 481cf4392054a8f772f6afd9970aa0f3a3138c45..faf3521d60db0db9e18d209fe4bd49f329e00dbe 100644
--- a/src/runtime/runtime.h
+++ b/src/runtime/runtime.h
@@ -704,7 +704,8 @@ namespace internal {
F(RegExpConstructResult, 3, 1) \
F(GetFromCache, 2, 1) \
F(NumberToString, 1, 1) \
- F(DebugIsActive, 0, 1)
+ F(DebugIsActive, 0, 1) \
+ F(HasFastPackedElements, 1, 1)
Dmitry Lomov (no reviews) 2014/11/27 07:17:54 Is it critical for HasFastPackedElements to be INL
adamk 2014/12/02 19:36:20 Not sure what counts as "critical". Sure, the impl
// ----------------------------------------------------------------------------
« no previous file with comments | « src/runtime.js ('k') | src/runtime/runtime-object.cc » ('j') | no next file with comments »

Powered by Google App Engine