Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for Selects (1.45 sec)

  1. src/cmd/go/alldocs.go

    //	-pgo file
    //		specify the file path of a profile for profile-guided optimization (PGO).
    //		When the special name "auto" is specified, for each main package in the
    //		build, the go command selects a file named "default.pgo" in the package's
    //		directory if that file exists, and applies it to the (transitive)
    //		dependencies of the main package (other packages are not affected).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// Prefetch instructions
    		// Do prefetch arg0 address. arg0=addr, arg1=memory. Instruction variant selects locality hint
    		{name: "PrefetchT0", argLength: 2, reg: prefreg, asm: "PREFETCHT0", hasSideEffects: true},
    		{name: "PrefetchNTA", argLength: 2, reg: prefreg, asm: "PREFETCHNTA", hasSideEffects: true},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		v.AddArg2(v0, v1)
    		return true
    	}
    }
    func rewriteValueMIPS64_OpSelect0(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Select0 (Mul64uover x y))
    	// result: (Select1 <typ.UInt64> (MULVU x y))
    	for {
    		if v_0.Op != OpMul64uover {
    			break
    		}
    		y := v_0.Args[1]
    		x := v_0.Args[0]
    		v.reset(OpSelect1)
    		v.Type = typ.UInt64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    		(STP [16] dst (Select0 <typ.UInt64> (LDP [16] src mem)) (Select1 <typ.UInt64> (LDP [16] src mem))
    			(STP dst (Select0 <typ.UInt64> (LDP src mem)) (Select1 <typ.UInt64> (LDP src mem)) mem)))
    (Move [64] dst src mem) =>
    	(STP [48] dst (Select0 <typ.UInt64> (LDP [48] src mem)) (Select1 <typ.UInt64> (LDP [48] src mem))
    		(STP [32] dst (Select0 <typ.UInt64> (LDP [32] src mem)) (Select1 <typ.UInt64> (LDP [32] src mem))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/generic.rules

    (SelectN [0] (MakeResult x ___)) => x
    (SelectN [1] (MakeResult x y ___)) => y
    (SelectN [2] (MakeResult x y z ___)) => z
    
    // for late-expanded calls, recognize newobject and remove zeroing and nilchecks
    (Zero (SelectN [0] call:(StaticLECall _ _)) mem:(SelectN [1] call))
    	&& isSameCall(call.Aux, "runtime.newobject")
    	=> mem
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteMIPS.go

    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Select0 (Add32carry <t> x y))
    	// result: (ADD <t.FieldType(0)> x y)
    	for {
    		if v_0.Op != OpAdd32carry {
    			break
    		}
    		t := v_0.Type
    		y := v_0.Args[1]
    		x := v_0.Args[0]
    		v.reset(OpMIPSADD)
    		v.Type = t.FieldType(0)
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (Select0 (Sub32carry <t> x y))
    	// result: (SUB <t.FieldType(0)> x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  7. src/main/webapp/css/bootstrap.min.css

    tch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 0%;flex:1 1 0%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Dec 25 08:05:52 UTC 2019
    - 155.8K bytes
    - Viewed (0)
  8. src/main/webapp/css/admin/bootstrap.min.css

    tch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 0%;flex:1 1 0%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 155.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		return true
    	}
    	// match: (MOVBUreg x:(Select0 (LoweredAtomicLoad8 _ _)))
    	// result: (MOVDreg x)
    	for {
    		x := v_0
    		if x.Op != OpSelect0 {
    			break
    		}
    		x_0 := x.Args[0]
    		if x_0.Op != OpRISCV64LoweredAtomicLoad8 {
    			break
    		}
    		v.reset(OpRISCV64MOVDreg)
    		v.AddArg(x)
    		return true
    	}
    	// match: (MOVBUreg x:(Select0 (LoweredAtomicCas32 _ _ _ _)))
    	// result: (MOVDreg x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (Select0 (Mul64uhilo x y))
    	// result: (MULHVU x y)
    	for {
    		if v_0.Op != OpMul64uhilo {
    			break
    		}
    		y := v_0.Args[1]
    		x := v_0.Args[0]
    		v.reset(OpLOONG64MULHVU)
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (Select0 (Mul64uover x y))
    	// result: (MULV x y)
    	for {
    		if v_0.Op != OpMul64uover {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
Back to top