Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
2answers
2k views

Usefulness of signaling NaN?

I've recently read up quite a bit on IEEE 754 and the x87 architecture. I was thinking of using NaN as a "missing value" in some numeric calculation code I'm working on, and I was hoping that using ...
9
votes
5answers
1k views

Benefits of x87 over SSE

I know that x87 has higher internal precision, which is probably the biggest difference that people see between it and SSE operations. But I have to wonder, is there any other benefit to using x87? ...
8
votes
1answer
794 views

Extended (80-bit) double floating point in x87, not SSE2 - we don't miss it?

I was reading today about researchers discovering that NVidia's Phys-X libraries use x87 FP vs. SSE2. Obviously this will be suboptimal for parallel datasets where speed trumps precision. However, the ...
6
votes
2answers
267 views

80-bit floating point and subnormal numbers

I am trying to convert an 80-bit extended precision floating point number (in a buffer) to double. The buffer basically contains the content of an x87 register. This question helped me get started as ...
5
votes
2answers
142 views

x87 FPOP and FCOM instructions - how do these work?

I've been tasked with writing a simple application in mixed C/ASM that has to use math coprocessor. There's the function cylinder(float x, float y, float z) that returns 1 if the given point is ...
4
votes
2answers
140 views

How do you get maximal speed out of SSE?

What are the best settings for stuff like MXCSR? Which rounding mode is fastest? On what processors? Is it faster to enable signalling NaNs so I get informed when a computation results in a nan, or ...
3
votes
2answers
90 views

Basic FPU instructions/stack overview?

I'm trying to get a basic understanding of floating point operations on x86. I understand that we have a dedicated FPU with a stack, but I'm not finding much relevant information on how the stack ...
3
votes
2answers
106 views

Finding the “discrete” difference between close floating point numbers

Suppose I have two floating point numbers, x and y, with their values being very close. There's a discrete number of floating point numbers representable on a computer, so we can enumerate them in ...
2
votes
2answers
162 views

What instructions should I be using for floating point operations?

I'm somewhat familiar with the x87 instructions for manipulating floating point numbers in x86 assembly. However, I read somewhere that these were seldom used anymore. (And weren't allowed in 64-bit ...
0
votes
1answer
62 views

Ambiguity in decoding specific x87 FPU instructions

I'm facing an ambiguous case with regard to decoding x87 FPU instructions. Take a look at the following instruction taken from page Page 3-380 of Vol 2A Intel's instruction set manual [1]. D9 /0 ...
0
votes
0answers
41 views

programming Shake sk6 from SAMH Engineering services

I am currently working on a project to use shake sk6 but I have no idea how to even begin. I have searched the web for a lead but found nothing at the moment.
0
votes
4answers
211 views

Simplest way to remove something from the FPU stack

I've been having some trouble lately with FPU stack overflows. I managed to track it back to a buggy library function that pushes a garbage value onto the FPU stack every time it's called and never ...
0
votes
1answer
116 views

Why is this simple program outputting so many characters?

Here is my short assembly program: ; This code has been generated by the 7Basic ; compiler <http://launchpad.net/7basic> extern printf ; Initialized data SECTION .data f_0 dd 5.5 ...