Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Xadd64 (0.15 sec)

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

    					continue
    				}
    				v.reset(OpAdd64)
    				v.AddArg2(y, z)
    				return true
    			}
    		}
    		break
    	}
    	// match: (Add64 (Add64 i:(Const64 <t>) z) x)
    	// cond: (z.Op != OpConst64 && x.Op != OpConst64)
    	// result: (Add64 i (Add64 <t> z x))
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpAdd64 {
    				continue
    			}
    			_ = v_0.Args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  2. api/go1.20.txt

    pkg syscall (freebsd-amd64), const SYS_FSTAT = 551 #53280
    pkg syscall (freebsd-amd64), const SYS_FSTATAT = 552 #53280
    pkg syscall (freebsd-amd64), const SYS_FSTATFS = 556 #53280
    pkg syscall (freebsd-amd64), const SYS_GETDIRENTRIES = 554 #53280
    pkg syscall (freebsd-amd64), const SYS_GETFSSTAT = 557 #53280
    pkg syscall (freebsd-amd64), const SYS_MKNODAT = 559 #53280
    pkg syscall (freebsd-amd64), const SYS_STATFS = 555 #53280
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (0)
  3. api/go1.14.txt

    pkg syscall (windows-386), const CTRL_SHUTDOWN_EVENT ideal-int
    pkg syscall (windows-amd64), const CTRL_CLOSE_EVENT = 2
    pkg syscall (windows-amd64), const CTRL_CLOSE_EVENT ideal-int
    pkg syscall (windows-amd64), const CTRL_LOGOFF_EVENT = 5
    pkg syscall (windows-amd64), const CTRL_LOGOFF_EVENT ideal-int
    pkg syscall (windows-amd64), const CTRL_SHUTDOWN_EVENT = 6
    pkg syscall (windows-amd64), const CTRL_SHUTDOWN_EVENT ideal-int
    pkg testing, method (*B) Cleanup(func())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ToNegativeInf", Const, 5},
    		{"ToPositiveInf", Const, 5},
    		{"ToZero", Const, 5},
    		{"Word", Type, 0},
    	},
    	"math/bits": {
    		{"Add", Func, 12},
    		{"Add32", Func, 12},
    		{"Add64", Func, 12},
    		{"Div", Func, 12},
    		{"Div32", Func, 12},
    		{"Div64", Func, 12},
    		{"LeadingZeros", Func, 9},
    		{"LeadingZeros16", Func, 9},
    		{"LeadingZeros32", Func, 9},
    		{"LeadingZeros64", Func, 9},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	case OpAdd16:
    		v.Op = OpAMD64ADDL
    		return true
    	case OpAdd32:
    		v.Op = OpAMD64ADDL
    		return true
    	case OpAdd32F:
    		v.Op = OpAMD64ADDSS
    		return true
    	case OpAdd64:
    		v.Op = OpAMD64ADDQ
    		return true
    	case OpAdd64F:
    		v.Op = OpAMD64ADDSD
    		return true
    	case OpAdd8:
    		v.Op = OpAMD64ADDL
    		return true
    	case OpAddPtr:
    		v.Op = OpAMD64ADDQ
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteARM64.go

    		return true
    	case OpAdd16:
    		v.Op = OpARM64ADD
    		return true
    	case OpAdd32:
    		v.Op = OpARM64ADD
    		return true
    	case OpAdd32F:
    		v.Op = OpARM64FADDS
    		return true
    	case OpAdd64:
    		v.Op = OpARM64ADD
    		return true
    	case OpAdd64F:
    		v.Op = OpARM64FADDD
    		return true
    	case OpAdd8:
    		v.Op = OpARM64ADD
    		return true
    	case OpAddPtr:
    		v.Op = OpARM64ADD
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
Back to top