Tagged Questions
1
vote
0answers
60 views
What is the optimal code for this task?
#if 1
for (POS iSource = iColPos;
iSource < _iMax;
++iSource)
*static_cast<T*__restrict>(&pDataDest[m_sFactorPositions[iSource + iOffset]]) -= pDataSource[iSource]*d;
#else
...
0
votes
1answer
211 views
Intel X86-64 assembly tutorials or book [closed]
I'm tried to search about intel x64 assembly tutorials with examples or a good book but I didn't find even in the intel site.
so, Could you suggest me a good tutorials or book for that ??
I'm using ...
3
votes
3answers
171 views
What are the exhaustion characteristics of RDRAND on Ivy Bridge?
After reviewing the Intel Digital Random Number Generator (DRNG) Software Implementation Guide, I have a few questions about what happens to the internal state of the generator when RDRAND is invoked. ...
1
vote
0answers
214 views
GCC optimization options for AMD Opteron 4280: benchmark
We're moving from one local computational server with 2*Xeon X5650 to another one with 2*Opteron 4280... Today I was trying to launch my wonderful C programs on the new machine (AMD one), and ...
2
votes
1answer
160 views
How to move AT&T Style Assembly code over to Visual Studio and Intel Style Syntax?
I have a very specialized file written in x86-64 assembly for Linux, compiled under GCC. I need to move that code over to a Visual Studio project and mll64.exe wants the assembly file to be in Intel ...
7
votes
1answer
391 views
pause instruction in x86
I am trying to create a dumb version of a spin lock. Browsing the web, I came across a assembly instruction in x86 which is used to give hint to a processor that a spin-lock is currently running on ...
3
votes
2answers
217 views
On most modern 64-bit processors, does the speed of `mulq` depend on the operands?
On most moder 64-bit processors (such as Intel Core 2 Duo or the Intel i7 series), does the speed of the x86_64 command mulq and its variants depend on the operands? For example, will multiplying 11 * ...
2
votes
2answers
637 views
How to use floating point numbers in x86-64 assembly?
I'm struggling with some x86-64 assembly, and floating point numbers are giving me a headache. For instance, when I run this code :
section .data
omega: dq 2.0
omega2: dq 3.0
section ...
1
vote
1answer
174 views
Address-Override Prefix in 64-bit mode
In 64-bit mode, the default address size is 64 bits. If the address-size override prefix (67h) is present, the address size is 32-bits.
I'm aware of the fact that canonical 64-bit addresses have ...
1
vote
2answers
388 views
Non-canonical linear addresses and general protection exception
The Intel Manuals say the following about canonical addresses and general protection exception:
From (Vol 1, Pg. 3-13):
"If a linear-memory reference is not in canonical form, the implementation ...
7
votes
1answer
526 views
IA-32e 64-bit IDT Gate Descriptor
There is a Segment Selector in Intel's 64-bit IDT Gate Descriptor. However, from my understanding across the 5 part Intel manuals, the Linear Address of the Interrupt Handler is loaded into RIP from ...
4
votes
1answer
309 views
with RIP-addressing, why x86-64 still need relocations?
So x86-64 has the RIP-relative addressings which makes PIC codes easy to write and relocations needed much less. Why is relocations still needed then on x86-64? For what features? I can try to explore ...
1
vote
1answer
711 views
NUMA documentations for x86-64 processor?
I have already looked for NUMA documentations for X86-64 processors, unfortunately I only found optimization documents for NUMA.
What I want is: how do I initialize NUMA in a system (this would ...
0
votes
1answer
136 views
operand of LIDT is displacement/absolute address
I stumbled upon a statement in Intel Software developers manual:
"For LGDT, LIDT, LLDT, LTR, SGDT, SIDT, SLDT, STR, the exit qualification receives the value of the instruction’s displacement field, ...
5
votes
1answer
335 views
How does loop address alignment affect the speed on Intel x86_64?
I'm seeing 15% performance degradation of the same C++ code compiled to exactly same machine instructions but located on differently aligned addresses. When my tiny main loop starts at 0x415220 it's ...