Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for vsr (0.29 sec)

  1. src/cmd/internal/obj/ppc64/anames.go

    	"VPMSUMW",
    	"VPMSUMD",
    	"VMSUMUDM",
    	"VR",
    	"VRLB",
    	"VRLH",
    	"VRLW",
    	"VRLD",
    	"VS",
    	"VSLB",
    	"VSLH",
    	"VSLW",
    	"VSL",
    	"VSLO",
    	"VSRB",
    	"VSRH",
    	"VSRW",
    	"VSR",
    	"VSRO",
    	"VSLD",
    	"VSRD",
    	"VSA",
    	"VSRAB",
    	"VSRAH",
    	"VSRAW",
    	"VSRAD",
    	"VSOI",
    	"VSLDOI",
    	"VCLZ",
    	"VCLZB",
    	"VCLZH",
    	"VCLZW",
    	"VCLZD",
    	"VPOPCNT",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/internal/bytealg/equal_ppc64x.s

    	CMP	R5, $16		// Use GPR checks for check for len <= 16
    	BLE	check0_16
    	MOVD	$0, R3		// Assume no-match in case BGELR CR6 returns
    	CMP	R5, $32		// Use overlapping VSX loads for len <= 32
    	BLE	check17_32	// Do a pair of overlapping VSR compares
    	CMP	R5, $64
    	BLE	check33_64	// Hybrid check + overlap compare.
    
    setup64:
    	SRD	$6, R5, R6	// number of 64 byte chunks to compare
    	MOVD	R6, CTR
    	MOVD	$16, R14	// index for VSX loads and stores
    	MOVD	$32, R15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. src/internal/bytealg/indexbyte_ppc64x.s

    	LXVD2X	(R0)(R9),V2
    	VCMPEQUBCC	V2,V1,V6
    	BNE	CR6,foundat0		// Match found at R8+48 bytes, jump out
    
    	BR	notfound
    
    
    cmp8:	// Length 8 - 15
    #ifdef GOPPC64_power10
    	// Load all the bytes into a single VSR in BE order.
    	SLD	$56,R4,R5
    	LXVLL	R3,R5,V2
    	// Compare and count the number which don't match.
    	VCMPEQUB	V2,V1,V6
    	VCLZLSBB	V6,R3
    	// If count is the number of bytes, or more. No matches are found.
    	CMPU	R3,R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:10:29 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top