Это первый раз, когда я публикую вопрос о stackoverflow, поэтому, пожалуйста, попробуйте и пропустите все ошибки, которые я мог допустить при форматировании моего вопроса / кода. Но, пожалуйста, укажите мне то же самое, чтобы я мог быть более осторожным.
Я пытался написать несколько простых встроенных процедур для добавления двух 128-битных (содержащих 4 числа с плавающей запятой) чисел. Я нашел некоторый код в сети и пытался заставить его работать в моей системе. Код выглядит следующим образом:
//this is a sample Intrinsics program to add two vectors.
#include <iostream>
#include <iomanip>
#include <xmmintrin.h>
#include <stdio.h>
using namespace std;
struct vector4 {
float x, y, z, w; };
//functions to operate on them.
vector4 set_vector(float x, float y, float z, float w = 0) {
vector4 temp;
temp.x = x;
temp.y = y;
temp.z = z;
temp.w = w;
return temp;
}
void print_vector(const vector4& v) {
cout << " This is the contents of vector: " << endl;
cout << " > vector.x = " << v.x << endl;
cout << " vector.y = " << v.y << endl;
cout << " vector.z = " << v.z << endl;
cout << " vector.w = " << v.w << endl;
}
vector4 sse_vector4_add(const vector4&a, const vector4& b) {
vector4 result;
asm volatile (
"movl $a, %eax" //move operands into registers.
"\n\tmovl $b, %ebx"
"\n\tmovups (%eax), xmm0" //move register contents into SSE registers.
"\n\tmovups (%ebx), xmm1"
"\n\taddps xmm0, xmm1" //add the elements. addps operates on single-precision vectors.
"\n\t movups xmm0, result" //move result into vector4 type data.
);
return result;
}
int main() {
vector4 a, b, result;
a = set_vector(1.1, 2.1, 3.2, 4.5);
b = set_vector(2.2, 4.2, 5.6);
result = sse_vector4_add(a, b);
print_vector(a);
print_vector(b);
print_vector(result);
return 0;
}
Параметры g ++, которые я использую:
g++ -Wall -pedantic -g -march=i386 -msse intrinsics_SSE_example.C -o h
Я получаю следующие ошибки:
intrinsics_SSE_example.C: Assembler messages:
intrinsics_SSE_example.C:45: Error: too many memory references for movups
intrinsics_SSE_example.C:46: Error: too many memory references for movups
intrinsics_SSE_example.C:47: Error: too many memory references for addps
intrinsics_SSE_example.C:48: Error: too many memory references for movups
Я потратил много времени на попытки отладить эти ошибки, погуглил их и так далее. Я абсолютный новичок в Intrinsics и, возможно, упустил из виду некоторые важные вещи.
Любая помощь приветствуется,
Спасибо,
Шриры.