A floating-point unit is a part of a computer system specially designed to carry out operations on floating point numbers.
0
votes
0answers
32 views
Compiling with FPU on ARM board
I am using mini6410 ARM 1176 board to run image processing application using OpenCV. I am using ARM toolchain 4.5.1 as supplied by the manufacturer of the board with certain options that may be of ...
0
votes
1answer
49 views
FLD floating-point instruction
According to
http://cs.smith.edu/~thiebaut/ArtOfAssembly/CH14/CH14-4.html#HEADING4-5
14.4.4.1 The FLD Instruction
fld mem_32
fld mem_64[bx]
My objective is store a constant 10 into my fPU ...
0
votes
1answer
62 views
masm assembly how to divide and multiply numbers using the fpu
I am new to masm and assembly and need some help. I have spent probably 6 hours on this already. I have 3 text boxes and 2 buttons. I want one of the buttons to multiply the numbers in the text boxes ...
0
votes
0answers
78 views
How to optimize an FPU routine
I have got some c-routine
int n_mandelbrot(double c_im, double c_re, int N_ITER)
{
static double re, im, re2, im2;
static int n;
im2=im=0;
re2=re=0;
for(n=0; ...
0
votes
0answers
33 views
float-point format
I'm developing my own float-point library and i was wondering:
1) Is there any float-point specifications beside IEEE-754?
2) What are the FPUs that don't use IEEE-754?
2
votes
2answers
130 views
FLD instruction x64 bit
I have a little problem with FLD instruction in x64 bit ...
want to load Double value to the stack pointer FPU in st0 register, but it seem to be impossible.
In Delphi x32, I can use this code :
...
3
votes
1answer
52 views
Detecting potential FPU conditions raised by a single statement
I'm using fenv to look for statements which produce overflows, underflows, inexact results, etc.
However, am I correct in assuming that the compiler could reorder code on me and not implement the ...
0
votes
1answer
23 views
_controlfp_s returning the high 32 bit?
I am seeing the return of the _controlfp_s unsigned int showing that the 32nd bit is being set (thought only 16 bits used) for some ODBC work?
Anybody any ideas what this means?
Normally we only see ...
2
votes
1answer
124 views
Performance comparison of FPU with software emulation
While I know (so I have been told) that Floating-point coprocessors work faster than any software implementation of floating-point arithmetic, I totally lack the gut feeling how large this difference ...
0
votes
1answer
61 views
Dividing longfloat and int in Assembly x86-64
I have a program where i loop for as long as the user enters Y (for yes). The user then inputs data of type long float. I also have a counter, r14, which will count each time they input a long ...
0
votes
1answer
106 views
Can GPU be used in numerical calculations (Complex matrix multiplication) on Android Environmement?
I am implementing Kalman filter algorithm in Android. The code has some complex matrix multiplication operations. The matrix elements are of type float. My question is
1) how are floating point ...
1
vote
2answers
177 views
Bench marking ARM NEON OpenMAx Numbers
I am currently working on bench marking the performance of Cortex-A8 processor by using various compilers(tried DS-5 and IAR) and various libraries (Openmax,NE10).
I am specifically working on to see ...
0
votes
0answers
157 views
tasm code fpu floating point unit
.MODEL SMALL
.STACK 100h
ASSUME CX:_TEXT, DS:_DATA
_DATA SEGMENT DWORD PUBLIC 'DATA'
xparr db 10 dup (?)
TOW DB 2
CHECKER DB 2
XP DB 1
N DB (?)
_DATA ENDS
.CODE
.386
.387
PUBLIC _XPN
...
1
vote
2answers
78 views
x86: latency and throughput of transcendental functions
Intel® 64 and IA-32 Architectures Optimization Reference Manual lists latency and throughput figures for various CPU instructions.
For transcendental functions (FSIN etc) some of the figures are ...
0
votes
1answer
111 views
FPU stores nan with fld
I'm writing a DOS program in assembly: I'm trying to draw the Mandelbrot set. I'm now trying to translate this piece of C code in assembly:
double x0 = i * 3.2 / maxX - 2.1; //scaled x coordinate of ...
0
votes
0answers
214 views
Divide a double precision by a single precision in MIPS assembly without FPU
I have to make a program in MIPS assembly that divide a Double precision floating number by a Single precision number (with standard IEEE 754) without using the Floating Pointer Unit. The only thing I ...
0
votes
1answer
57 views
Assembly stack access
.data
oldcw: .int
clear: .long 0xF0FF
round: .long 0x0D00
fstcw oldcw
fwait
mov oldcw,%ax
and %ax,clear
or %ax,round
pushl %eax
fldcw [%esp]
popl %eax
...
0
votes
0answers
88 views
Active FPU Exceptions
all fine?
Guys, would like to exchange an idea with yours. In my company,
a colleague has a problem in your delphi where only on a project the exceptions of "Floating point divide by zero" are not ...
2
votes
1answer
81 views
Print FPU registers in lldb
How do you print FPU registers using lldb?
In gdb, you would do something like p $st0, however doing the same in lldb results in the error: error: use of undeclared identifier '$st0'.
register read ...
0
votes
1answer
135 views
Compute logarithm ln(x) using FPU assembly
I have a problem with simple logarithm computation using FPU. I am using MASM compiler integrated with Visual Studio 2012.
LOCAL log_e_120 : REAL8;
MOV eax, 120
MOVD mm0, eax
MOVQ ...
7
votes
1answer
137 views
What algorithms do FPUs use to compute transcendental functions?
What methods would a modern FPU use to compute transcendental functions?
For example, Intel CPUs provide instructions such as FSIN, FCOS, FYL2X, etc. I am curious as to what algorithms would be used ...
1
vote
1answer
162 views
gcc options to use i87, AVX simultaneously but nor SSE
When compiled for processor that support AVX extension (say -m64 -march=corei7-avx -mtune=corei7-avx is applicable), does it make sense to use -mfpmath=both -mavx keys at the same time? Does not it so ...
3
votes
1answer
129 views
FPU. How to make a loop?
Why when it goes to the cycle in ECX there some big random value insted of 0? And is there other way to make cycle here?
program Project2;
{$APPTYPE CONSOLE}
uses
SysUtils;
function ...
0
votes
1answer
99 views
use of FFREE and FDECSTP
I cannot understand this things: what is the use of such commands (FFREE, FDECSTP)?
Can it ve used to pop value out of the fpu stack, or this is for some another purpose?
I dont get it :/ Could ...
1
vote
2answers
64 views
Is sinus scalable?
By sinus I mean here c stdlib sin() / fpu assembl;y fsin.
I can give to this sinus argument with about 16 decimal
digits presision or more, for example sin(1.1e-14);
sin(1.2e-14) then get results,
...
0
votes
1answer
78 views
fpu state (x87)
I am searching for info about how many values can be considered as part of current fpu state (I mean the values on which floating point code calculations depend on) I know that it would be 3 modes of ...
1
vote
1answer
65 views
switching fpu to single precission
I have read that on older fpu a couple a
years before fpu when switched to
single precission mode did divisions and
sqr twice as fast as in normal mode.
(check the source of it
...
1
vote
3answers
318 views
division as multiply and LUT ? / fast float division reciprocal
Is it possible to make a reciprocal of float division in form
of look up table (such like 1/f -> 1*inv[f] ) ? How it could be done?
I think some and mask and shift should be appled to float to make
...
1
vote
1answer
91 views
intersectRaySphere x86 fpu asm routine - how to optymize
Hullo, i ve got some c procedure :
inline float intersectRaySphere(float3* rayO, float3* rayV, float3* sO, float sR)
{
static float3 Q;
Q = sub(sO,rayO);
float cc = ...
1
vote
1answer
231 views
carmack's invsqrt in asm [closed]
Hullo, I am not too much experienced in asm and I would like
to rewrite carmack's inverted square root c routine in assembly
; float InvSqrt (float x){
;
@173:
push ebp
mov ...
1
vote
1answer
202 views
asm (fpu) normalize - how to optimize it
I have written some x86 asm - fpu routine to
normalize a vector of three floats - here it is
_asm_normalize10:; Function begin
push ebp ; 002E _ 55
...
0
votes
1answer
96 views
how to reverse divide 1/f on fpu?
Sorry for such simple question, (learning assembly from few
days) but i was browsing through books and couldnt find answer
what is a proper quick way to count 1/f where f is some
float on x86 fpu
...
0
votes
2answers
299 views
how to move st0 to eax?
Hullo, I am learning x86 fpu assembly, and i have
got a simple question I cannot find answer for:
how to move value from st0 (top of the fpu
stack) to eax ?
also:
is this code correct:
; multiply ...
0
votes
2answers
139 views
some intersectRaySphere c procedure optymization through rewriting it to x86 asm (How?)
Hullo, I've got not to much knowledge in assembly,
and i am thinking how to optimize it by rewriting this
in x86 (32-bit fpu or sse2) assembly, thing should be
optimized - rewritten in correct ...
2
votes
2answers
110 views
Conditional coprocessor ops in arm asm valid if coprocessor not present?
Are instructions like
fstmiaxne ip!, {d8-d15}
valid/safe to use in ARM assembly when the necessary coprocessor might not be present, if the current condition codes ensure that the operation is not ...
0
votes
1answer
286 views
Floating-point error when calling dll function from VBA
This is my first post. Sorry if it is a bit messy.
Here is the situation. I am using MS Visual Sturio 2005 and Excel 2007. I create a dll containing a function
extern "C" VARIANT WINAPI MyFunc()
{
...
4
votes
2answers
295 views
Pow implementation for double
I am developing a code that will be used for motion control and I am having a issue with the pow function.
I am using VS2010 as IDE.
Here is my issue:
I have:
double p = 100.0000;
double d = ...
1
vote
1answer
806 views
FILD, FSTP and FST assembly instructions
So I have been solving this crackme today. I managed to locate and understand the serial generating routine except for a few last instructions. I decided to write a keygen in assembly for the first ...
2
votes
1answer
467 views
Loading double to FPU with GCC (Inline assembler)
I've been trying to load a double to the FPU with FLD using GCC inline assembly.
Being not that familiar with the AT&T syntax and not having found anything on the web, I'd greatly appreciate your ...
2
votes
2answers
645 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
2k views
GNU ARM toolchain with hardware floating point support
I have started working on STM32F4 Discovery board and have compiled and run a few basic programs using the latest Yagarto toolchain containing the GCC 4.6.2. Lately though on several forums I have ...
0
votes
1answer
810 views
Debugger stops inside mathematical functions that have floating point arguments
I'm using Keil uVision with gcc compiler (Sourcery Codebenchlite for ARM EABI ) to program the STM32F4 cortex M4 chip.
The compiler control strings I have set are:
-march=armv7e-m ...
1
vote
1answer
146 views
Assembly FPU Stack Breaking; Resulting in -1.#IND
I'm newish to assembly in general, and especially to usage of the FPU.
I'm writing an assignment for school that calculates the Standard Deviation of an array of random numbers.
The array is ...
3
votes
4answers
341 views
How to avoid FPU when given float numbers?
Well, this is not at all an optimization question.
I am writing a (for now) simple Linux kernel module in which I need to find the average of some positions. These positions are stored as floating ...
2
votes
1answer
1k views
How FILD and FSTP work?
I've searched over the net, and everywhere it says: FILD converts the two's complement of an
integer to 80 bit extended precision float, and puts it on top of the floats stack.
So, I've had a program ...
1
vote
2answers
333 views
division 8086/8087 1/3 =3?
I´m having a huge problem using fdiv!!!! I'm trying to divide 1/3 so this is what I do
.model small
.stack 100h
.data
var1 dd 1
var2 dd 3
var3 dd 2
resultado dt 0.0
.code
mov ax,@data
mov ...
0
votes
1answer
86 views
How to specify a value for a #define with autoconf?
I'm trying to build Gnu binutils with behaviour unlocked by defining the macro SYSV386_COMPAT 0 to vary the way in which it generates some FPU opcodes.
I can easily go into the header file and set ...
3
votes
3answers
128 views
What's the motivation for a fpu to implement their registers in stack-based fashion?
What's the motivation for a fpu to implement their registers in stack-based fashion? To my understanding other instructions-sets such as x86/sse use named registers. I can imagine the stack-based ...
2
votes
2answers
67 views
Does decimal math use the FPU
Does decimal math use the FPU?
I would think that the answer is yes, but I'm not sure, since a decimal is not a floating point, but a fixed precision number.
I'm looking mostly for .NET, but a ...
2
votes
1answer
180 views
Pixel modifying code runs quick in main app, really slow in Delphi 6 DirectShow filter with other problems
I have a Delphi 6 application that sends bitmaps to a DirectShow DLL in real-time, 25 frames a second. The DirectShow DLL is my code too and is also written in Delphi 6 using the DSPACK DirectShow ...

