Lioncash
6fd44e494c
Pass std::string by value where applicable.
...
By taking the std::string by value in the constructor, this allows for
certain situations where copies can be elided entirely (when moving an
instance into the constructor)
e.g.
std::string var = ...
...
... = LiteralString(std::move(var)) // Or whatever other initialization
// is done.
No copy will be done in this case, the move transfers it into the
constructor, and then the move within the initializer list transfers it
into the member variable.
tl;dr: This allows the calling code to potentially construct less
std::string instances by allowing moving into the parameters themselves.
2019-03-14 04:30:39 -03:00
Lioncash
1081bcdda9
sirit: Remove unused variable in AddAnnotation()
...
id isn't used within AddAnnotation, so this can be removed.
2019-03-14 02:43:05 -04:00
ReinUsesLisp
057b100a68
Assert on empty Emit
2019-03-13 19:20:29 -03:00
ReinUsesLisp
73595f4588
Change clang-format settings
2019-03-11 03:26:21 -03:00
ReinUsesLisp
b23716087a
Add OpExtension
2019-03-08 21:09:11 -03:00
ReinUsesLisp
e7971b4451
Add OpExecutionMode
2018-12-04 21:30:32 -03:00
ReinUsesLisp
93d42e62da
Remove WriteEnum abstraction
2018-11-16 04:21:37 -03:00
ReinUsesLisp
f5944d61a6
Upgrade from LGPLv2.1 to LGPLv3
2018-11-16 04:10:10 -03:00
ReinUsesLisp
30dbb951dd
Fixup empty GLSL extension creation
2018-11-13 19:30:54 -03:00
ReinUsesLisp
8f17ad84ba
Annotations return target and add OpUMod
2018-11-06 04:50:10 -03:00
ReinUsesLisp
6742afd6dd
Add support for GLSLstd450 and OpFAbs
2018-11-04 03:03:06 -03:00
ReinUsesLisp
4f66fb18e9
Add version select and OpLogicalNot
2018-11-02 13:38:33 -03:00
ReinUsesLisp
91e0769db5
Fixup build issues
2018-11-01 05:13:30 -03:00
ReinUsesLisp
f3a63aa55f
Use unique_ptr for instruction implementations
2018-11-01 00:02:45 -03:00
ReinUsesLisp
63ca1b5243
Rename Ref alias to Id
2018-10-31 22:20:49 -03:00
ReinUsesLisp
00fc8daf56
Use variant instead of creating an object for literals
2018-10-28 14:57:49 -03:00
ReinUsesLisp
3f845b7c48
Fixup build errors
2018-10-28 04:59:15 -03:00
ReinUsesLisp
8c1ab76ce5
Fix "for" incosistencies
2018-10-23 05:09:17 -03:00
ReinUsesLisp
1458bd2c1c
Add OpDecorate
2018-10-23 04:45:56 -03:00
ReinUsesLisp
54cc7d06ce
Add global variables
2018-10-20 02:52:55 -03:00
ReinUsesLisp
0485e1877c
Use some C++17 features
2018-10-03 00:32:45 -03:00
ReinUsesLisp
acea9030c5
Add OpName and debug symbols
2018-08-31 04:40:15 -03:00
ReinUsesLisp
2bafba1a17
Rename Assembly -> Assemble
2018-08-31 03:41:30 -03:00
ReinUsesLisp
edfc77bbbe
Rename opcodes -> insts
2018-08-28 04:05:47 -03:00
ReinUsesLisp
954774f9e8
Alias "const Op*" -> "Ref".
2018-08-28 04:01:21 -03:00
ReinUsesLisp
f68dbb20fc
Fixup License header 2 -> 2.1
2018-08-26 23:28:39 -03:00
ReinUsesLisp
c0d61d32d4
Fixup License
2018-08-26 22:27:33 -03:00
ReinUsesLisp
c2215fca0e
Move flow and function opcodes into their own file
2018-08-26 05:01:31 -03:00
ReinUsesLisp
3bd3688567
Move type opcodes to their own file
2018-08-26 04:49:16 -03:00
ReinUsesLisp
1de01c95ae
Rename Ref -> Op
2018-08-25 20:34:06 -03:00
ReinUsesLisp
34d215d3d8
Implement stuff
2018-08-25 20:16:37 -03:00
ReinUsesLisp
5cfa8aa6ab
aloha
2018-08-23 04:59:57 -03:00