This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

请问,下图的例子是如何实现的,谢谢



请问,

第一个方框的四个数是如何放进A2的,用什么指令?_x128_t  吗?

如何取出A9中的四个数?用return返回吗?

  • 这个指令是对4个8比特数做操作。4个8比特数仅仅是一个32bit word,用unsigned int定义就可以了。.

    如果用C语言写代码,无需考虑寄存器读取的问题。一切都当作变量来处理。如果用intrisics, load和store 4字节数的intrinsics是_amem4。如果用汇编写,那么有相应的汇编指令将数据从寄存器存回内存。