Home
last modified time | relevance | path

Searched refs:ValueRepresentation (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/maglev/
Dmaglev-graph-verifier.h15 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 …]
Dmaglev-compilation-unit.h16 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_;
Dmaglev-code-gen-state.h153 for (ValueRepresentation repr : compilation_unit()->stack_value_repr()) { in DefineSafepointStackSlots()
154 if (repr == ValueRepresentation::kTagged) { in DefineSafepointStackSlots()
Dmaglev-ir.h168 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()