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

Side by Side Diff: test/unittests/compiler/node-properties-unittest.cc

Issue 928213003: Model exceptional edges from call nodes in TurboFan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased. Created 5 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/compiler/common-operator.h" 5 #include "src/compiler/common-operator.h"
6 #include "src/compiler/node-properties.h" 6 #include "src/compiler/node-properties.h"
7 #include "test/unittests/test-utils.h" 7 #include "test/unittests/test-utils.h"
8 #include "testing/gmock/include/gmock/gmock.h" 8 #include "testing/gmock/include/gmock/gmock.h"
9 9
10 using testing::ElementsAre;
10 using testing::IsNull; 11 using testing::IsNull;
11 12
12 namespace v8 { 13 namespace v8 {
13 namespace internal { 14 namespace internal {
14 namespace compiler { 15 namespace compiler {
15 16
16 typedef TestWithZone NodePropertiesTest; 17 typedef TestWithZone NodePropertiesTest;
17 18
18 19
20 namespace {
21
22 const Operator kMockOperator(IrOpcode::kDead, Operator::kNoProperties,
23 "MockOperator", 0, 0, 0, 1, 0, 0);
24 const Operator kMockOpEffect(IrOpcode::kDead, Operator::kNoProperties,
25 "MockOpEffect", 0, 1, 0, 1, 1, 0);
26 const Operator kMockOpControl(IrOpcode::kDead, Operator::kNoProperties,
27 "MockOpControl", 0, 0, 1, 1, 0, 1);
28
29 } // namespace
30
31
32 TEST_F(NodePropertiesTest, ReplaceWithValue_ValueUse) {
33 CommonOperatorBuilder common(zone());
34 Node* node = Node::New(zone(), 0, &kMockOperator, 0, nullptr, false);
35 Node* use_value = Node::New(zone(), 0, common.Return(), 1, &node, false);
36 Node* replacement = Node::New(zone(), 0, &kMockOperator, 0, nullptr, false);
37 NodeProperties::ReplaceWithValue(node, replacement);
38 EXPECT_EQ(replacement, use_value->InputAt(0));
39 EXPECT_EQ(0, node->UseCount());
40 EXPECT_EQ(1, replacement->UseCount());
41 EXPECT_THAT(replacement->uses(), ElementsAre(use_value));
42 }
43
44
45 TEST_F(NodePropertiesTest, ReplaceWithValue_EffectUse) {
46 CommonOperatorBuilder common(zone());
47 Node* start = Node::New(zone(), 0, common.Start(1), 0, nullptr, false);
48 Node* node = Node::New(zone(), 0, &kMockOpEffect, 1, &start, false);
49 Node* use_effect = Node::New(zone(), 0, common.EffectPhi(1), 1, &node, false);
50 Node* replacement = Node::New(zone(), 0, &kMockOperator, 0, nullptr, false);
51 NodeProperties::ReplaceWithValue(node, replacement);
52 EXPECT_EQ(start, use_effect->InputAt(0));
53 EXPECT_EQ(0, node->UseCount());
54 EXPECT_EQ(2, start->UseCount());
55 EXPECT_EQ(0, replacement->UseCount());
56 EXPECT_THAT(start->uses(), ElementsAre(node, use_effect));
57 }
58
59
60 TEST_F(NodePropertiesTest, ReplaceWithValue_ControlUse) {
61 CommonOperatorBuilder common(zone());
62 Node* start = Node::New(zone(), 0, common.Start(1), 0, nullptr, false);
63 Node* node = Node::New(zone(), 0, &kMockOpControl, 1, &start, false);
64 Node* success = Node::New(zone(), 0, common.IfSuccess(), 1, &node, false);
65 Node* use_control = Node::New(zone(), 0, common.Merge(1), 1, &success, false);
66 Node* replacement = Node::New(zone(), 0, &kMockOperator, 0, nullptr, false);
67 NodeProperties::ReplaceWithValue(node, replacement);
68 EXPECT_EQ(start, use_control->InputAt(0));
69 EXPECT_EQ(0, node->UseCount());
70 EXPECT_EQ(2, start->UseCount());
71 EXPECT_EQ(0, replacement->UseCount());
72 EXPECT_THAT(start->uses(), ElementsAre(node, use_control));
73 }
74
75
19 TEST_F(NodePropertiesTest, FindProjection) { 76 TEST_F(NodePropertiesTest, FindProjection) {
20 CommonOperatorBuilder common(zone()); 77 CommonOperatorBuilder common(zone());
21 Node* start = Node::New(zone(), 0, common.Start(1), 0, nullptr, false); 78 Node* start = Node::New(zone(), 0, common.Start(1), 0, nullptr, false);
22 Node* proj0 = Node::New(zone(), 1, common.Projection(0), 1, &start, false); 79 Node* proj0 = Node::New(zone(), 1, common.Projection(0), 1, &start, false);
23 Node* proj1 = Node::New(zone(), 2, common.Projection(1), 1, &start, false); 80 Node* proj1 = Node::New(zone(), 2, common.Projection(1), 1, &start, false);
24 EXPECT_EQ(proj0, NodeProperties::FindProjection(start, 0)); 81 EXPECT_EQ(proj0, NodeProperties::FindProjection(start, 0));
25 EXPECT_EQ(proj1, NodeProperties::FindProjection(start, 1)); 82 EXPECT_EQ(proj1, NodeProperties::FindProjection(start, 1));
26 EXPECT_THAT(NodeProperties::FindProjection(start, 2), IsNull()); 83 EXPECT_THAT(NodeProperties::FindProjection(start, 2), IsNull());
27 EXPECT_THAT(NodeProperties::FindProjection(start, 1234567890), IsNull()); 84 EXPECT_THAT(NodeProperties::FindProjection(start, 1234567890), IsNull());
28 } 85 }
29 86
30 } // namespace compiler 87 } // namespace compiler
31 } // namespace internal 88 } // namespace internal
32 } // namespace v8 89 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698