Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for vwOneIter (0.53 sec)

  1. src/math/big/arith_arm64.s

    	SUB	$1, counter;				\
    	CBZ	counter, target;			\
    	vwOneOp(instr2, $0);				\
    	SUB	$1, counter;				\
    	CBZ	counter, target;			\
    	vwOneOp(instr2, $0);
    
    // do one iteration of add or sub in addVW/subVW
    #define vwOneIter(instr, counter, exit)	\
    	CBZ	counter, exit;		\	// careful not to touch the carry flag
    	LDP.P	32(R1), (R4, R5);	\
    	LDP	-16(R1), (R6, R7);	\
    	instr	$0, R4, R8;		\
    	instr	$0, R5, R9;		\
    	instr	$0, R6, R10;		\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top