0
下面的代碼只是試圖將數據從'in *'數組複製到'out *'數組,但在第一個vst1.32
指令中出現段錯誤,但是爲什麼?arm neon vst1.32 segfault
int* in0 = new int[4]{ 0x0, 0x1, 0x2, 0x3 };
int* in1 = new int[4]{ 0x4, 0x5, 0x6, 0x7 };
int* in2 = new int[4]{ 0x8, 0x9, 0xA, 0xB };
int* in3 = new int[4]{ 0xC, 0xD, 0xE, 0xF };
int* out0 = new int[4]{};
int* out1 = new int[4]{};
int* out2 = new int[4]{};
int* out3 = new int[4]{};
asm volatile("vld1.32 {d0, d1}, [%[in0]] \n"
"vld1.32 {d2, d3}, [%[in1]] \n"
"vld1.32 {d4, d5}, [%[in2]] \n"
"vld1.32 {d6, d7}, [%[in3]] \n"
"vst1.32 {d0, d1}, [%[out0]] \n"
"vst1.32 {d2, d3}, [%[out1]] \n"
"vst1.32 {d4, d5}, [%[out2]] \n"
"vst1.32 {d6, d7}, [%[out3]] \n"
: [out0]"=r"(out0), [out1]"=r"(out1), [out2]"=r"(out2), [out3]"=r"(out3)
: [in0]"r"(in0), [in1]"r"(in1), [in2]"r"(in2), [in3]"r"(in3)
: "d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7", "memory", "cc"
);
http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0491f/BABDCGGF.html被標記爲「替代」。也許你應該尋找取代這個命令的東西。 – BitTickler
使用搜索功能製作了此頁面:http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0491f/BABDCGGF.html - 所以我認爲它可能實際上是_version_作爲一個整體的文件已被取代,而不是單獨的指令。 – bitwise
'[out0]「= r」(out0)'表示out0中的值將被asm覆蓋。而且由於該值在被覆蓋之前從未被使用過,因此賦予它什麼意義? IOW,就像它看起來的反直覺一樣,out0是一個輸入。那麼你如何告訴gcc你正在修改out0的*內容*?在這種情況下,內存clobber應該就足夠了。 –