Questions
Linux
Laravel
Mysql
Ubuntu
Git
Menu
HTML
CSS
JAVASCRIPT
SQL
PYTHON
PHP
BOOTSTRAP
JAVA
JQUERY
R
React
Kotlin
×
Linux
Laravel
Mysql
Ubuntu
Git
New posts in compiler-optimization
Understanding the as-if rule, "the program was executed as written"
Dec 15, 2021
c++
compiler-optimization
Why is -march=native used so rarely?
Aug 26, 2022
gcc
clang
compiler-optimization
Why don't compilers merge redundant std::atomic writes?
Sep 21, 2022
c++
multithreading
c++11
compiler-optimization
stdatomic
Why don't modern compilers coalesce neighboring memory accesses?
Dec 29, 2021
c++
assembly
optimization
compiler-optimization
Why is there no implicit parallelism in Haskell?
Aug 26, 2022
haskell
concurrency
parallel-processing
compiler-optimization
Can the compiler optimize from heap to stack allocation?
Aug 26, 2022
c++
memory-management
language-lawyer
compiler-optimization
How does GCC optimize out an unused variable incremented inside a loop?
Aug 26, 2022
c
gcc
compiler-optimization
disassembly
Is a C compiler allowed to coalesce sequential assignments to volatile variables?
Nov 18, 2022
c
language-lawyer
compiler-optimization
volatile
Why can't GCC optimize the logical bitwise AND pair in "x && (x & 4242)" to "x & 4242"?
Aug 26, 2022
c++
gcc
optimization
compiler-optimization
Is it possible to implement bitwise operators using integer arithmetic?
Aug 26, 2022
bitwise-operators
discrete-mathematics
compiler-optimization
De Morgan's Law optimization with overloaded operators
Feb 23, 2022
c++
operator-overloading
language-lawyer
compiler-optimization
Why is memcmp(a, b, 4) only sometimes optimized to a uint32 comparison?
Aug 25, 2022
c
gcc
clang
x86-64
compiler-optimization
intel
What kind of optimization does const offer in C/C++?
Sep 22, 2022
c++
c
constants
compiler-optimization
Is this a JVM bug or "expected behavior"?
Oct 26, 2022
java
jvm
compiler-optimization
integer-overflow
Why does using the ternary operator to return a string generate considerably different code from returning in an equivalent if/else block?
Aug 20, 2022
c++
assembly
optimization
clang
compiler-optimization
Why is std::fill(0) slower than std::fill(1)?
Aug 25, 2022
c++
performance
x86
compiler-optimization
memset
What is the difference between the /Ox and /O2 compiler options?
May 25, 2020
c++
visual-studio
visual-c++
compiler-optimization
compiler-options
Compiler stops optimizing unused string away when adding characters
Oct 16, 2022
c++
gcc
compilation
clang
compiler-optimization
Why is "while (i++ < n) {}" significantly slower than "while (++i < n) {}"
May 13, 2022
java
performance
compiler-optimization
post-increment
pre-increment
Can compiler optimization introduce bugs?
Nov 11, 2022
optimization
compiler-construction
compiler-optimization
« Newer Entries
Older Entries »