Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for generic (0.48 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    Jorropo <******@****.***> 1704874672 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "LoweredPanicBoundsB", argLength: 3, aux: "Int64", reg: regInfo{inputs: []regMask{cx, dx}}, typ: "Mem", call: true}, // arg0=idx, arg1=len, arg2=mem, returns memory. AuxInt contains report code (see PanicBounds in generic.go).
    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/_gen/ARM64.rules

    (Sqrt32 ...) => (FSQRTS ...)
    
    (Min(64|32)F ...) => (FMIN(D|S) ...)
    (Max(64|32)F ...) => (FMAX(D|S) ...)
    
    // lowering rotates
    // we do rotate detection in generic rules, if the following rules need to be changed, check generic rules first.
    (RotateLeft8  <t> x (MOVDconst [c])) => (Or8 (Lsh8x64 <t> x (MOVDconst [c&7])) (Rsh8Ux64 <t> x (MOVDconst [-c&7])))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    // function oclass computes the specific Ytype of an operand and then the set
    // of more general Ytypes that it satisfies is implied by the ycover table, set
    // up in instinit.  For example, oclass distinguishes the constants 0 and 1
    // from the more general 8-bit constants, but instinit says
    //
    //	ycover[Yi0*Ymax+Ys32] = 1
    //	ycover[Yi1*Ymax+Ys32] = 1
    //	ycover[Yi8*Ymax+Ys32] = 1
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    package demangle
    
    import (
    	"fmt"
    	"strings"
    )
    
    // AST is an abstract syntax tree representing a C++ declaration.
    // This is sufficient for the demangler but is by no means a general C++ AST.
    // This abstract syntax tree is only used for C++ symbols, not Rust symbols.
    type AST interface {
    	// Internal method to convert to demangled string.
    	print(*printState)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //
    // The first is the cgo tool, which is part of the Go distribution. For
    // information on how to use it see the cgo documentation (go doc cmd/cgo).
    //
    // The second is the SWIG program, which is a general tool for
    // interfacing between languages. For information on SWIG see
    // http://swig.org/. When running go build, any file with a .swig
    // extension will be passed to SWIG. Any file with a .swigcxx extension
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/asm7.go

    	var o1 int32
    	if p.Pool == nil { /* not in literal pool */
    		c.aclass(a)
    		c.ctxt.Logf("omovlit add %d (%#x)\n", c.instoffset, uint64(c.instoffset))
    
    		/* TODO: could be clever, and use general constant builder */
    		o1 = int32(c.opirr(p, AADD))
    
    		v := int32(c.instoffset)
    		if v != 0 && (v&0xFFF) == 0 {
    			v >>= 12
    			o1 |= 1 << 22 /* shift, by 12 */
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    language version 1.17, in October 2021, before the introduction of generics.
    It is provided for historical interest.
    The current reference manual can be found <a href="/doc/go_spec.html">here</a>.
    For more information and other documents, see <a href="/">go.dev</a>.
    </p>
    
    <p>
    Go is a general-purpose language designed with systems programming
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    // the address/offset for a symbol, in which case the goal is to lay
    // the groundwork for turning a given relocation into an external reloc
    // (to be applied by the external linker). For more on how relocations
    // work in general, see
    //
    //	"Linkers and Loaders", by John R. Levine (Morgan Kaufmann, 1999), ch. 7
    //
    // This is a performance-critical function for the linker; be careful
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top