Lines Matching refs:strict

3 ;jmp strict near foo
5 ;jmp strict short foo
9 ;jz strict near foo
11 ;jz strict short foo
18 add eax, strict 4 ; NASM generates dword, yasm generates byte
20 add eax, strict byte 4
22 add eax, strict dword 4
24 add eax, strict 400
26 add eax, strict byte 400 ; generates warning
28 add eax, strict dword 400
31 add ebx, strict 4 ; NASM generates dword, yasm generates byte
33 add ebx, strict byte 4
35 add ebx, strict dword 4
37 add ebx, strict 400
39 add ebx, strict byte 400 ; generates warning
41 add ebx, strict dword 400
44 add [eax], strict byte 4 ; same as byte [eax], 4
46 add [eax], strict dword 4 ; generates dword [eax], dword 4
49 add dword [eax], strict 4 ; NASM generates dword, yasm generates byte
51 add dword [eax], strict byte 4
53 add dword [eax], strict dword 4
55 add dword [eax], strict 400
57 add dword [eax], strict byte 400; generates warning
59 add dword [eax], strict dword 400
62 push strict 4 ; NASM generates dword, yasm generates byte
64 push strict byte 4
66 push strict dword 4
68 push strict 400
70 push strict byte 400 ; generates warning
72 push strict dword 400
75 imul eax, strict 4 ; NASM generates dword, yasm generates byte
77 imul eax, strict byte 4
79 imul eax, strict dword 4
81 imul eax, strict 400
83 imul eax, strict byte 400 ; generates warning
85 imul eax, strict dword 400
90 add rax, strict 4 ; NASM generates dword, yasm generates byte
92 add rax, strict byte 4
94 add rax, strict dword 4
96 add rax, strict 400
98 add rax, strict byte 400 ; generates warning
100 add rax, strict dword 400
103 add rbx, strict 4 ; NASM generates dword, yasm generates byte
105 add rbx, strict byte 4
107 add rbx, strict dword 4
109 add rbx, strict 400
111 add rbx, strict byte 400 ; generates warning
113 add rbx, strict dword 400
116 add [rax], strict byte 4 ; same as byte [rax], 4
118 add [rax], strict word 4 ; same as word [rax], strict word 4
121 add dword [rax], strict 4
123 add dword [rax], strict byte 4
125 add dword [rax], strict dword 4
127 add dword [rax], strict 400
129 add dword [rax], strict byte 400; generates warning
131 add dword [rax], strict dword 400
134 add qword [rax], strict 4
136 add qword [rax], strict byte 4
138 add qword [rax], strict dword 4
140 add qword [rax], strict 400
142 add qword [rax], strict byte 400; generates warning
144 add qword [rax], strict dword 400
147 push strict 4 ; NASM generates dword, yasm generates byte
149 push strict byte 4
151 push strict dword 4
153 ;push strict qword 4 ; illegal
155 push strict 400
157 push strict byte 400 ; generates warning
159 push strict dword 400
161 ;push strict qword 400 ; illegal