¡@

Home 

c++ Programming Glossary: itanium

Interlocked equivalent on Linux

http://stackoverflow.com/questions/149710/interlocked-equivalent-on-linux

the compare and swap CPU instruction provided by x86 and Itanium chips. I guess you wouldn't expect anything else from an Intel..

C++: Class specialization a valid transformation for a conforming compiler?

http://stackoverflow.com/questions/15148425/c-class-specialization-a-valid-transformation-for-a-conforming-compiler

Furthermore if yes could this be done currently with the Itanium and or MSVC ABIs I'm fairly sure the answer there is yes as..

C++ virtual table layout of MI(multiple inheritance)

http://stackoverflow.com/questions/15921372/c-virtual-table-layout-of-mimultiple-inheritance

decision outside of the Standard. For example MSVC and the Itanium ABI followed by gcc clang icc ... have different ways to implement..

How do exceptions work (behind the scenes) in c++

http://stackoverflow.com/questions/307610/how-do-exceptions-work-behind-the-scenes-in-c

What is __gxx_personality_v0 for?

http://stackoverflow.com/questions/329059/what-is-gxx-personality-v0-for

. As mentioned on that answer its use is defined by the Itanium C ABI where it is called the Personality Routine . The reason..

What are primitive types default-initialized to in C++?

http://stackoverflow.com/questions/3803153/what-are-primitive-types-default-initialized-to-in-c

used in practice is not all zero bits. In the so called C Itanium ABI used by at least GCC and Clang pointer to data members have..

Operator Precedence vs Order of Evaluation

http://stackoverflow.com/questions/5473107/operator-precedence-vs-order-of-evaluation

parallel execution. For a couple of examples the Intel Itanium and VLIW processors such as some DSPs allow a compiler to designate.. the number of instructions executed in parallel. The Itanium also uses packets of instructions but designates a bit in an..

Understanding the vtable entries

http://stackoverflow.com/questions/5712808/understanding-the-vtable-entries

multiple inheritence and typeinfo RTTI pointers. From the Itanium ABI you are not using the Itanium compiler but their description.. RTTI pointers. From the Itanium ABI you are not using the Itanium compiler but their description of this is really good The offset..

How expensive is RTTI?

http://stackoverflow.com/questions/579887/how-expensive-is-rtti

without RTTI since exceptions won't work . 1 Known as the Itanium C ABI documented at http www.codesourcery.com public cxx abi.. Comments in GCC's internal source and STL code refer to Itanium as the new ABI in contrast to the old one they used before... in contrast to the old one they used before. Worse the new Itanium ABI refers to all versions available through fabi version the..

GNU GCC (g++): Why does it generate multiple dtors?

http://stackoverflow.com/questions/6613870/gnu-gcc-g-why-does-it-generate-multiple-dtors

First the purposes of these functions are described in the Itanium C ABI see definitions under base object destructor complete..

Dual emission of constructor symbols

http://stackoverflow.com/questions/6921295/dual-emission-of-constructor-symbols

question We'll start by declaring that GCC follows the Itanium C ABI . According to the ABI the mangled name for your Thing..

Does the evil cast get trumped by the evil compiler?

http://stackoverflow.com/questions/712334/does-the-evil-cast-get-trumped-by-the-evil-compiler

original problem was converting code from HP11 to HP1123 Itanium. Basically it boils down to a compile error on HP1123 Itanium... Basically it boils down to a compile error on HP1123 Itanium. It has me really scratching my head when reproducing it on..

Array placement-new requires unspecified overhead in the buffer?

http://stackoverflow.com/questions/8720425/array-placement-new-requires-unspecified-overhead-in-the-buffer

given platform. E.g. this is something specified by the Itanium ABI . If you don't know the answer to this question write your..