File: avx.asm

package info (click to toggle)
chromium 138.0.7204.183-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,908 kB
  • sloc: cpp: 34,937,088; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (46 lines) | stat: -rw-r--r-- 1,141 bytes parent folder | download | duplicates (19)
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
;Testname=unoptimized; Arguments=-O0 -fbin -oavx.bin; Files=stdout stderr avx.bin
;Testname=optimized;   Arguments=-Ox -fbin -oavx.bin; Files=stdout stderr avx.bin

		bits 64
		blendvpd	xmm2,xmm1,xmm0

		vblendvpd	xmm2,xmm1,xmm0,xmm0
		vblendvpd	xmm2,xmm1,xmm0
		vblendvpd	ymm2,ymm1,ymm0,ymm0
		vblendvpd	ymm2,ymm1,ymm0

		vcvtsi2sd	xmm9,xmm10,ecx
		vcvtsi2sd	xmm9,xmm10,rcx
		vcvtsi2sd	xmm9,xmm10,dword [rdi]
		vcvtsi2sd	xmm9,xmm10,qword [rdi]

		vpextrb		[rax],xmm1,0x33
		vpextrw		[rax],xmm1,0x33
		vpextrd		[rax],xmm1,0x33
		vpextrq		[rax],xmm1,0x33
		vpextrb		rax,xmm1,0x33
		vpextrw		rax,xmm1,0x33
		vpextrd		rax,xmm1,0x33
		vpextrq		rax,xmm1,0x33
		vpextrb		eax,xmm1,0x33
		vpextrw		eax,xmm1,0x33
		vpextrd		eax,xmm1,0x33
;		vpextrq		eax,xmm1,0x33

		vcvtpd2ps	xmm0,xmm1
		vcvtpd2ps	xmm0,oword [rsi]
		vcvtpd2ps	xmm0,ymm1
		vcvtpd2ps	xmm0,yword [rsi]
;		vcvtpd2ps	xmm0,[rsi]

		vcvtpd2dq	xmm0,xmm1
		vcvtpd2dq	xmm0,oword [rsi]
		vcvtpd2dq	xmm0,ymm1
		vcvtpd2dq	xmm0,yword [rsi]
;		vcvtpd2dq	xmm0,[rsi]

		vcvttpd2dq	xmm0,xmm1
		vcvttpd2dq	xmm0,oword [rsi]
		vcvttpd2dq	xmm0,ymm1
		vcvttpd2dq	xmm0,yword [rsi]
;		vcvttpd2dq	xmm0,[rsi]