Home | History | Annotate | Download | only in compiler

Lines Matching refs:Node

7 #include "src/compiler/node-properties.h"
10 #include "test/unittests/compiler/node-test-utils.h"
25 Node* GraphTest::Parameter(int32_t index) {
30 Node* GraphTest::Float32Constant(volatile float value) {
35 Node* GraphTest::Float64Constant(volatile double value) {
40 Node* GraphTest::Int32Constant(int32_t value) {
45 Node* GraphTest::Int64Constant(int64_t value) {
50 Node* GraphTest::NumberConstant(volatile double value) {
55 Node* GraphTest::HeapConstant(const Handle<HeapObject>& value) {
56 Node* node = graph()->NewNode(common()->HeapConstant(value));
58 NodeProperties::SetType(node, type);
59 return node;
63 Node* GraphTest::FalseConstant() {
68 Node* GraphTest::TrueConstant() {
73 Node* GraphTest::UndefinedConstant() {
78 Node* GraphTest::EmptyFrameState() {
79 Node* state_values = graph()->NewNode(common()->StateValues(0));
88 Matcher<Node*> GraphTest::IsFalseConstant() {
93 Matcher<Node*> GraphTest::IsTrueConstant() {
98 Matcher<Node*> GraphTest::IsUndefinedConstant() {
110 Node* TypedGraphTest::Parameter(Type* type, int32_t index) {
111 Node* node = GraphTest::Parameter(index);
112 NodeProperties::SetType(node, type);
113 return node;
126 Node* n0 = graph()->NewNode(&kDummyOperator);
127 Node* n1 = graph()->NewNode(&kDummyOperator);