mirror of
				https://github.com/netwide-assembler/nasm.git
				synced 2025-10-10 00:25:06 -04:00 
			
		
		
		
	Reverted the redundant branch instruction patterns for bnd prefix. And when a relaxed jmp instruction becomes a short (Jb) form, bnd prefix is not needed because it does not initialize bnd registers. So in that case, bnd prefix is silently dropped. BND JMP foo -> drops bnd prefix BND JMP short foo -> shows an explicit error Signed-off-by: Jin Kyu Song <jin.kyu.song@intel.com>
		
			
				
	
	
		
			89 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			NASM
		
	
	
	
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			NASM
		
	
	
	
	
	
| ;Testname=mpx; Arguments=-felf -ompx.o -O0; Files=stdout stderr mpx.o
 | |
| BITS 32
 | |
| 
 | |
| 	bndmk bnd1, [eax]
 | |
| 	bndmk bnd1, [0x399]
 | |
| 	bndmk bnd1, [ecx+0x3]
 | |
| 	bndmk bnd1, [eax+ecx]
 | |
| 	bndmk bnd1, [ecx*1]
 | |
| 	bndmk bnd1, [edx+1*eax+0x3]
 | |
| 
 | |
| 	; bndmov
 | |
| 	bndmov bnd1, [eax]
 | |
| 	bndmov bnd1, [0x399]
 | |
| 	bndmov bnd1, [ecx+0x3]
 | |
| 	bndmov bnd1, [eax+ecx]
 | |
| 	bndmov bnd1, [ecx*1]
 | |
| 	bndmov bnd1, [edx+1*eax+0x3]
 | |
| 	bndmov bnd0, bnd1
 | |
| 
 | |
| 	bndmov [eax], bnd1
 | |
| 	bndmov [0x399], bnd1
 | |
| 	bndmov [ecx+0x3], bnd1
 | |
| 	bndmov [eax+ecx], bnd1
 | |
| 	bndmov [ecx*1], bnd1
 | |
| 	bndmov [edx+1*eax+0x3], bnd1
 | |
| 	bndmov bnd1, bnd0
 | |
| 
 | |
| 	; bndcl
 | |
| 	bndcl bnd1, [eax]
 | |
| 	bndcl bnd1, ecx
 | |
| 	bndcl bnd1, [0x399]
 | |
| 	bndcl bnd1, [ecx+0x3]
 | |
| 	bndcl bnd1, [eax+ecx]
 | |
| 	bndcl bnd1, [ecx*1]
 | |
| 	bndcl bnd1, [edx+1*eax+0x3]
 | |
| 
 | |
| 	; bndcu
 | |
| 	bndcu bnd1, [eax]
 | |
| 	bndcu bnd1, ecx
 | |
| 	bndcu bnd1, [0x399]
 | |
| 	bndcu bnd1, [ecx+0x3]
 | |
| 	bndcu bnd1, [eax+ecx]
 | |
| 	bndcu bnd1, [ecx*1]
 | |
| 	bndcu bnd1, [edx+1*eax+0x3]
 | |
| 
 | |
| 	; bndcn
 | |
| 	bndcn bnd1, [eax]
 | |
| 	bndcn bnd1, ecx
 | |
| 	bndcn bnd1, [0x399]
 | |
| 	bndcn bnd1, [ecx+0x3]
 | |
| 	bndcn bnd1, [eax+ecx]
 | |
| 	bndcn bnd1, [ecx*1]
 | |
| 	bndcn bnd1, [edx+1*eax+0x3]
 | |
| 
 | |
| 	; bndstx
 | |
| 	bndstx [eax+ebx*1+0x3], bnd0
 | |
| 	bndstx [eax+0x3,ebx], bnd0
 | |
| 	bndstx [eax+0x3], bnd0, ebx
 | |
| 	bndstx [eax+0x3], ebx, bnd0
 | |
| 	bndstx [ecx*1], bnd2
 | |
| 	bndstx [,ecx*1], bnd2
 | |
| 	bndstx [0,ecx*1], bnd2
 | |
| 	bndstx [0], bnd2, ecx
 | |
| 	bndstx [0], ecx, bnd2
 | |
| 	bndstx [edx+0x399], bnd3
 | |
| 	bndstx [1*ebx+3], bnd2
 | |
| 	bndstx [3,1*ebx], bnd2
 | |
| 	bndstx [3], ebx, bnd2
 | |
| 	bndstx [edx], bnd1
 | |
| 
 | |
| 	; bndldx
 | |
| 	bndldx bnd0, [eax+ebx*1+0x3]
 | |
| 	bndldx bnd2, [ebx+edx+3]
 | |
| 	bndldx bnd2, [ecx*1]
 | |
| 	bndldx bnd3, [edx+0x399]
 | |
| 	bndldx bnd2, [1*ebx+3]
 | |
| 	bndldx bnd1, [edx]
 | |
| 
 | |
| 	; bnd
 | |
| 	bnd ret
 | |
| 	bnd call      foo
 | |
| 	bnd jmp       foo	; when it becomes a Jb form - short jmp (eb),
 | |
| 				; bnd prefix is silently dropped
 | |
| 	bnd jmp       near 0	; near jmp (opcode e9)
 | |
| ;	bnd jmp       short 0	; explicit short jmp (opcode eb) : error
 | |
| 	bnd jno       foo
 | |
| 
 | |
| foo:	bnd ret
 |