Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for mcov (0.04 sec)

  1. src/cmd/compile/internal/test/inl_test.go

    		b, err = cmd.CombinedOutput()
    		if err != nil {
    			t.Fatalf("build failed (%v): %s", err, b)
    		}
    		mcov := collectInlCands(string(b))
    
    		// Make sure that there aren't any functions that are marked
    		// as inline candidates at base but not with coverage.
    		for k := range mbase {
    			if _, ok := mcov[k]; !ok {
    				t.Errorf("error: did not find %s in coverage -m output", k)
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // rotate by constants
    (ROLQ x (MOV(Q|L)const [c])) => (ROLQconst [int8(c&63)] x)
    (ROLL x (MOV(Q|L)const [c])) => (ROLLconst [int8(c&31)] x)
    (ROLW x (MOV(Q|L)const [c])) => (ROLWconst [int8(c&15)] x)
    (ROLB x (MOV(Q|L)const [c])) => (ROLBconst [int8(c&7) ] x)
    
    (RORQ x (MOV(Q|L)const [c])) => (ROLQconst [int8((-c)&63)] x)
    (RORL x (MOV(Q|L)const [c])) => (ROLLconst [int8((-c)&31)] x)
    (RORW x (MOV(Q|L)const [c])) => (ROLWconst [int8((-c)&15)] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/atomic_riscv64.s

    //      }
    TEXT ·Cas(SB), NOSPLIT, $0-17
    	MOV	ptr+0(FP), A0
    	MOVW	old+8(FP), A1
    	MOVW	new+12(FP), A2
    cas_again:
    	LRW	(A0), A3
    	BNE	A3, A1, cas_fail
    	SCW	A2, (A0), A4
    	BNE	A4, ZERO, cas_again
    	MOV	$1, A0
    	MOVB	A0, ret+16(FP)
    	RET
    cas_fail:
    	MOV	$0, A0
    	MOV	A0, ret+16(FP)
    	RET
    
    // func Cas64(ptr *uint64, old, new uint64) bool
    TEXT ·Cas64(SB), NOSPLIT, $0-25
    	MOV	ptr+0(FP), A0
    	MOV	old+8(FP), A1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. src/internal/runtime/syscall/asm_linux_riscv64.s

    // err | A2          | part of A0
    TEXT ·Syscall6<ABIInternal>(SB),NOSPLIT,$0-80
    	MOV	A0, A7
    	MOV	A1, A0
    	MOV	A2, A1
    	MOV	A3, A2
    	MOV	A4, A3
    	MOV	A5, A4
    	MOV	A6, A5
    	ECALL
    	MOV	$-4096, T0
    	BLTU	T0, A0, err
    	// r1 already in A0
    	// r2 already in A1
    	MOV	ZERO, A2 // errno
    	RET
    err:
    	SUB	A0, ZERO, A2 // errno
    	MOV	$-1, A0	     // r1
    	MOV	ZERO, A1     // r2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 21:28:32 UTC 2024
    - 969 bytes
    - Viewed (0)
  5. src/crypto/sha512/sha512block_riscv64.s

    	MOV	(0*8)(X20), X5
    	MOV	(1*8)(X20), X6
    	MOV	(2*8)(X20), X7
    	MOV	(3*8)(X20), X8
    	ADD	X5, X10		// H0 = a + H0
    	ADD	X6, X11		// H1 = b + H1
    	ADD	X7, X12		// H2 = c + H2
    	ADD	X8, X13		// H3 = d + H3
    	MOV	X10, (0*8)(X20)
    	MOV	X11, (1*8)(X20)
    	MOV	X12, (2*8)(X20)
    	MOV	X13, (3*8)(X20)
    	MOV	(4*8)(X20), X5
    	MOV	(5*8)(X20), X6
    	MOV	(6*8)(X20), X7
    	MOV	(7*8)(X20), X8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. test/codegen/memcombine.go

    	// ppc64le:`MOVD\s`,-`MOV[BHW]Z\s`
    	// ppc64:`MOVDBR\s`,-`MOV[BHW]Z\s`
    	return binary.LittleEndian.Uint64(b[idx:])
    }
    
    func load_le32(b []byte) uint32 {
    	// amd64:`MOVL\s\(.*\),`,-`MOV[BW]`,-`OR`
    	// 386:`MOVL\s\(.*\),`,-`MOV[BW]`,-`OR`
    	// s390x:`MOVWBR\s\(.*\),`
    	// arm64:`MOVWU\s\(R[0-9]+\),`,-`MOV[BH]`
    	// ppc64le:`MOVWZ\s`,-`MOV[BH]Z\s`
    	// ppc64:`MOVWBR\s`,-`MOV[BH]Z\s`
    	return binary.LittleEndian.Uint32(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/riscv64error.s

    	MOV	$1234, 8(SP)			// ERROR "constant load must target register"
    	MOV	$0, 0(SP)			// ERROR "constant load must target register"
    	MOV	$0, 8(SP)			// ERROR "constant load must target register"
    	MOV	$1234, 0(SP)			// ERROR "constant load must target register"
    	MOV	$1234, 8(SP)			// ERROR "constant load must target register"
    	MOVB	$1, X5				// ERROR "unsupported constant load"
    	MOVH	$1, X5				// ERROR "unsupported constant load"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOVHZreg y:(MOV(H|B)Zreg _)) => y // repeat
    (MOVHZreg y:(MOVHBRload _ _)) => y
    
    (MOVHreg y:(MOV(H|B)reg _)) => y // repeat
    
    (MOV(H|HZ)reg y:(MOV(HZ|H)reg x)) => (MOV(H|HZ)reg x)
    
    // W - there are more combinations than these
    
    (MOV(WZ|WZ|WZ|W|W|W)reg y:(MOV(WZ|HZ|BZ|W|H|B)reg _)) => y // repeat
    (MOVWZreg y:(MOV(H|W)BRload _ _)) => y
    
    (MOV(W|WZ)reg y:(MOV(WZ|W)reg x)) => (MOV(W|WZ)reg x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  9. src/cmd/covdata/covdata.go

    	// ... off and running now.
    	dbgtrace(1, "starting perform")
    
    	indirs := strings.Split(*indirsflag, ",")
    	vis := cov.CovDataVisitor(op)
    	var flags cov.CovDataReaderFlags
    	if *hflag {
    		flags |= cov.PanicOnError
    	}
    	if *hwflag {
    		flags |= cov.PanicOnWarning
    	}
    	reader := cov.MakeCovDataReader(vis, indirs, *verbflag, flags, matchpkg)
    	st := 0
    	if err := reader.Visit(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. src/internal/fuzz/coverage.go

    // source code to 0.
    func ResetCoverage() {
    	cov := coverage()
    	clear(cov)
    }
    
    // SnapshotCoverage copies the current counter values into coverageSnapshot,
    // preserving them for later inspection. SnapshotCoverage also rounds each
    // counter down to the nearest power of two. This lets the coordinator store
    // multiple values for each counter by OR'ing them together.
    func SnapshotCoverage() {
    	cov := coverage()
    	for i, b := range cov {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top