Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for mcov (0.11 sec)

  1. 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)
  2. 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)
  3. cluster/log-dump/log-dump.sh

              run-in-docker-container "${node_name}" "kube-controller-manager" "cat /tmp/k8s-kube-controller-manager.cov" > "${dir}/kube-controller-manager.cov" || true
            else
              run-in-docker-container "${node_name}" "kube-proxy" "cat /tmp/k8s-kube-proxy.cov" > "${dir}/kube-proxy.cov" || true
            fi
          else
            echo 'Coverage profiles seem to exist, but cannot be retrieved from inside containers.'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/loong64/asm.go

    		default:
    			c.ctxt.Diag("unexpected branch encoding\n%v", p)
    		}
    
    	case 7: // mov r, soreg
    		r := int(p.To.Reg)
    		if r == 0 {
    			r = int(o.param)
    		}
    		v := c.regoff(&p.To)
    		o1 = OP_12IRR(c.opirr(p.As), uint32(v), uint32(r), uint32(p.From.Reg))
    
    	case 8: // mov soreg, r
    		r := int(p.From.Reg)
    		if r == 0 {
    			r = int(o.param)
    		}
    		v := c.regoff(&p.From)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  5. test/codegen/shift.go

    	return v >> uint64(33)
    }
    
    func rshConst64Ux64Overflow32(v uint32) uint64 {
    	// riscv64:"MOV\t\\$0,",-"SRL"
    	return uint64(v) >> 32
    }
    
    func rshConst64Ux64Overflow16(v uint16) uint64 {
    	// riscv64:"MOV\t\\$0,",-"SRL"
    	return uint64(v) >> 16
    }
    
    func rshConst64Ux64Overflow8(v uint8) uint64 {
    	// riscv64:"MOV\t\\$0,",-"SRL"
    	return uint64(v) >> 8
    }
    
    func rshConst64x64(v int64) int64 {
    	// ppc64x:"SRAD"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/internal/coverage/cformat/format.go

    	pkgs := make([]string, 0, len(fm.pm))
    	for importpath := range fm.pm {
    		pkgs = append(pkgs, importpath)
    	}
    
    	rep := func(cov, tot uint64) error {
    		if tot != 0 {
    			if _, err := fmt.Fprintf(w, "coverage: %.1f%% of statements%s\n",
    				100.0*float64(cov)/float64(tot), covpkgs); err != nil {
    				return err
    			}
    		} else if noteEmpty {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. src/internal/coverage/cfile/ts_test.go

    	strc := string(contents)
    	if err != nil {
    		t.Fatalf("problems reading text file %s: %v", textfile, err)
    	}
    	if !strings.Contains(strc, token) {
    		t.Logf("content: %s\n", string(contents))
    		t.Fatalf("cov profile does not contain aux meta content %q", token)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. src/runtime/syscall_windows.go

    // On ARM, runtime.callbackasm is a series of mov and branch instructions.
    // R12 is loaded with the callback index. Each entry is two instructions,
    // hence 8 bytes.
    func callbackasmAddr(i int) uintptr {
    	var entrySize int
    	switch GOARCH {
    	default:
    		panic("unsupported architecture")
    	case "386", "amd64":
    		entrySize = 5
    	case "arm", "arm64":
    		// On ARM and ARM64, each entry is a MOV instruction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm9.go

    				v &^= 03
    			}
    
    			rel.Add = int64(v)
    			rel.Type = objabi.R_CALLPOWER
    		}
    		o2 = NOP // nop, sometimes overwritten by ld r2, 24(r1) when dynamic linking
    
    	case 13: /* mov[bhwd]{z,} r,r */
    		// This needs to handle "MOV* $0, Rx".  This shows up because $0 also
    		// matches C_REG if r0iszero. This happens because C_REG sorts before C_U16CON
    		// TODO: fix the above behavior and cleanup this exception.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm7.go

    		if p.As == AMVN || p.As == AMVNW || isNEGop(p.As) {
    			r = REGZERO
    		} else if r == obj.REG_NONE {
    			r = rt
    		}
    		o1 |= (uint32(r&31) << 5) | uint32(rt&31)
    
    	case 4: /* mov $addcon, R; mov $recon, R; mov $racon, R; mov $addcon2, R */
    		rt, r := p.To.Reg, o.param
    		if r == obj.REG_NONE {
    			r = REGZERO
    		} else if r == REGFROM {
    			r = p.From.Reg
    		}
    		if r == obj.REG_NONE {
    			r = REGSP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top