Home
last modified time | relevance | path

Searched refs:GetBounds (Results 1 – 10 of 10) sorted by relevance

/external/v8/src/compiler/
Djs-builtin-reducer.cc57 NodeProperties::GetBounds(GetJSCallInput(0)).upper->Is(t1); in InputsMatchOne()
63 NodeProperties::GetBounds(GetJSCallInput(0)).upper->Is(t1) && in InputsMatchTwo()
64 NodeProperties::GetBounds(GetJSCallInput(1)).upper->Is(t2); in InputsMatchTwo()
70 if (!NodeProperties::GetBounds(GetJSCallInput(i)).upper->Is(t)) { in InputsMatchAll()
Djs-typed-lowering.cc50 left_type_(NodeProperties::GetBounds(node->InputAt(0)).upper), in JSBinopReduction()
51 right_type_(NodeProperties::GetBounds(node->InputAt(1)).upper) {} in JSBinopReduction()
208 Type* input_type = NodeProperties::GetBounds(node).upper; in ConvertToI32()
435 Type* input_type = NodeProperties::GetBounds(input).upper; in ReduceJSToNumberInput()
468 Type* input_type = NodeProperties::GetBounds(input).upper; in ReduceJSToStringInput()
496 Type* input_type = NodeProperties::GetBounds(input).upper; in ReduceJSToBooleanInput()
531 Type* key_type = NodeProperties::GetBounds(key).upper; in ReduceJSLoadProperty()
532 Type* base_type = NodeProperties::GetBounds(base).upper; in ReduceJSLoadProperty()
572 Type* key_type = NodeProperties::GetBounds(key).upper; in ReduceJSStoreProperty()
573 Type* base_type = NodeProperties::GetBounds(base).upper; in ReduceJSStoreProperty()
Dnode-properties.h43 static inline Bounds GetBounds(Node* node);
Dschedule.cc54 Bounds bounds = NodeProperties::GetBounds(node); in operator <<()
Dsimplified-lowering.cc163 return NodeProperties::GetBounds(node->InputAt(0)).upper->Is(type) && in BothInputsAre()
164 NodeProperties::GetBounds(node->InputAt(1)).upper->Is(type); in BothInputsAre()
317 Type* upper = NodeProperties::GetBounds(node).upper; in VisitPhi()
374 Type* upper = NodeProperties::GetBounds(node).upper; in VisitNode()
Dtyper.cc96 return NodeProperties::GetBounds(NodeProperties::GetValueInput(node, i)); in VALUE_OP_LIST()
101 NodeProperties::GetBounds(NodeProperties::GetContextInput(node)); in ContextType()
153 Bounds previous = NodeProperties::GetBounds(node); in Pre()
178 Bounds previous = NodeProperties::GetBounds(node); in Pre()
Dnode-properties-inl.h201 inline Bounds NodeProperties::GetBounds(Node* node) { return node->bounds(); } in GetBounds() function
Dgraph-visualizer.cc188 Bounds bounds = NodeProperties::GetBounds(node); in AnnotateNode()
/external/v8/test/cctest/compiler/
Dtest-js-typed-lowering.cc262 Type* old_type = NodeProperties::GetBounds(old_input).upper; in CheckToI32()
267 CHECK(NodeProperties::GetBounds(new_input).upper->Is(expected_type)); in CheckToI32()
456 if (NodeProperties::GetBounds(n).upper->Is(Type::Number())) { in TEST()
671 if (NodeProperties::GetBounds(val).upper->Is(Type::Number())) { in CheckIsConvertedToNumber()
673 } else if (NodeProperties::GetBounds(val).upper->Is(Type::Boolean())) { in CheckIsConvertedToNumber()
1269 Type* add_type = NodeProperties::GetBounds(add_node).upper; in TEST()
1296 Type* add_type = NodeProperties::GetBounds(add_node).upper; in TEST()
Dtest-js-constant-cache.cc42 Type* upper(Node* node) { return NodeProperties::GetBounds(node).upper; } in upper()