Home | History | Annotate | Download | only in compiler

Lines Matching refs:NewNode

42     return kPointerSize == 8 ? NewNode(common()->Int64Constant(intptr_value))
46 return NewNode(common()->Int32Constant(value));
50 return NewNode(common()->HeapConstant(val));
53 Node* BooleanNot(Node* a) { return NewNode(simplified()->BooleanNot(), a); }
56 return NewNode(simplified()->NumberEqual(), a, b);
59 return NewNode(simplified()->NumberLessThan(), a, b);
62 return NewNode(simplified()->NumberLessThanOrEqual(), a, b);
65 return NewNode(simplified()->NumberAdd(), a, b);
68 return NewNode(simplified()->NumberSubtract(), a, b);
71 return NewNode(simplified()->NumberMultiply(), a, b);
74 return NewNode(simplified()->NumberDivide(), a, b);
77 return NewNode(simplified()->NumberModulus(), a, b);
80 return NewNode(simplified()->NumberToInt32(), a);
83 return NewNode(simplified()->NumberToUint32(), a);
87 return NewNode(simplified()->StringEqual(), a, b);
90 return NewNode(simplified()->StringLessThan(), a, b);
93 return NewNode(simplified()->StringLessThanOrEqual(), a, b);
96 return NewNode(simplified()->StringAdd(), a, b);
100 return NewNode(simplified()->ChangeTaggedToInt32(), a);
103 return NewNode(simplified()->ChangeTaggedToUint32(), a);
106 return NewNode(simplified()->ChangeTaggedToFloat64(), a);
109 return NewNode(simplified()->ChangeInt32ToTagged(), a);
112 return NewNode(simplified()->ChangeUint32ToTagged(), a);
115 return NewNode(simplified()->ChangeFloat64ToTagged(), a);
118 return NewNode(simplified()->ChangeBoolToBit(), a);
121 return NewNode(simplified()->ChangeBitToBool(), a);
125 return NewNode(simplified()->LoadField(access), object);
128 return NewNode(simplified()->StoreField(access), object, value);
132 return NewNode(simplified()->LoadElement(access), object, index, length);
136 return NewNode(simplified()->StoreElement(access), object, index, length,