Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BL (0.27 sec)

  1. src/cmd/asm/internal/asm/testdata/arm.s

    	BL	-5(PC) // CALL -5(PC)      // f9ffffeb
    	BL	jmp_label_2 // CALL        // 010000eb
    	BL	jmp_label_2 // CALL        // 000000eb
    	BL	jmp_label_2 // CALL        // ffffffeb
    jmp_label_2:
    	ADD	$0, R0, R0
    	BL.EQ	jmp_label_2 // CALL.EQ 560 // fdffff0b
    	BL.NE	jmp_label_2 // CALL.NE 560 // fcffff1b
    	BL.CS	jmp_label_2 // CALL.CS 560 // fbffff2b
    	BL.CC	jmp_label_2 // CALL.CC 560 // faffff3b
    	BL.MI	jmp_label_2 // CALL.MI 560 // f9ffff4b
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64.s

    	CASPD	(R2, R3), (R2), (R8, R9)             // 487c2248
    
    // RET
    	RET
    	RET	foo(SB)
    
    // B/BL/B.cond cases, and canonical names JMP, CALL.
    	BL	1(PC)      // CALL 1(PC)
    	BL	(R2)       // CALL (R2)
    	BL	foo(SB)    // CALL foo(SB)
    	BL	bar<>(SB)  // CALL bar<>(SB)
    	B	foo(SB)    // JMP foo(SB)
    	BEQ	1(PC)
    	BEQ	2(PC)
    	TBZ	$1, R1, 2(PC)
    	TBNZ	$2, R2, 2(PC)
    	JMP	foo(SB)
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
Back to top