Searched refs:ValueRepresentation (Results 1 – 4 of 4) sorted by relevance
/third_party/node/deps/v8/src/maglev/ |
D | maglev-graph-verifier.h | 15 std::ostream& operator<<(std::ostream& os, const ValueRepresentation& repr) { 17 case ValueRepresentation::kTagged: 20 case ValueRepresentation::kUntagged: 42 void CheckValueInputIs(NodeBase* node, int i, ValueRepresentation repr) { in CheckValueInputIs() 85 CheckValueInputIs(node, 0, ValueRepresentation::kTagged); in Process() 89 CheckValueInputIs(node, 0, ValueRepresentation::kUntagged); in Process() 117 CheckValueInputIs(node, 0, ValueRepresentation::kTagged); in Process() 118 CheckValueInputIs(node, 1, ValueRepresentation::kTagged); in Process() 122 CheckValueInputIs(node, 0, ValueRepresentation::kUntagged); in Process() 123 CheckValueInputIs(node, 1, ValueRepresentation::kUntagged); in Process() [all …]
|
D | maglev-compilation-unit.h | 16 enum class ValueRepresentation; variable 52 const ZoneVector<ValueRepresentation>& stack_value_repr() const { in stack_value_repr() 56 void push_stack_value_repr(ValueRepresentation r) { in push_stack_value_repr() 71 ZoneVector<ValueRepresentation> stack_value_repr_;
|
D | maglev-code-gen-state.h | 153 for (ValueRepresentation repr : compilation_unit()->stack_value_repr()) { in DefineSafepointStackSlots() 154 if (repr == ValueRepresentation::kTagged) { in DefineSafepointStackSlots()
|
D | maglev-ir.h | 168 enum class ValueRepresentation { enum 778 ValueRepresentation value_representation() const { in value_representation() 779 return is_untagged_value() ? ValueRepresentation::kUntagged in value_representation() 780 : ValueRepresentation::kTagged; in value_representation()
|