- 2011 - A trip through the Graphics Pipeline 2011
- 2013 - Performance Optimization Guidelines and the GPU Architecture behind them
- 2015 - Life of a triangle - NVIDIA's logical pipeline
- 2015 - Render Hell 2.0
- 2016 - How bad are small triangles on GPU and why?
- 2017 - GPU Performance for Game Artists
- 2019 - Understanding the anatomy of GPUs using Pokémon
What is strict aliasing? First we will describe what is aliasing and then we can learn what being strict about it means.
In C and C++ aliasing has to do with what expression types we are allowed to access stored values through. In both C and C++ the standard specifies which expression types are allowed to alias which types. The compiler and optimizer are allowed to assume we follow the aliasing rules strictly, hence the term strict aliasing rule. If we attempt to access a value using a type not allowed it is classified as undefined behavior(UB). Once we have undefined behavior all bets are off, the results of our program are no longer reliable.
Unfortunately with strict aliasing violations, we will often obtain the results we expect, leaving the possibility the a future version of a compiler with a new optimization will break code we th
| diff '--exclude=*.orig' -urN vim73.orig/runtime/doc/eval.txt vim73/runtime/doc/eval.txt | |
| Index: macvim/runtime/doc/eval.txt | |
| =================================================================== | |
| --- macvim.orig/runtime/doc/eval.txt | |
| +++ macvim/runtime/doc/eval.txt | |
| @@ -6409,8 +6409,8 @@ jumplist Compiled with |jumplist| suppo | |
| keymap Compiled with 'keymap' support. | |
| langmap Compiled with 'langmap' support. | |
| libcall Compiled with |libcall()| support. | |
| -linebreak Compiled with 'linebreak', 'breakat' and 'showbreak' |