__movsq
Microsoft 特定的
產生重複的行動字串 (rep movsq
) 指令。
語法
void __movsq(
unsigned long long* Destination,
unsigned long long const* Source,
size_t Count
);
參數
目的地
[out]作業的目的地。
來源
[in]作業的來源。
Count
[in]要複製的四字數目。
需求
內建 | 架構 |
---|---|
__movsq |
x64 |
頭檔<intrin.h>
備註
結果是來源所指向的第一個計數四字會複製到目的地字串。
此常式僅可作為內建常式使用。
範例
// movsq.cpp
// processor: x64
#include <stdio.h>
#include <intrin.h>
#pragma intrinsic(__movsq)
int main()
{
unsigned __int64 a1[10];
unsigned __int64 a2[10] = {950, 850, 750, 650, 550, 450, 350, 250,
150, 50};
__movsq(a1, a2, 10);
for (int i = 0; i < 10; i++)
printf_s("%d ", a1[i]);
printf_s("\n");
}
950 850 750 650 550 450 350 250 150 50
END Microsoft 特定的