Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for v4 (0.09 sec)

  1. src/cmd/compile/internal/ssa/rewritedec64.go

    		v4 := b.NewValue0(v.Pos, OpAdd32carry, types.NewTuple(typ.UInt32, types.TypeFlags))
    		v5 := b.NewValue0(v.Pos, OpInt64Lo, typ.UInt32)
    		v5.AddArg(x)
    		v6 := b.NewValue0(v.Pos, OpInt64Lo, typ.UInt32)
    		v6.AddArg(y)
    		v4.AddArg2(v5, v6)
    		v3.AddArg(v4)
    		v0.AddArg3(v1, v2, v3)
    		v7 := b.NewValue0(v.Pos, OpSelect0, typ.UInt32)
    		v7.AddArg(v4)
    		v.AddArg2(v0, v7)
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_test.go

    	m()
    }
    
    type V0 struct{}
    func (V0) m() {}
    
    type V1 struct{}
    
    type V2 struct{}
    func (V2) m() int
    
    type V3 struct{}
    func (*V3) m()
    
    type V4 struct{}
    func (V4) M()
    `
    
    	pkg := mustTypecheck(src, nil, nil)
    
    	T := pkg.Scope().Lookup("T").Type().Underlying().(*Interface)
    	lookup := func(name string) (*Func, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    //
    //	b1:
    //	  v4 = ArgIntReg <uintptr> {s+8} [0] : BX
    //	  v5 = ArgIntReg <int> {used} [0] : CX
    //
    // While this is an accurate picture of the live incoming params,
    // we also want to have debug locations for non-live params (or
    // their non-live pieces), e.g. something like
    //
    //	b1:
    //	  v9 = ArgIntReg <*uint8> {s+0} [0] : AX
    //	  v4 = ArgIntReg <uintptr> {s+8} [0] : BX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/prove.go

    				//
    				// For example, for an OpPhi:
    				//
    				// v1 = OpConst64 [13]
    				// v2 = OpConst64 [7]
    				// v3 = OpConst64 [42]
    				//
    				// v4 = OpPhi(v1, v2, v3)
    				//
    				// We can prove:
    				//
    				// v4 >= 7 && v4 <= 42
    				//
    				// TODO(jake-ciolek): Handle nested constant OpPhi's
    				sameConstOp := true
    				min := 0
    				max := 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    			// address of a local variable from being forced to schedule
    			// before its corresponding VarDef.
    			// See issue 28445.
    			//   v1 = LOAD ...
    			//   v2 = VARDEF
    			//   v3 = LEAQ
    			//   v4 = CMPQ v1 v3
    			// We don't want to combine the CMPQ with the load, because
    			// that would force the CMPQ to schedule before the VARDEF, which
    			// in turn requires the LEAQ to schedule before the VARDEF.
    			return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top