Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Adjust License.txt file to use the LLVM license | Mehdi Amini | 2019-12-23 | 1 | -13/+4 |
| | | | | PiperOrigin-RevId: 286906740 | ||||
* | Add missing include file to StringExtrasTest.cpp | Mahesh Ravishankar | 2019-07-30 | 1 | -1/+1 |
| | | | | | | | Use of std::isupper and std::islower need <cctype> header file. Fix that and also fix the header of a file to match the file name. PiperOrigin-RevId: 260816852 | ||||
* | Add support for (de)serialization of SPIR-V Op Decorations | Mahesh Ravishankar | 2019-07-30 | 1 | -0/+74 |
All non-argument attributes specified for an operation are treated as decorations on the result value and (de)serialized using OpDecorate instruction. An error is generated if an attribute is not an argument, and the name doesn't correspond to a Decoration enum. Name of the attributes that represent decoerations are to be the snake-case-ified version of the Decoration name. Add utility methods to convert to snake-case and camel-case. PiperOrigin-RevId: 260792638 |