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

Unified Diff: test/unittests/compiler/js-builtin-reducer-unittest.cc

Issue 2666783007: [turbo] Rename CallFunction* JSOperators to Call*. (Closed)
Patch Set: Created 3 years, 11 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/compiler/verifier.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/unittests/compiler/js-builtin-reducer-unittest.cc
diff --git a/test/unittests/compiler/js-builtin-reducer-unittest.cc b/test/unittests/compiler/js-builtin-reducer-unittest.cc
index e3857ef526cc249208b58fe503f2ee258f92138b..a4332042cbc536eb040c8e94ba77a0b2d90c78c4 100644
--- a/test/unittests/compiler/js-builtin-reducer-unittest.cc
+++ b/test/unittests/compiler/js-builtin-reducer-unittest.cc
@@ -123,9 +123,9 @@ TEST_F(JSBuiltinReducerTest, GlobalIsFiniteWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -142,9 +142,9 @@ TEST_F(JSBuiltinReducerTest, GlobalIsFiniteWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -167,9 +167,9 @@ TEST_F(JSBuiltinReducerTest, GlobalIsNaNWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -185,9 +185,9 @@ TEST_F(JSBuiltinReducerTest, GlobalIsNaNWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -208,9 +208,9 @@ TEST_F(JSBuiltinReducerTest, MathAbsWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -226,9 +226,9 @@ TEST_F(JSBuiltinReducerTest, MathAbsWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -247,9 +247,9 @@ TEST_F(JSBuiltinReducerTest, MathAcosWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -265,9 +265,9 @@ TEST_F(JSBuiltinReducerTest, MathAcosWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -286,9 +286,9 @@ TEST_F(JSBuiltinReducerTest, MathAcoshWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -304,9 +304,9 @@ TEST_F(JSBuiltinReducerTest, MathAcoshWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -325,9 +325,9 @@ TEST_F(JSBuiltinReducerTest, MathAsinWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -343,9 +343,9 @@ TEST_F(JSBuiltinReducerTest, MathAsinWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -364,9 +364,9 @@ TEST_F(JSBuiltinReducerTest, MathAsinhWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -382,9 +382,9 @@ TEST_F(JSBuiltinReducerTest, MathAsinhWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -403,9 +403,9 @@ TEST_F(JSBuiltinReducerTest, MathAtanWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -421,9 +421,9 @@ TEST_F(JSBuiltinReducerTest, MathAtanWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -442,9 +442,9 @@ TEST_F(JSBuiltinReducerTest, MathAtanhWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -460,9 +460,9 @@ TEST_F(JSBuiltinReducerTest, MathAtanhWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -483,9 +483,9 @@ TEST_F(JSBuiltinReducerTest, MathAtan2WithNumber) {
Node* p0 = Parameter(t0, 0);
TRACED_FOREACH(Type*, t1, kNumberTypes) {
Node* p1 = Parameter(t1, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(4), function,
- UndefinedConstant(), p0, p1, context,
- frame_state, effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(4), function, UndefinedConstant(),
+ p0, p1, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -503,9 +503,9 @@ TEST_F(JSBuiltinReducerTest, MathAtan2WithPlainPrimitive) {
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
Node* p1 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(4), function,
- UndefinedConstant(), p0, p1, context,
- frame_state, effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(4), function, UndefinedConstant(), p0,
+ p1, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -525,9 +525,9 @@ TEST_F(JSBuiltinReducerTest, MathCeilWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -543,9 +543,9 @@ TEST_F(JSBuiltinReducerTest, MathCeilWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -563,9 +563,9 @@ TEST_F(JSBuiltinReducerTest, MathClz32WithUnsigned32) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::Unsigned32(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -580,9 +580,9 @@ TEST_F(JSBuiltinReducerTest, MathClz32WithNumber) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::Number(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -597,9 +597,9 @@ TEST_F(JSBuiltinReducerTest, MathClz32WithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -619,9 +619,9 @@ TEST_F(JSBuiltinReducerTest, MathCosWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -637,9 +637,9 @@ TEST_F(JSBuiltinReducerTest, MathCosWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -658,9 +658,9 @@ TEST_F(JSBuiltinReducerTest, MathCoshWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -676,9 +676,9 @@ TEST_F(JSBuiltinReducerTest, MathCoshWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -697,9 +697,9 @@ TEST_F(JSBuiltinReducerTest, MathExpWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -715,9 +715,9 @@ TEST_F(JSBuiltinReducerTest, MathExpWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -736,9 +736,9 @@ TEST_F(JSBuiltinReducerTest, MathFloorWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -754,9 +754,9 @@ TEST_F(JSBuiltinReducerTest, MathFloorWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -775,9 +775,9 @@ TEST_F(JSBuiltinReducerTest, MathFroundWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -793,9 +793,9 @@ TEST_F(JSBuiltinReducerTest, MathFroundWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -814,9 +814,9 @@ TEST_F(JSBuiltinReducerTest, MathImulWithUnsigned32) {
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::Unsigned32(), 0);
Node* p1 = Parameter(Type::Unsigned32(), 1);
- Node* call = graph()->NewNode(javascript()->CallFunction(4), function,
- UndefinedConstant(), p0, p1, context,
- frame_state, effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(4), function, UndefinedConstant(), p0,
+ p1, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -832,9 +832,9 @@ TEST_F(JSBuiltinReducerTest, MathImulWithNumber) {
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::Number(), 0);
Node* p1 = Parameter(Type::Number(), 1);
- Node* call = graph()->NewNode(javascript()->CallFunction(4), function,
- UndefinedConstant(), p0, p1, context,
- frame_state, effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(4), function, UndefinedConstant(), p0,
+ p1, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -851,9 +851,9 @@ TEST_F(JSBuiltinReducerTest, MathImulWithPlainPrimitive) {
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
Node* p1 = Parameter(Type::PlainPrimitive(), 1);
- Node* call = graph()->NewNode(javascript()->CallFunction(4), function,
- UndefinedConstant(), p0, p1, context,
- frame_state, effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(4), function, UndefinedConstant(), p0,
+ p1, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -874,9 +874,9 @@ TEST_F(JSBuiltinReducerTest, MathLogWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -892,9 +892,9 @@ TEST_F(JSBuiltinReducerTest, MathLogWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -913,9 +913,9 @@ TEST_F(JSBuiltinReducerTest, MathLog1pWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -931,9 +931,9 @@ TEST_F(JSBuiltinReducerTest, MathLog1pWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -950,9 +950,9 @@ TEST_F(JSBuiltinReducerTest, MathMaxWithNoArguments) {
Node* control = graph()->start();
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
- Node* call = graph()->NewNode(javascript()->CallFunction(2), function,
- UndefinedConstant(), context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(2), function, UndefinedConstant(),
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -968,9 +968,9 @@ TEST_F(JSBuiltinReducerTest, MathMaxWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -987,9 +987,9 @@ TEST_F(JSBuiltinReducerTest, MathMaxWithPlainPrimitive) {
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
Node* p1 = Parameter(Type::PlainPrimitive(), 1);
- Node* call = graph()->NewNode(javascript()->CallFunction(4), function,
- UndefinedConstant(), p0, p1, context,
- frame_state, effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(4), function, UndefinedConstant(), p0,
+ p1, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1007,9 +1007,9 @@ TEST_F(JSBuiltinReducerTest, MathMinWithNoArguments) {
Node* control = graph()->start();
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
- Node* call = graph()->NewNode(javascript()->CallFunction(2), function,
- UndefinedConstant(), context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(2), function, UndefinedConstant(),
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1025,9 +1025,9 @@ TEST_F(JSBuiltinReducerTest, MathMinWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1044,9 +1044,9 @@ TEST_F(JSBuiltinReducerTest, MathMinWithPlainPrimitive) {
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
Node* p1 = Parameter(Type::PlainPrimitive(), 1);
- Node* call = graph()->NewNode(javascript()->CallFunction(4), function,
- UndefinedConstant(), p0, p1, context,
- frame_state, effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(4), function, UndefinedConstant(), p0,
+ p1, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1066,9 +1066,9 @@ TEST_F(JSBuiltinReducerTest, MathRoundWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1084,9 +1084,9 @@ TEST_F(JSBuiltinReducerTest, MathRoundWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1107,9 +1107,9 @@ TEST_F(JSBuiltinReducerTest, MathPowWithNumber) {
Node* p0 = Parameter(t0, 0);
TRACED_FOREACH(Type*, t1, kNumberTypes) {
Node* p1 = Parameter(t1, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(4), function,
- UndefinedConstant(), p0, p1, context,
- frame_state, effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(4), function, UndefinedConstant(),
+ p0, p1, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1127,9 +1127,9 @@ TEST_F(JSBuiltinReducerTest, MathPowWithPlainPrimitive) {
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
Node* p1 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(4), function,
- UndefinedConstant(), p0, p1, context,
- frame_state, effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(4), function, UndefinedConstant(), p0,
+ p1, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1149,9 +1149,9 @@ TEST_F(JSBuiltinReducerTest, MathSignWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1167,9 +1167,9 @@ TEST_F(JSBuiltinReducerTest, MathSignWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1188,9 +1188,9 @@ TEST_F(JSBuiltinReducerTest, MathSinWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1206,9 +1206,9 @@ TEST_F(JSBuiltinReducerTest, MathSinWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1227,9 +1227,9 @@ TEST_F(JSBuiltinReducerTest, MathSinhWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1245,9 +1245,9 @@ TEST_F(JSBuiltinReducerTest, MathSinhWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1266,9 +1266,9 @@ TEST_F(JSBuiltinReducerTest, MathSqrtWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1284,9 +1284,9 @@ TEST_F(JSBuiltinReducerTest, MathSqrtWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1305,9 +1305,9 @@ TEST_F(JSBuiltinReducerTest, MathTanWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1323,9 +1323,9 @@ TEST_F(JSBuiltinReducerTest, MathTanWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1344,9 +1344,9 @@ TEST_F(JSBuiltinReducerTest, MathTanhWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1362,9 +1362,9 @@ TEST_F(JSBuiltinReducerTest, MathTanhWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1383,9 +1383,9 @@ TEST_F(JSBuiltinReducerTest, MathTruncWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1401,9 +1401,9 @@ TEST_F(JSBuiltinReducerTest, MathTruncWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1422,9 +1422,9 @@ TEST_F(JSBuiltinReducerTest, NumberIsFiniteWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1445,9 +1445,9 @@ TEST_F(JSBuiltinReducerTest, NumberIsIntegerWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1469,9 +1469,9 @@ TEST_F(JSBuiltinReducerTest, NumberIsNaNWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1491,9 +1491,9 @@ TEST_F(JSBuiltinReducerTest, NumberIsSafeIntegerWithIntegral32) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kIntegral32Types) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1513,9 +1513,9 @@ TEST_F(JSBuiltinReducerTest, NumberParseIntWithIntegral32) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kIntegral32Types) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1533,9 +1533,9 @@ TEST_F(JSBuiltinReducerTest, NumberParseIntWithIntegral32AndUndefined) {
TRACED_FOREACH(Type*, t0, kIntegral32Types) {
Node* p0 = Parameter(t0, 0);
Node* p1 = Parameter(Type::Undefined(), 1);
- Node* call = graph()->NewNode(javascript()->CallFunction(4), function,
- UndefinedConstant(), p0, p1, context,
- frame_state, effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(4), function, UndefinedConstant(),
+ p0, p1, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1555,9 +1555,9 @@ TEST_F(JSBuiltinReducerTest, StringFromCharCodeWithNumber) {
Node* frame_state = graph()->start();
TRACED_FOREACH(Type*, t0, kNumberTypes) {
Node* p0 = Parameter(t0, 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(),
+ p0, context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
@@ -1573,9 +1573,9 @@ TEST_F(JSBuiltinReducerTest, StringFromCharCodeWithPlainPrimitive) {
Node* context = UndefinedConstant();
Node* frame_state = graph()->start();
Node* p0 = Parameter(Type::PlainPrimitive(), 0);
- Node* call = graph()->NewNode(javascript()->CallFunction(3), function,
- UndefinedConstant(), p0, context, frame_state,
- effect, control);
+ Node* call =
+ graph()->NewNode(javascript()->Call(3), function, UndefinedConstant(), p0,
+ context, frame_state, effect, control);
Reduction r = Reduce(call);
ASSERT_TRUE(r.Changed());
« no previous file with comments | « src/compiler/verifier.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698