Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	// MOV <Wd|WSP>, <Wn|WSP>
    	{0xfffffc00, 0x11000000, MOV, instArgs{arg_Wds, arg_Wns}, mov_add_32_addsub_imm_cond},
    	// ADD <Wd|WSP>, <Wn|WSP>, #<imm>{, <shift>}
    	{0xff000000, 0x11000000, ADD, instArgs{arg_Wds, arg_Wns, arg_IAddSub}, nil},
    	// MOV <Xd|SP>, <Xn|SP>
    	{0xfffffc00, 0x91000000, MOV, instArgs{arg_Xds, arg_Xns}, mov_add_64_addsub_imm_cond},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"MOV (inverted wide immediate)","Bits":"0|0|0|1|0|0|1|0|1|hw:2|imm16:16|Rd:5","Arch":"32-bit variant","Syntax":"MOV <Wd>, #<imm>","Code":"","Alias":"This instruction is an alias of the MOVN instruction."},
    {"Name":"MOV (inverted wide immediate)","Bits":"1|0|0|1|0|0|1|0|1|hw:2|imm16:16|Rd:5","Arch":"64-bit variant","Syntax":"MOV <Xd>, #<imm>","Code":"","Alias":"This instruction is an alias of the MOVN instruction."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/internal/obj/x86/asm6.go

    			//     MOV off(CX)(TLS*1), AX
    			// becomes
    			//     mov %gs:off(%ecx), %eax // on i386
    			//     mov %fs:off(%rcx), %rax // on amd64
    			// which assumes that the correct TLS offset has been loaded into CX (today
    			// there is only one TLS variable -- g -- so this is OK). When not building for
    			// a shared library the instruction it becomes
    			//     mov 0x0(%ecx), %eax // on i386
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "CMOVWCS", argLength: 3, reg: gp21, asm: "CMOVWCS", resultInArg0: true},
    
    		// CMOV with floating point instructions. We need separate pseudo-op to handle
    		// InvertFlags correctly, and to generate special code that handles NaN (unordered flag).
    		// NOTE: the fact that CMOV*EQF here is marked to generate CMOV*NE is not a bug. See
    		// code generation in amd64/ssa.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  7. src/cmd/internal/obj/s390x/asmz.go

    	// So we use regtmp(p) for REGTMP.
    
    	switch o.i {
    	default:
    		c.ctxt.Diag("unknown index %d", o.i)
    
    	case 0: // PSEUDO OPS
    		break
    
    	case 1: // mov reg reg
    		switch p.As {
    		default:
    			c.ctxt.Diag("unhandled operation: %v", p.As)
    		case AMOVD:
    			zRRE(op_LGR, uint32(p.To.Reg), uint32(p.From.Reg), asm)
    		// sign extend
    		case AMOVW:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (GreaterEqualNoov (InvertFlags x)) => (CSINC [OpARM64NotEqual] (LessThanNoov <typ.Bool> x) (MOVDconst [0]) x)
    
    // Don't bother extending if we're not using the higher bits.
    (MOV(B|BU)reg x) && v.Type.Size() <= 1 => x
    (MOV(H|HU)reg x) && v.Type.Size() <= 2 => x
    (MOV(W|WU)reg x) && v.Type.Size() <= 4 => x
    
    // omit sign extension
    (MOVWreg <t> (ANDconst x [c])) && uint64(c) & uint64(0xffffffff80000000) == 0 => (ANDconst <t> x [c])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

      fi
    
      local kubelet_opts="${KUBELET_ARGS} ${KUBELET_CONFIG_FILE_ARG:-} ${kubelet_cgroup_driver:-}"
      echo "KUBELET_OPTS=\"${kubelet_opts}\"" > "${kubelet_env_file}"
      echo "KUBE_COVERAGE_FILE=\"/var/log/kubelet.cov\"" >> "${kubelet_env_file}"
    
      # Write the systemd service file for kubelet.
      cat <<EOF >/etc/systemd/system/kubelet.service
    [Unit]
    Description=Kubernetes kubelet
    Requires=network-online.target
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Action graph execution.
    
    package work
    
    import (
    	"bytes"
    	"cmd/internal/cov/covcmd"
    	"context"
    	"crypto/sha256"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"go/token"
    	"internal/lazyregexp"
    	"io"
    	"io/fs"
    	"log"
    	"math/rand"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top