summaryrefslogtreecommitdiff
path: root/source/slang/slang-syntax.cpp
AgeCommit message (Expand)Author
2025-01-24improve error message on generic value decls (#6169)Darren Wihandi
2024-12-31Fix `getInheritanceInfo` for `ExtractExistentialType`. (#5971)Yong He
2024-12-30Fix requirement candidate lookup to prefer decls in the same paraent as the i...Yong He
2024-12-20Check subscript/property accessor for differentiability. (#5922)Yong He
2024-11-21Add datalayout for constant buffers. (#5608)Yong He
2024-11-05Move switch statement bodies to their own lines (#5493)Ellie Hermaszewska
2024-10-29formatEllie Hermaszewska
2024-10-29preparation for clang format (#5422)Ellie Hermaszewska
2024-09-26Move texture format inference to frontend and add reflection api for it. (#5155)Yong He
2024-09-05Support `where` clause and type equality constraint. (#4986)Yong He
2024-08-18Variadic Generics Part 2: IR lowering and specialization. (#4849)Yong He
2024-08-16Avoiding the use of the global AST builder in DeclRefType::create (#4866)venkataram-nv
2024-07-25Overhaul IR lowering of pointer types. (#4710)Yong He
2024-05-15Add diagnostic to prevent defining unsized variables. (#4168)Yong He
2024-02-06Improve Capability System (#3555)Yong He
2023-12-11Diagnose for invalid decl nesting + namespace lookup fixes. (#3397)Yong He
2023-12-06Change default visibility of interface members and update docs. (#3381)Yong He
2023-12-06Support visibility control and default to `internal`. (#3380)Yong He
2023-11-16Unify stdlib `Texture` types into one generic type. (#3327)Yong He
2023-11-10 Cleanup builtin arithmetic interfaces. (#3317)Yong He
2023-10-25Support generic interfaces. (#3278)Yong He
2023-09-28Support `constref` parameters passing. (#3249)Yong He
2023-08-15squash warnings (#3113)Ellie Hermaszewska
2023-08-09Clean up and improve Val deduplication performance. (#3069)Yong He
2023-08-07Fix `Val` deduplication bug. (#3050)Yong He
2023-08-04Redesign `DeclRef` and systematic `Val` deduplication (#3049)Yong He
2023-07-21Add sampleCount parameter for read-only textures. (#3011)Yong He
2023-07-19Add `sampleCount` parameter for MS textures. (#3001)Yong He
2023-07-18Simplify Lookup and improve compiler performance. (#2996)Yong He
2023-07-12Create and cache flattened inheritance lists (#2740)Theresa Foley
2023-07-07Make DeclRefBase a Val, and DeclRef<T> a helper class. (#2967)Yong He
2023-07-05Bottleneck DeclRef creation through ASTBuilder. (#2689)Yong He
2023-06-28Add support for vk::image_format attribute (#2945)jsmall-nvidia
2023-04-26Intellisense: show info on decl kind and differentiability. (#2847)Yong He
2023-04-26Fix most of the disabled warnings on gcc/clang (#2839)Ellie Hermaszewska
2023-04-25Dictionary using lowerCamel (#2835)jsmall-nvidia
2023-03-26Add PyTorch C++ binding generation. (#2734)Yong He
2023-03-21Fix associated type resolution bug. (#2719)Yong He
2023-03-13Support high order diff pattern: `bwd_diff(fwd_diff(f))`. (#2695)Yong He
2023-01-30Make ArrayExpressionType a DeclRefType and define its autodiff extension in s...Yong He
2022-12-01Allow `no_diff` on `this` parameter. (#2543)Yong He
2022-11-29Allow `no_diff` modifier on parameters (#2538)Yong He
2022-11-16Clean up type checking of higher order expressions. (#2519)Yong He
2022-11-16Mesh shader support (#2464)Ellie Hermaszewska
2022-11-08Make `__BuiltinFloatingPointType` conform to `IDifferentiable`. (#2499)Yong He
2022-11-04Higher order differentiation. (#2487)Yong He
2022-11-01Make `DifferentialPair` able to nest. (#2477)Yong He
2022-10-26Auto synthesis of Differential type (#2466)Yong He
2022-09-13Allow interface requirements to reference to the interface type itself. (#2398)Yong He
2022-09-13Deduplicate AST type nodes and cache lookup operations. (#2397)Yong He