¡@

Home 

c++ Programming Glossary: c7

C++11: GCC 4.8 `thread_local` Performance Penalty?

http://stackoverflow.com/questions/13106049/c11-gcc-4-8-thread-local-performance-penalty

_ZTW3tls line 7 4005c5 8b 10 mov edx DWORD PTR rax 4005c7 83 e2 0b and edx 0xb 4005ca 89 10 mov DWORD PTR rax edx 4005cc.. 48 8b 14 25 00 00 00 00 mov rdx QWORD PTR fs 0x0 4005fb 48 c7 c0 fc ff ff ff mov rax 0xfffffffffffffffc 400602 48 01 d0 add.. 4005b0 55 push rbp 4005b1 48 89 e5 mov rbp rsp 4005b4 48 c7 c0 fc ff ff ff mov rax 0xfffffffffffffffc line 6 4005bb 64 8b..

Why does changing `const ull` to `const ull&` in function parameter result in performance gain?

http://stackoverflow.com/questions/14805641/why-does-changing-const-ull-to-const-ull-in-function-parameter-result-in-pe

const and static specifiers in c++

http://stackoverflow.com/questions/3792412/const-and-static-specifiers-in-c

class AE ... public static const int c6 7 static const int c7 31 const int AE c7 definition int f const int p1 AE c6 error.. static const int c6 7 static const int c7 31 const int AE c7 definition int f const int p1 AE c6 error c6 not an lvalue const..

Speed of accessing local vs. global variables in gcc/g++ at different optimization levels

http://stackoverflow.com/questions/7241035/speed-of-accessing-local-vs-global-variables-in-gcc-g-at-different-optimizati

80483d0 55 push ebp 80483d1 89 e5 mov esp ebp 80483d3 c7 05 dc 96 04 08 00 movl 0x0 0x80496dc 80483da 00 00 00 80483dd.. 0x19 eax 80483e7 79 fb jns 80483e4 global1 0x14 80483e9 c7 05 dc 96 04 08 00 movl 0x3b9aca00 0x80496dc 80483f0 ca 9a 3b.. 48 dec eax 8048401 79 fd jns 8048400 local1 0x8 8048403 c7 05 dc 96 04 08 00 movl 0x3b9aca00 0x80496dc 804840a ca 9a 3b..

G++ 4.6 -std=gnu++0x: Static Local Variable Constructor Call Timing and Thread Safety

http://stackoverflow.com/questions/9533649/g-4-6-std-gnu0x-static-local-variable-constructor-call-timing-and-thread-s

00 00 call 86 _Z1fv 0x66 86 48 89 d8 mov rax rbx 89 48 89 c7 mov rdi rax 8c e8 00 00 00 00 call 91 _Z1fv 0x71 Disassembly..

change variable name with a loop

http://stackoverflow.com/questions/968725/change-variable-name-with-a-loop

how to add the expressions using this method for i 0 ... c7 x i c share improve this question If I understand correctly..

Address of function is not actual code address

http://stackoverflow.com/questions/2485336/address-of-function-is-not-actual-code-address

the function address is void printaddr const char print 013C7465 C7 45 BC 29 14 3C 01 mov dword ptr printaddr offset print.. address is void printaddr const char print 013C7465 C7 45 BC 29 14 3C 01 mov dword ptr printaddr offset print 13C1429h.. inserting a jmp instruction at that address. 013C4F10 E9 C7 3F 00 00 jmp print 013C1429h There is actually a whole jump..

Cross-platform way to get line number of an INI file where given option was found

http://stackoverflow.com/questions/8358975/cross-platform-way-to-get-line-number-of-an-ini-file-where-given-option-was-foun

1 Parse success L 1 C2 .. L1 C6 Cat1 L 2 C2 .. L2 C7 name1 L 2 C8 .. L2 C12 100 L 6 C2 .. L6 C7 name2 L 6 C8 .. L6.. L 2 C2 .. L2 C7 name1 L 2 C8 .. L2 C12 100 L 6 C2 .. L6 C7 name2 L 6 C8 .. L6 C27 200 #not skipped L 7 C2 .. L7 C7 name3.. L6 C7 name2 L 6 C8 .. L6 C27 200 #not skipped L 7 C2 .. L7 C7 name3 L 7 C11 .. L7 C22 dhfj dhjgfd L 13 C3 .. L13 C8 Cat_2..