Home
last modified time | relevance | path

Searched refs:DeadValue (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/compiler/
Ddead-code-elimination.cc222 return Replace(DeadValue(node, rep)); in ReducePhi()
229 NodeProperties::ReplaceValueInput(node, DeadValue(input, rep), i); in ReducePhi()
239 return Replace(DeadValue(input)); in ReducePureNode()
268 return Replace(DeadValue(input)); in ReduceEffectNode()
277 ReplaceWithValue(node, DeadValue(input), node, control); in ReduceEffectNode()
343 Node* DeadCodeElimination::DeadValue(Node* node, MachineRepresentation rep) { in DeadValue() function in v8::internal::compiler::DeadCodeElimination
348 Node* dead_value = graph()->NewNode(common()->DeadValue(rep), node); in DeadValue()
Drepresentation-change.cc220 jsgraph()->common()->DeadValue(MachineRepresentation::kTaggedSigned), in GetTaggedSignedRepresentationFor()
342 jsgraph()->common()->DeadValue(MachineRepresentation::kTaggedPointer), in GetTaggedPointerRepresentationFor()
421 jsgraph()->common()->DeadValue(MachineRepresentation::kTagged), node); in GetTaggedRepresentationFor()
499 jsgraph()->common()->DeadValue(MachineRepresentation::kFloat32), node); in GetFloat32RepresentationFor()
560 jsgraph()->common()->DeadValue(MachineRepresentation::kFloat64), node); in GetFloat64RepresentationFor()
649 jsgraph()->common()->DeadValue(MachineRepresentation::kWord32), node); in GetWord32RepresentationFor()
660 jsgraph()->common()->DeadValue(MachineRepresentation::kWord32), node); in GetWord32RepresentationFor()
799 jsgraph()->common()->DeadValue(MachineRepresentation::kBit), node); in GetBitRepresentationFor()
845 jsgraph()->common()->DeadValue(MachineRepresentation::kWord32), node); in GetWord64RepresentationFor()
Ddead-code-elimination.h67 Node* DeadValue(Node* none_node, in NON_EXPORTED_BASE()
Dcommon-operator.h444 const Operator* DeadValue(MachineRepresentation rep); in NON_EXPORTED_BASE()
Dopcodes.h83 V(DeadValue) \
Dcommon-operator.cc1527 const Operator* CommonOperatorBuilder::DeadValue(MachineRepresentation rep) { in DeadValue() function in v8::internal::compiler::CommonOperatorBuilder