Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for cmpbody (0.38 sec)

  1. src/internal/bytealg/compare_s390x.s

    	MOVD	b_len+32(FP), R6
    	LA	ret+48(FP), R7
    	BR	cmpbody<>(SB)
    
    TEXT runtime·cmpstring(SB),NOSPLIT|NOFRAME,$0-40
    	MOVD	a_base+0(FP), R3
    	MOVD	a_len+8(FP), R4
    	MOVD	b_base+16(FP), R5
    	MOVD	b_len+24(FP), R6
    	LA	ret+32(FP), R7
    	BR	cmpbody<>(SB)
    
    // input:
    //   R3 = a
    //   R4 = alen
    //   R5 = b
    //   R6 = blen
    //   R7 = address of output word (stores -1/0/1 here)
    TEXT cmpbody<>(SB),NOSPLIT|NOFRAME,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  2. src/internal/bytealg/compare_loong64.s

    	MOVV	R7, R6
    	MOVV	R8, R7
    	JMP	cmpbody<>(SB)
    
    TEXT runtime·cmpstring<ABIInternal>(SB),NOSPLIT,$0-40
    	// R4 = a_base
    	// R5 = a_len
    	// R6 = b_base
    	// R7 = b_len
    	JMP	cmpbody<>(SB)
    
    // On entry:
    // R5 length of a
    // R7 length of b
    // R4 points to the start of a
    // R6 points to the start of b
    // R13 points to the return value (-1/0/1)
    TEXT cmpbody<>(SB),NOSPLIT|NOFRAME,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. src/internal/bytealg/compare_wasm.s

    	I64Load b_base+24(FP)
    	I64Load b_len+32(FP)
    	Call cmpbody<>(SB)
    	I64Store ret+48(FP)
    	RET
    
    TEXT runtime·cmpstring(SB), NOSPLIT, $0-40
    	Get SP
    	I64Load a_base+0(FP)
    	I64Load a_len+8(FP)
    	I64Load b_base+16(FP)
    	I64Load b_len+24(FP)
    	Call cmpbody<>(SB)
    	I64Store ret+32(FP)
    	RET
    
    // params: a, alen, b, blen
    // ret: -1/0/1
    TEXT cmpbody<>(SB), NOSPLIT, $0-0
    	// len = min(alen, blen)
    	Get R1
    	Get R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 11 04:00:35 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  4. src/internal/bytealg/compare_386.s

    	MOVL	b_len+16(FP), DX
    	LEAL	ret+24(FP), AX
    	JMP	cmpbody<>(SB)
    
    TEXT runtime·cmpstring(SB),NOSPLIT,$0-20
    	MOVL	a_base+0(FP), SI
    	MOVL	a_len+4(FP), BX
    	MOVL	b_base+8(FP), DI
    	MOVL	b_len+12(FP), DX
    	LEAL	ret+16(FP), AX
    	JMP	cmpbody<>(SB)
    
    // input:
    //   SI = a
    //   DI = b
    //   BX = alen
    //   DX = blen
    //   AX = address of return word (set to 1/0/-1)
    TEXT cmpbody<>(SB),NOSPLIT,$0-0
    	MOVL	DX, BP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 23 21:22:58 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  5. src/internal/bytealg/compare_mips64x.s

    	MOVV	a_base+0(FP), R3
    	MOVV	b_base+24(FP), R4
    	MOVV	a_len+8(FP), R1
    	MOVV	b_len+32(FP), R2
    	MOVV	$ret+48(FP), R9
    	JMP	cmpbody<>(SB)
    
    TEXT runtime·cmpstring(SB),NOSPLIT,$0-40
    	MOVV	a_base+0(FP), R3
    	MOVV	b_base+16(FP), R4
    	MOVV	a_len+8(FP), R1
    	MOVV	b_len+24(FP), R2
    	MOVV	$ret+32(FP), R9
    	JMP	cmpbody<>(SB)
    
    // On entry:
    // R1 length of a
    // R2 length of b
    // R3 points to the start of a
    // R4 points to the start of b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. src/internal/bytealg/compare_arm.s

    	MOVW	a_base+0(FP), R2
    	MOVW	a_len+4(FP), R0
    	MOVW	b_base+12(FP), R3
    	MOVW	b_len+16(FP), R1
    	ADD	$28, R13, R7
    	B	cmpbody<>(SB)
    
    TEXT runtime·cmpstring(SB),NOSPLIT|NOFRAME,$0-20
    	MOVW	a_base+0(FP), R2
    	MOVW	a_len+4(FP), R0
    	MOVW	b_base+8(FP), R3
    	MOVW	b_len+12(FP), R1
    	ADD	$20, R13, R7
    	B	cmpbody<>(SB)
    
    // On entry:
    // R0 is the length of a
    // R1 is the length of b
    // R2 points to the start of a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 16:09:38 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  7. src/internal/bytealg/compare_arm64.s

    	// R2 = a_cap  (unused)
    	// R3 = b_base (want in R2)
    	// R4 = b_len  (want in R3)
    	// R5 = b_cap  (unused)
    	MOVD	R3, R2
    	MOVD	R4, R3
    	B	cmpbody<>(SB)
    
    TEXT runtime·cmpstring<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-40
    	// R0 = a_base
    	// R1 = a_len
    	// R2 = b_base
    	// R3 = b_len
    	B	cmpbody<>(SB)
    
    // On entry:
    // R0 points to the start of a
    // R1 is the length of a
    // R2 points to the start of b
    // R3 is the length of b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  8. src/internal/bytealg/compare_amd64.s

    	// SI = b_len  (want in DX)
    	// R8 = b_cap  (unused)
    	MOVQ	SI, DX
    	MOVQ	AX, SI
    	JMP	cmpbody<>(SB)
    
    TEXT runtime·cmpstring<ABIInternal>(SB),NOSPLIT,$0-40
    	// AX = a_base (want in SI)
    	// BX = a_len  (want in BX)
    	// CX = b_base (want in DI)
    	// DI = b_len  (want in DX)
    	MOVQ	AX, SI
    	MOVQ	DI, DX
    	MOVQ	CX, DI
    	JMP	cmpbody<>(SB)
    
    // input:
    //   SI = a
    //   DI = b
    //   BX = alen
    //   DX = blen
    // output:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 17:17:01 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  9. src/internal/bytealg/compare_ppc64x.s

    	// R3 a addr
    	// R4 a len
    	// R6 b addr
    	// R7 b len
    	//
    	// on entry to cmpbody:
    	// R3 return value if len(a) == len(b)
    	// R5 a addr
    	// R6 b addr
    	// R9 min(len(a),len(b))
    	SETB_INIT()
    	MOVD	R3,R5
    	CMP	R4,R7,CR0
    	CMP	R3,R6,CR7
    	ISEL	CR0LT,R4,R7,R9
    	SETB_CR0(R3)
    	BC	$12,30,LR	// beqlr cr7
    	BR	cmpbody<>(SB)
    
    TEXT runtime·cmpstring<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-40
    	// incoming:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:33:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/wasm/wasmobj.go

    	"runtime.gcWriteBarrier6": true,
    	"runtime.gcWriteBarrier7": true,
    	"runtime.gcWriteBarrier8": true,
    	"runtime.wasmDiv":         true,
    	"runtime.wasmTruncS":      true,
    	"runtime.wasmTruncU":      true,
    	"cmpbody":                 true,
    	"memeqbody":               true,
    	"memcmp":                  true,
    	"memchr":                  true,
    }
    
    func assemble(ctxt *obj.Link, s *obj.LSym, newprog obj.ProgAlloc) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
Back to top