Chromium Code Reviews| Index: src/sksl/ir/SkSLVariable.h |
| diff --git a/src/sksl/ir/SkSLVariable.h b/src/sksl/ir/SkSLVariable.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d4ea2c4a43e78ce8c2ba829dace13b8accd3f1c4 |
| --- /dev/null |
| +++ b/src/sksl/ir/SkSLVariable.h |
| @@ -0,0 +1,66 @@ |
| +/* |
| + * Copyright 2016 Google Inc. |
| + * |
| + * Use of this source code is governed by a BSD-style license that can be |
| + * found in the LICENSE file. |
| + */ |
| + |
| +#ifndef SKSL_VARIABLE |
| +#define SKSL_VARIABLE |
| + |
| +#include "SkSLModifiers.h" |
| +#include "SkSLPosition.h" |
| +#include "SkSLSymbol.h" |
| +#include "SkSLType.h" |
| + |
| +namespace SkSL { |
| + |
| +/** |
| + * Represents a variable, whether local, global, or a function parameter. This represents the |
| + * variable itself (the storage location), which is shared between all VariableReferences which |
| + * read or write that storage location. |
| + */ |
| +struct Variable : public Symbol { |
| + enum Storage { |
| + kGlobal_Storage, |
| + kLocal_Storage, |
| + kParameter_Storage |
| + }; |
| + |
| + Variable(Position position, Modifiers modifiers, std::string name, std::shared_ptr<Type> type, |
| + Storage storage) |
| + : INHERITED(position, kVariable_Kind, std::move(name)) |
| + , fModifiers(modifiers) |
| + , fType(type) |
| + , fStorage(storage) |
| + , fIsReadFrom(false) |
| + , fIsWrittenTo(false) {} |
| + |
| + virtual std::string description() const override { |
| + return fModifiers.description() + fType->fName + " " + fName; |
| + } |
| + |
| + const Modifiers fModifiers; |
| + const std::string fValue; |
| + const std::shared_ptr<Type> fType; |
| + const Storage fStorage; |
| + |
| + mutable bool fIsReadFrom; |
|
dogben
2016/06/21 21:58:00
nit: Seems like fIsReadFrom and fIsWrittenTo don't
|
| + mutable bool fIsWrittenTo; |
| + |
| + typedef Symbol INHERITED; |
| +}; |
| + |
| +} // namespace SkSL |
| + |
| +namespace std { |
| + template <> |
| + struct hash<SkSL::Variable> { |
| + public : |
| + size_t operator()(const SkSL::Variable &var) const{ |
| + return hash<std::string>()(var.fName) ^ hash<std::string>()(var.fType->description()); |
| + } |
| + }; |
| +} // namespace std |
| + |
| +#endif |