summaryrefslogtreecommitdiffstats
path: root/mac-x86_64/crypto/rand/rdrand-x86_64.S
blob: f0df296e1a3c8bb13de7dd57e51bd55f998f0261 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#if defined(__x86_64__)
.text	




.globl	_CRYPTO_rdrand
.private_extern _CRYPTO_rdrand

.p2align	4
_CRYPTO_rdrand:
	xorq	%rax,%rax


.byte	0x48, 0x0f, 0xc7, 0xf1

	adcq	%rax,%rax
	movq	%rcx,0(%rdi)
	.byte	0xf3,0xc3





.globl	_CRYPTO_rdrand_multiple8_buf
.private_extern _CRYPTO_rdrand_multiple8_buf

.p2align	4
_CRYPTO_rdrand_multiple8_buf:
	testq	%rsi,%rsi
	jz	L$out
	movq	$8,%rdx
L$loop:


.byte	0x48, 0x0f, 0xc7, 0xf1
	jnc	L$err
	movq	%rcx,0(%rdi)
	addq	%rdx,%rdi
	subq	%rdx,%rsi
	jnz	L$loop
L$out:
	movq	$1,%rax
	.byte	0xf3,0xc3
L$err:
	xorq	%rax,%rax
	.byte	0xf3,0xc3
#endif