Tags: #llvm #sdcc #toolchain
"The LLVM+SDCC toolchain is meant to allow the use of languages other than C and to evaluate the effect of LLVM optimizations for 8-bit targets. "
http://www.colecovision.eu/llvm+sdcc/
"The LLVM+SDCC toolchain is meant to allow the use of languages other than C and to evaluate the effect of LLVM optimizations for 8-bit targets. "
http://www.colecovision.eu/llvm+sdcc/
www.colecovision.eu
LLVM+SDCC toolchain
The LLVM+SDCC toolchain allows the use of LLVM frontends and optimizations for SDCC targets.
Tags: #cppcon17 #class #proposals
"The conference is asking for instructors to submit proposals for classes to be taught in conjunction with next September’s CppCon 2017."
http://cppcon.org/callforclasses2017/
"The conference is asking for instructors to submit proposals for classes to be taught in conjunction with next September’s CppCon 2017."
http://cppcon.org/callforclasses2017/
Tags: #WinRT #GitHub
"I’m happy to announce that C++/WinRT is now available on GitHub. C++/WinRT is the future of the Modern project and the first public preview coming officially from Microsoft. "
https://moderncpp.com/2016/10/13/cppwinrt-available-on-github/
"I’m happy to announce that C++/WinRT is now available on GitHub. C++/WinRT is the future of the Modern project and the first public preview coming officially from Microsoft. "
https://moderncpp.com/2016/10/13/cppwinrt-available-on-github/
C++/WinRT
C++/WinRT Available on GitHub
I’m happy to announce that C++/WinRT is now available on GitHub. C++/WinRT is the future of the Modern project and the first public preview coming officially from Microsoft. What’s new Since the fi…
Tags: #stackoverflow #overflow
At what point in the loop does integer overflow become undefined behavior?
http://stackoverflow.com/questions/39914788/at-what-point-in-the-loop-does-integer-overflow-become-undefined-behavior
At what point in the loop does integer overflow become undefined behavior?
http://stackoverflow.com/questions/39914788/at-what-point-in-the-loop-does-integer-overflow-become-undefined-behavior
Stack Overflow
At what point in the loop does integer overflow become undefined behavior?
This is an example to illustrate my question which involves some much more complicated code that I can't post here.
#include <stdio.h>
int main()
{
int a = 0;
for (int i = 0; i < ...
#include <stdio.h>
int main()
{
int a = 0;
for (int i = 0; i < ...
Tags: #performance #codefaster #noexcept
"That noexcept keyword is tricky, but just know that if you use it, your coding world will spin faster. "
https://visualstudiomagazine.com/articles/2016/10/01/noexcept.aspx
"That noexcept keyword is tricky, but just know that if you use it, your coding world will spin faster. "
https://visualstudiomagazine.com/articles/2016/10/01/noexcept.aspx
Visual Studio Magazine
Make Your Code Faster with noexcept -- Visual Studio Magazine
That noexcept keyword is tricky, but just know that if you use it, your coding world will spin faster.
Tags: #tools #windows
"I have had quite a few helpful suggestions for other tools to try. Thanks!"
http://www.lenholgate.com/blog/2016/10/more-thoughts-on-c-tools-on-windows-1.html
"I have had quite a few helpful suggestions for other tools to try. Thanks!"
http://www.lenholgate.com/blog/2016/10/more-thoughts-on-c-tools-on-windows-1.html
Tags: #msvc #versus #clangcodegeneration
"I’m a windows PC game developer using MSVC 2015 update 1, working in C++.
More and more, I hear people talk about how great clang is, and that it generates much better code than MSVC, among other niceties."
http://blog.demofox.org/2016/10/14/a-data-point-for-msvc-vs-clang-code-generation/
"I’m a windows PC game developer using MSVC 2015 update 1, working in C++.
More and more, I hear people talk about how great clang is, and that it generates much better code than MSVC, among other niceties."
http://blog.demofox.org/2016/10/14/a-data-point-for-msvc-vs-clang-code-generation/
The blog at the bottom of the sea
A Data Point for MSVC vs Clang Code Generation
I'm a windows PC game developer using MSVC 2015 update 1, working in C++. More and more, I hear people talk about how great clang is, and that it generates much better code than MSVC, among other niceties. I have…
Tags: #stackoverflow #leftshift #masking
"Is masking before unsigned left shift in C/C++ too paranoid?"
http://stackoverflow.com/questions/39964651/is-masking-before-unsigned-left-shift-in-c-c-too-paranoid
"Is masking before unsigned left shift in C/C++ too paranoid?"
http://stackoverflow.com/questions/39964651/is-masking-before-unsigned-left-shift-in-c-c-too-paranoid
Stack Overflow
Is masking before unsigned left shift in C/C++ too paranoid?
This question is motivated by me implementing cryptographic algorithms (e.g. SHA-1) in C/C++, writing portable platform-agnostic code, and thoroughly avoiding undefined behavior.
Suppose that a
Suppose that a
Tags: #dependency #injected #exceptions
"Dependency injected exceptions or error handling"
http://www.kirit.com/Blog:/2016-10-15/Dependency%20injected%20exceptions%20or%20error%20handling
"Dependency injected exceptions or error handling"
http://www.kirit.com/Blog:/2016-10-15/Dependency%20injected%20exceptions%20or%20error%20handling
Tags: #compiler #bomb
DO NOT COMPILE AND RUN UNLESS YOU KNOW WHAT YOU ARE DOING.
This is a 29 byte C code that compiles to a 17,179,875,837 byte (16 GB) executable.
https://wikicoding.org/wiki/c/Compiler_Bomb/
DO NOT COMPILE AND RUN UNLESS YOU KNOW WHAT YOU ARE DOING.
This is a 29 byte C code that compiles to a 17,179,875,837 byte (16 GB) executable.
https://wikicoding.org/wiki/c/Compiler_Bomb/
Tags: #unsigned #conundrum
"A few weeks ago, CppCon16 conference organizer Jon Kalb gave a great little lightning talk titled “unsigned: A Guideline For Better Code“. "
https://bulldozer00.com/2016/10/16/the-unsigned-conundrum/
"A few weeks ago, CppCon16 conference organizer Jon Kalb gave a great little lightning talk titled “unsigned: A Guideline For Better Code“. "
https://bulldozer00.com/2016/10/16/the-unsigned-conundrum/
Bulldozer00's Blog
The “unsigned” Conundrum
A few weeks ago, CppCon16 conference organizer Jon Kalb gave a great little lightning talk titled “unsigned: A Guideline For Better Code”. Right up front, he asked the audience what the…