1. cb40008 Implement switch in SkVM. by John Stiles · 2 years, 11 months ago
  2. 448b2d5 Add GetConstantValue, fix const-variable ES2 loop bounds by Brian Osman · 2 years, 11 months ago
  3. 49b1a42 Migrate unreachable-code elimination to Analysis. by John Stiles · 3 years ago
  4. a047e8b Improve overflow checks in CheckProgramUnrolledSize. by John Stiles · 3 years ago
  5. 78b84cc Fix size calculation of blockless for-loops. by John Stiles · 3 years ago
  6. 7591d4b Replace trio of XxxxLiteral types with a single Literal type. by John Stiles · 3 years ago
  7. 106e0cd Increase GetLoopUnrollInfo loop-count limit to 100,000. by John Stiles · 3 years ago
  8. 3272412 Switched DSL error handling from const char* to string_view by Ethan Nicholas · 3 years ago
  9. 36ddccc Remove unnecessary [[maybe_unused]]. by John Stiles · 3 years ago
  10. b6c29c7 Initialize class variables at construction time. by John Stiles · 3 years ago
  11. 3099f79 SkSL: Add support for method calls on effect objects by Brian Osman · 3 years ago
  12. 2af4b13 Reject programs which exceed 50 stack frames during size analysis. by John Stiles · 3 years ago
  13. 98ddea0 Report recursion from within CheckProgramUnrolledSize. by John Stiles · 3 years ago
  14. 6475b10 Restructure CheckProgramUnrolledSize to support cycle detection. by John Stiles · 3 years ago
  15. 61e5e20 Enforce an upper bound on Runtime Effect program size. by John Stiles · 3 years ago
  16. 2ecc595 Migrate program finalization logic out of IRGenerator. by John Stiles · 3 years ago
  17. 98eae1e Moved DetectVarDeclarationWithoutScope out of IRGenerator by Ethan Nicholas · 3 years ago
  18. 0fc6bed Move VerifyStaticTests from Compiler to Analysis. by John Stiles · 3 years ago
  19. c898d04 Made IsAssignableVisitor ignore Poison values by Ethan Nicholas · 3 years ago
  20. 9c975c5 Store loop-unroll information inside ForStatement. by John Stiles · 3 years ago
  21. 7bd3f1c Fix fuzzer-discovered assertion with global variables. by John Stiles · 3 years ago
  22. bb8cf58 Fix invalid variable ref-kind discovered by fuzzer. by John Stiles · 3 years ago
  23. 293497e Convert internal sample() calls to shade/filter/blend by Brian Osman · 3 years ago
  24. eb0f29d SkSL: Allow invoking children (shaders, etc) like functions by Brian Osman · 3 years, 1 month ago
  25. 4a5e22a Further unified error handling between SkSL and DSL by Ethan Nicholas · 3 years ago
  26. 5547866 Removed setErrorCount from SkSL ErrorReporter by Ethan Nicholas · 3 years ago
  27. a40ddcd Pass dsl::PositionInfo by value by Ethan Nicholas · 3 years, 1 month ago
  28. e3ae968 Enable comparison of arrays of different precision types. by John Stiles · 3 years, 1 month ago
  29. 4cb0c37 Fix undefined behavior in recursion detection. by John Stiles · 3 years, 1 month ago
  30. 628777c Fix cases of variable shadowing in SkSL. by John Stiles · 3 years, 1 month ago
  31. b449fff Unify DSL and SkSL error handling paths by Ethan Nicholas · 3 years, 1 month ago
  32. 60dbf07 Allow ProgramUsage add/remove for any kind of element. by John Stiles · 3 years, 1 month ago
  33. 7da0657 Explicitly detect static recursion in SkSL by Brian Osman · 3 years, 1 month ago
  34. c9145f3 Remove enum support from SkSL by Brian Osman · 3 years, 2 months ago
  35. 8c26479 Remove large swaths of code related to .fp files by Brian Osman · 3 years, 2 months ago
  36. 66657d1 Switch to using intrinsicKind to detect "sample" calls by Brian Osman · 3 years, 2 months ago
  37. 04d79fc GrSkSLFP: Avoid making a global copy of inColor most of the time by Brian Osman · 3 years, 2 months ago
  38. 549c6b8 Added Poison values to SkSL to improve DSL error handling by Ethan Nicholas · 3 years, 2 months ago
  39. 8cdf28f Elide sample coords for GrSkSLFP if only used for pass-through sampling by Brian Osman · 3 years, 3 months ago
  40. 83dae92 Remove SkSL sample-with-matrix implementation by Brian Osman · 3 years, 4 months ago
  41. 9121667 Remove DefinedExpression. by John Stiles · 3 years, 4 months ago
  42. 4d57111 Reland "Runtime effects: Detect passthrough sample calls automatically" by Brian Osman · 3 years, 4 months ago
  43. 00f3041 Revert "Runtime effects: Detect passthrough sample calls automatically" by Brian Osman · 3 years, 4 months ago
  44. e49703f Remove custom SkVertices data and runtime effect `varying` support by Brian Osman · 3 years, 4 months ago
  45. 8e2a84b Fix for fuzzer-discovered error in SPIR-V compilation. by John Stiles · 3 years, 4 months ago
  46. cc3d2d2 Runtime effects: Detect passthrough sample calls automatically by Brian Osman · 3 years, 4 months ago
  47. 0962268 Fix SampleUsage analysis for calls that use coords and color by Brian Osman · 3 years, 4 months ago
  48. d47330f Add support for struct constructors to SkSL. by John Stiles · 3 years, 5 months ago
  49. 8cad637 Rename composite constructors to compound constructors. by John Stiles · 3 years, 5 months ago
  50. 8317d0b Remove universal Constructor class. by John Stiles · 3 years, 5 months ago
  51. 268a73f Represent matrix casts with CompositeCast type. by John Stiles · 3 years, 5 months ago
  52. 2bec8ab Represent vector/matrix composition with the ConstructorComposite type. by John Stiles · 3 years, 5 months ago
  53. d986f47 Represent vector construction with ConstructorVector. by John Stiles · 3 years, 5 months ago
  54. 21a50ec Replace getVecComponent with getConstantSubexpression. by John Stiles · 3 years, 5 months ago
  55. 5abb9e1 Represent matrix resizes as a dedicated expression type. by John Stiles · 3 years, 5 months ago
  56. b14a819 Represent vector-cast constructors with ConstructorVectorCast. by John Stiles · 3 years, 5 months ago
  57. fd7252f Represent scalar-cast constructors with ConstructorScalarCast. by John Stiles · 3 years, 5 months ago
  58. 2938eea Represent splat constructors with a dedicated ConstructorSplat class. by John Stiles · 3 years, 5 months ago
  59. 7384b37 Represent array constructors with a dedicated ConstructorArray class. by John Stiles · 3 years, 5 months ago
  60. e118278 Create a diagonal-matrix Constructor class. by John Stiles · 3 years, 5 months ago
  61. d80cef6 Simplify the getConstant code during loop analysis. by John Stiles · 3 years, 5 months ago
  62. 39465b8 Ensure function-parameter variables exist in the variable usage map. by John Stiles · 3 years, 5 months ago
  63. 958f4b5 Run finalizeFunction before creating a FunctionDefinition. by John Stiles · 3 years, 5 months ago
  64. f10eff3 Fix misdetection of dead global variables. by John Stiles · 3 years, 5 months ago
  65. 48b2558 Add unique_ptr visitation support to ProgramWriter. by John Stiles · 3 years, 5 months ago
  66. b23a64b Replace vector<SwitchCase> in Switch with a StatementArray. by John Stiles · 3 years, 6 months ago
  67. 04a8a54 Ensure all local variables exist in the ProgramUsage map. by John Stiles · 3 years, 6 months ago
  68. c3ce43b Replace the vector<Statement> in SwitchCase with a Block. by John Stiles · 3 years, 6 months ago
  69. 24c1772 Fixed an issue with DSL includes by Ethan Nicholas · 3 years, 6 months ago
  70. 5676c57 Optimize away self-comparison in the constant folder. by John Stiles · 3 years, 6 months ago
  71. 532138c Restore 'medPrecision' label in ellipse effect FP. by John Stiles · 3 years, 6 months ago
  72. b3dcbb1 Detect functions that fail to return a value, without using CFG. by John Stiles · 3 years, 6 months ago
  73. daed259 Made SkSL DSL into public API by Ethan Nicholas · 3 years, 6 months ago
  74. a0e56e3 Allow ProgramVisitor::visitStatement to receive SwitchCase statements. by John Stiles · 3 years, 6 months ago
  75. 786d42c Improve comments for Analysis::IsSelfAssignment. by John Stiles · 3 years, 6 months ago
  76. 232b4ce Allow ForLoopIsValidForES2 to run before creating a ForStatement. by John Stiles · 3 years, 6 months ago
  77. 95d0bad Support self-assignment elimination in the constant-folder. by John Stiles · 3 years, 6 months ago
  78. 516704b Migrate IRGenerator::setRefKind to Analysis::MakeAssignmentExpr. by John Stiles · 3 years, 6 months ago
  79. 7b36149 Align SkSL const rules more closely with GLSL by Brian Osman · 3 years, 6 months ago
  80. 642cde2 Optimize @switch statements in SwitchStatement::Make. by John Stiles · 3 years, 6 months ago
  81. 6e88e04 Migrate convertSwizzle to Swizzle::Make. by John Stiles · 3 years, 6 months ago
  82. 9cb3f98 Remove PLS support from SkSL by Brian Osman · 3 years, 6 months ago
  83. 4599050 Convert Operators namespace to first-class Operator object. by John Stiles · 3 years, 6 months ago
  84. 47c0a74 Replace clear_write/clone_with_ref_kind with Analysis::UpdateRefKind. by John Stiles · 3 years, 6 months ago
  85. 0018501 Create SkSLOperators, centralize functionality by Brian Osman · 3 years, 7 months ago
  86. 8d3642e Add checkpointing functionality to the Parser. by John Stiles · 3 years, 7 months ago
  87. ea485e5 Enforce ES2 limits on indexing expressions (in runtime effects) by Brian Osman · 3 years, 7 months ago
  88. 6c7910e Use isNumber() rather than isFloat() || isInteger() by Brian Osman · 3 years, 7 months ago
  89. 77ba810 In runtime effects, verify that loops conform to ES2 rules by Brian Osman · 3 years, 7 months ago
  90. 67a0a8a Fixed error reporting on invalid SkSL assignments by Ethan Nicholas · 3 years, 7 months ago
  91. 54e7c05 Separate out built-in SkSL types into their own struct. by John Stiles · 3 years, 7 months ago
  92. be0b3b7 Strip down SkSL::ExternalValues, limit them to functions by Brian Osman · 3 years, 8 months ago
  93. 33c64a4 SkSL: Remove "null" as a type and literal value. by Brian Osman · 3 years, 8 months ago
  94. d6f2338 SkSL IR normalization: Convert while loops to for loops by Brian Osman · 3 years, 8 months ago
  95. b21fac2 Detect cases in Metal where out params are swizzled. by John Stiles · 3 years, 9 months ago
  96. d39aec0 Simplify InterfaceBlock by removing multi-dimensional array support. by John Stiles · 3 years, 9 months ago
  97. 62a5646 Simplify VarDeclaration by removing multi-dimensional array support. by John Stiles · 3 years, 9 months ago
  98. dc75a97 Add global struct definitions to SkSL. by John Stiles · 3 years, 9 months ago
  99. 9b9415e Avoid inlining functions that are called repeatedly. by John Stiles · 3 years, 9 months ago
  100. c30fbca Allow swizzle optimizations to apply to any 'trivial' ctor fields. by John Stiles · 3 years, 9 months ago