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

Unified Diff: src/compiler/node-matchers.cc

Issue 807693003: [turbofan] Unify custom node matchers. Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix Win64 Created 6 years 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/compiler/node-matchers.h ('k') | src/compiler/pipeline.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/node-matchers.cc
diff --git a/src/compiler/node-matchers.cc b/src/compiler/node-matchers.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c90f19fde895c97a88707b8dda5d8602f755f3b6
--- /dev/null
+++ b/src/compiler/node-matchers.cc
@@ -0,0 +1,45 @@
+// Copyright 2014 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "src/compiler/node-matchers.h"
+
+#include "src/compiler/js-operator.h"
+#include "src/compiler/node-properties-inl.h"
+
+namespace v8 {
+namespace internal {
+namespace compiler {
+
+Node* JSCallFunctionMatcher::frame_state() const {
+ DCHECK(OperatorProperties::HasFrameStateInput(op()));
+ return NodeProperties::GetFrameStateInput(node());
+}
+
+
+JSCallFunctionMatcher::const_iterator JSCallFunctionMatcher::begin() const {
+ // Skip the function input.
+ return node()->inputs().begin() + 1;
+}
+
+
+JSCallFunctionMatcher::const_iterator JSCallFunctionMatcher::end() const {
+ return begin() + size();
+}
+
+
+size_t JSCallFunctionMatcher::size() const {
+ // The value input count includes function and receiver.
+ size_t const value_input_count = op()->ValueInputCount();
+ DCHECK_LE(2, value_input_count);
+ return value_input_count - 1;
+}
+
+
+const Runtime::Function* JSCallRuntimeMatcher::function() const {
+ return Runtime::FunctionForId(CallRuntimeParametersOf(node()->op()).id());
+}
+
+} // namespace compiler
+} // namespace internal
+} // namespace v8
« no previous file with comments | « src/compiler/node-matchers.h ('k') | src/compiler/pipeline.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698