Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for sval64 (0.23 sec)

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

    // The high 32 bits hold a value.
    // The low 32 bits hold a pointer offset.
    type ValAndOff int64
    
    func (x ValAndOff) Val() int32   { return int32(int64(x) >> 32) }
    func (x ValAndOff) Val64() int64 { return int64(x) >> 32 }
    func (x ValAndOff) Val16() int16 { return int16(int64(x) >> 32) }
    func (x ValAndOff) Val8() int8   { return int8(int64(x) >> 32) }
    
    func (x ValAndOff) Off64() int64 { return int64(int32(x)) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/xcoff.go

    	currSymSrcFile.csectAux = aux
    	currSymSrcFile.csectVAStart = int64(firstEntry)
    	currSymSrcFile.csectVAEnd = int64(firstEntry)
    }
    
    // Update values for the previous package.
    //   - Svalue of the C_FILE symbol: if it is the last one, this Svalue must be -1
    //   - Xsclen of the csect symbol.
    func (f *xcoffFile) updatePreviousFile(ctxt *Link, last bool) {
    	// first file
    	if currSymSrcFile.file == nil {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/staticinit/sched.go

    			return true
    		}
    		//dump("not static ptrlit", r);
    
    	case ir.OSTR2BYTES:
    		r := r.(*ir.ConvExpr)
    		if l.Class == ir.PEXTERN && r.X.Op() == ir.OLITERAL {
    			sval := ir.StringVal(r.X)
    			staticdata.InitSliceBytes(l, loff, sval)
    			return true
    		}
    
    	case ir.OSLICELIT:
    		r := r.(*ir.CompLitExpr)
    		s.initplan(r)
    		// Init slice.
    		ta := types.NewArray(r.Type().Elem(), r.Len)
    		ta.SetNoalg(true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (SelectN [0] call:(CALLstatic {sym} s1:(MOVQstoreconst _ [sc] s2:(MOVQstore _ src s3:(MOVQstore _ dst mem)))))
    	&& sc.Val64() >= 0
    	&& isSameCall(sym, "runtime.memmove")
    	&& s1.Uses == 1 && s2.Uses == 1 && s3.Uses == 1
    	&& isInlinableMemmove(dst, src, sc.Val64(), config)
    	&& clobber(s1, s2, s3, call)
    	=> (Move [sc.Val64()] dst src mem)
    
    // Match post-lowering calls, register version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    		// only create boundaries between symbols from
    		// different units.
    		sval := d.ldr.SymValue(sym)
    		u0val := d.ldr.SymValue(loader.Sym(unit.Textp[0]))
    		if prevUnit != unit {
    			unit.PCs = append(unit.PCs, dwarf.Range{Start: sval - u0val})
    			prevUnit = unit
    		}
    		unit.PCs[len(unit.PCs)-1].End = sval - u0val + int64(len(d.ldr.Data(sym)))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // CHLO:   %[[VAL_1:.*]] = mhlo.compare NE, {{.*}}
    // CHLO:   %[[VAL_3:.*]] = mhlo.constant dense<2.000000e+00>
    // CHLO:   %[[VAL_4:.*]] = mhlo.constant dense<1.000000e+00>
    // CHLO:   %[[VAL_5:.*]] = mhlo.multiply %arg0, %arg0
    // CHLO:   %[[VAL_6:.*]] = mhlo.subtract %[[VAL_4]], %[[VAL_5]]
    // CHLO:   %[[VAL_7:.*]] = mhlo.sqrt %[[VAL_6]]
    // CHLO:   %[[VAL_8:.*]] = mhlo.constant dense<1.000000e+00>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    	}
    
    	sval := ldr.SymValue(s)
    	if !decodetypeUsegcprog(p.ctxt.Arch, typData) {
    		// Copy pointers from mask into program.
    		mask := decodetypeGcmask(p.ctxt, typ)
    		for i := int64(0); i < nptr; i++ {
    			if (mask[i/8]>>uint(i%8))&1 != 0 {
    				p.w.Ptr(sval/ptrsize + i)
    			}
    		}
    		return
    	}
    
    	// Copy program.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. src/syscall/zsyscall_darwin_amd64.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_stat64_trampoline()
    
    //go:cgo_import_dynamic libc_stat64 stat64 "/usr/lib/libSystem.B.dylib"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Statfs(path string, stat *Statfs_t) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_stat64_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_stat64 stat64 "/usr/lib/libSystem.B.dylib"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Statfs(path string, stat *Statfs_t) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	// match: (SelectN [0] call:(CALLstatic {sym} s1:(MOVQstoreconst _ [sc] s2:(MOVQstore _ src s3:(MOVQstore _ dst mem)))))
    	// cond: sc.Val64() >= 0 && isSameCall(sym, "runtime.memmove") && s1.Uses == 1 && s2.Uses == 1 && s3.Uses == 1 && isInlinableMemmove(dst, src, sc.Val64(), config) && clobber(s1, s2, s3, call)
    	// result: (Move [sc.Val64()] dst src mem)
    	for {
    		if auxIntToInt64(v.AuxInt) != 0 {
    			break
    		}
    		call := v_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top