Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for opstrr (0.23 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    		return OptionS<<10 | 0x3<<21 | 0x1f<<27 | 1<<26
    	}
    	c.ctxt.Diag("bad opldrr %v\n%v", a, p)
    	return 0
    }
    
    // opstrr returns the ARM64 opcode encoding corresponding to the obj.As opcode
    // for store instruction with register offset.
    // The offset register can be (Rn)(Rm.UXTW<<2) or (Rn)(Rm<<2) or (Rn)(Rm).
    func (c *ctxt7) opstrr(p *obj.Prog, a obj.As, extension bool) uint32 {
    	OptionS := uint32(0x1a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/mips/asm0.go

    		switch o.size {
    		case 12:
    			o1 = OP_IRR(c.opirr(ALUI), uint32((v+1<<15)>>16), REGZERO, REGTMP)
    			o2 = OP_RRR(c.oprrr(add), r, REGTMP, REGTMP)
    			o3 = OP_IRR(c.opirr(a), uint32(v), REGTMP, p.From.Reg)
    
    		case 4:
    			o1 = OP_IRR(c.opirr(a), uint32(v), r, p.From.Reg)
    		}
    
    	case 30: /* movw r,fr */
    		a := SP(2, 1) | (4 << 21) /* mtc1 */
    		o1 = OP_RRR(a, p.From.Reg, obj.REG_NONE, p.To.Reg)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/loong64/asm.go

    		a := OP_TEN(8, 1325) // movfr2gr.s
    		o1 = OP_RR(a, uint32(p.From.Reg), uint32(p.To.Reg))
    
    	case 32: // fadd fr1,[fr2],fr3
    		r := int(p.Reg)
    		if r == 0 {
    			r = int(p.To.Reg)
    		}
    		o1 = OP_RRR(c.oprrr(p.As), uint32(p.From.Reg), uint32(r), uint32(p.To.Reg))
    
    	case 33: // fabs fr1, fr3
    		o1 = OP_RRR(c.oprrr(p.As), uint32(0), uint32(p.From.Reg), uint32(p.To.Reg))
    
    	case 34: // mov $con,fr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  4. src/packaging/common/scripts/postrm

    Kaoru FUZITA <******@****.***> 1449710642 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 2.2K bytes
    - Viewed (0)
  5. src/regexp/syntax/simplify.go

    				nre = new(Regexp)
    				*nre = *re
    				nre.Rune = nil
    				nre.Sub = append(nre.Sub0[:0], re.Sub[:i]...)
    			}
    			if nre != re {
    				nre.Sub = append(nre.Sub, nsub)
    			}
    		}
    		return nre
    
    	case OpStar, OpPlus, OpQuest:
    		sub := re.Sub[0].Simplify()
    		return simplify1(re.Op, re.Flags, sub, re)
    
    	case OpRepeat:
    		// Special special case: x{0} matches the empty string
    		// and doesn't even need to consider x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 4.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/deadstore_test.go

    			Valu("store1", OpStore, types.TypeMem, 0, c.config.Types.Bool, "addr1", "v", "zero1"),
    			Valu("store2", OpStore, types.TypeMem, 0, c.config.Types.Bool, "addr2", "v", "store1"),
    			Valu("store3", OpStore, types.TypeMem, 0, c.config.Types.Bool, "addr1", "v", "store2"),
    			Valu("store4", OpStore, types.TypeMem, 0, c.config.Types.Bool, "addr3", "v", "store3"),
    			Goto("exit")),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. src/os/rawconn_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	var operr error
    	err = wconn.Write(func(s uintptr) bool {
    		_, operr = syscall.Write(syscallDescriptor(s), []byte{'b'})
    		return operr != syscall.EAGAIN
    	})
    	if err != nil {
    		t.Fatal(err)
    	}
    	if operr != nil {
    		t.Fatal(err)
    	}
    
    	var n int
    	buf := make([]byte, 1)
    	err = rconn.Read(func(s uintptr) bool {
    		n, operr = syscall.Read(syscallDescriptor(s), buf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewritedec.go

    		}
    		imag := v_1.Args[1]
    		real := v_1.Args[0]
    		mem := v_2
    		if !(t.Size() == 8) {
    			break
    		}
    		v.reset(OpStore)
    		v.Aux = typeToAux(typ.Float32)
    		v0 := b.NewValue0(v.Pos, OpOffPtr, typ.Float32Ptr)
    		v0.AuxInt = int64ToAuxInt(4)
    		v0.AddArg(dst)
    		v1 := b.NewValue0(v.Pos, OpStore, types.TypeMem)
    		v1.Aux = typeToAux(typ.Float32)
    		v1.AddArg3(dst, real, mem)
    		v.AddArg3(v0, imag, v1)
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/inst.go

    		buf.WriteString(arg.String())
    	}
    	return buf.String()
    }
    
    // An Op is an instruction operation.
    type Op uint16
    
    func (o Op) String() string {
    	if int(o) >= len(opstr) || opstr[o] == "" {
    		return fmt.Sprintf("Op(%d)", int(o))
    	}
    	return opstr[o]
    }
    
    // An Arg is a single instruction argument, one of these types: Reg, CondReg, SpReg, Imm, PCRel, Label, or Offset.
    type Arg interface {
    	IsArg()
    	String() string
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 03 01:35:44 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  10. pkg/url/url.go

    	// Operations related URLs for istio.io
    	// #####################################
    
    	// OpsURL is a base URL for operations related docs
    	OpsURL = fmt.Sprintf("%s%s", DocsURL, "ops/")
    
    	// DeploymentRequirements should generate
    	// https://istio.io/v1.7/docs/ops/deployment/requirements/
    	DeploymentRequirements = fmt.Sprintf("%s%s", OpsURL, "deployment/requirements/")
    
    	// ProtocolSelection should generate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 11:12:37 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top