Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(388)

Side by Side Diff: src/sksl/ir/SkSLExpression.h

Issue 2405383003: added basic dataflow analysis to skslc (Closed)
Patch Set: I have no idea what I was thinking Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/sksl/SkSLSPIRVCodeGenerator.cpp ('k') | src/sksl/ir/SkSLIndexExpression.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2016 Google Inc. 2 * Copyright 2016 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SKSL_EXPRESSION 8 #ifndef SKSL_EXPRESSION
9 #define SKSL_EXPRESSION 9 #define SKSL_EXPRESSION
10 10
(...skipping 15 matching lines...) Expand all
26 kFloatLiteral_Kind, 26 kFloatLiteral_Kind,
27 kFunctionReference_Kind, 27 kFunctionReference_Kind,
28 kFunctionCall_Kind, 28 kFunctionCall_Kind,
29 kIndex_Kind, 29 kIndex_Kind,
30 kPrefix_Kind, 30 kPrefix_Kind,
31 kPostfix_Kind, 31 kPostfix_Kind,
32 kSwizzle_Kind, 32 kSwizzle_Kind,
33 kVariableReference_Kind, 33 kVariableReference_Kind,
34 kTernary_Kind, 34 kTernary_Kind,
35 kTypeReference_Kind, 35 kTypeReference_Kind,
36 kDefined_Kind
36 }; 37 };
37 38
38 Expression(Position position, Kind kind, const Type& type) 39 Expression(Position position, Kind kind, const Type& type)
39 : INHERITED(position) 40 : INHERITED(position)
40 , fKind(kind) 41 , fKind(kind)
41 , fType(std::move(type)) {} 42 , fType(std::move(type)) {}
42 43
43 virtual bool isConstant() const { 44 virtual bool isConstant() const {
44 return false; 45 return false;
45 } 46 }
46 47
47 const Kind fKind; 48 const Kind fKind;
48 const Type& fType; 49 const Type& fType;
49 50
50 typedef IRNode INHERITED; 51 typedef IRNode INHERITED;
51 }; 52 };
52 53
53 } // namespace 54 } // namespace
54 55
55 #endif 56 #endif
OLDNEW
« no previous file with comments | « src/sksl/SkSLSPIRVCodeGenerator.cpp ('k') | src/sksl/ir/SkSLIndexExpression.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698