Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for Reference (0.57 sec)

  1. src/cmd/compile/internal/ir/func.go

    //
    // There are multiple nodes that represent a Func in the IR.
    //
    // The ONAME node (Func.Nname) is used for plain references to it.
    // The ODCLFUNC node (the Func itself) is used for its declaration code.
    // The OCLOSURE node (Func.OClosure) is used for a reference to a
    // function literal.
    //
    // An imported function will have an ONAME node which points to a Func
    // with an empty body.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/parse.go

    		return
    	case "GLOBL", "PCDATA":
    		// No text definitions or symbol references.
    	case "DATA", "FUNCDATA":
    		// For DATA, operands[0] is defined symbol.
    		// For FUNCDATA, operands[0] is an immediate constant.
    		// Remaining operands may have references.
    		if len(operands) < 2 {
    			return
    		}
    		operands = operands[1:]
    	}
    	// Search for symbol references.
    	for _, op := range operands {
    		p.start(op)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. src/archive/tar/format.go

    	// the format has several limitations making it unsuitable for some usages.
    	// Most notably, it cannot support sparse files, files larger than 8GiB,
    	// filenames larger than 256 characters, and non-ASCII filenames.
    	//
    	// Reference:
    	//	http://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html#tag_20_92_13_06
    	FormatUSTAR
    
    	// FormatPAX represents the PAX header format defined in POSIX.1-2001.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/fmt.go

    	// try to print it recursively.
    	// We record the offset in the result buffer where the type's text starts. This offset serves as a reference
    	// point for any later references to the same type.
    	// Note that we remove the type from the visited map as soon as the recursive call is done.
    	// This prevents encoding types like map[*int]*int as map[*int]@4. (That encoding would work,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. doc/asm.html

    </li>
    
    </ul>
    
    <p>
    Reference: <a href="/pkg/cmd/internal/obj/arm64">Go ARM64 Assembly Instructions Reference Manual</a>
    </p>
    
    <h3 id="ppc64">PPC64</h3>
    
    <p>
    This assembler is used by GOARCH values ppc64 and ppc64le.
    </p>
    
    <p>
    Reference: <a href="/pkg/cmd/internal/obj/ppc64">Go PPC64 Assembly Instructions Reference Manual</a>
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/stmt.go

    		// the closure.
    		switch arg.Op() {
    		case ir.OLITERAL, ir.ONIL, ir.OMETHEXPR, ir.ONEW:
    			return
    		case ir.ONAME:
    			arg := arg.(*ir.Name)
    			if arg.Class == ir.PFUNC {
    				return // reference to global function
    			}
    		case ir.OADDR:
    			arg := arg.(*ir.AddrExpr)
    			if arg.X.Op() == ir.OLINKSYMOFFSET {
    				return // address of global symbol
    			}
    
    		case ir.OCONVNOP:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/operand_test.go

    	{"[X0,X1,X2,X3]", "register list: expected '-' after `[X0`, found ','"},
    	{"$foo<ABI0>", "ABI selector only permitted when compiling runtime, reference was to \"foo\""},
    }
    
    var amd64BadOperandRuntimeTests = []badOperandTest{
    	{"$foo<bletch>", "malformed ABI selector \"bletch\" in reference to \"foo\""},
    }
    
    var x86OperandTests = []operandTest{
    	{"$(2.928932188134524e-01)", "$(0.29289321881345243)"},
    	{"$-1", "$-1"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/abi.go

    			}
    			// Add the ABI argument.
    			*pprag = append(*pprag, fn.ABI.String())
    		}
    
    		// Apply references.
    		if abis, ok := s.refs[symName]; ok {
    			fn.ABIRefs |= abis
    		}
    		// Assume all functions are referenced at least as
    		// ABIInternal, since they may be referenced from
    		// other packages.
    		fn.ABIRefs.Set(obj.ABIInternal, true)
    
    		// If a symbol is defined in this package (either in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. src/cmd/cgo/doc.go

    	void _cgo_reginit(void) { }
    
    The extra functions here are stubs to satisfy the references in the C
    code generated for gcc. The build process links this stub, along with
    _cgo_export.c and *.cgo2.c, into a dynamic executable and then lets
    cgo examine the executable. Cgo records the list of shared library
    references and resolved names and writes them into a new file
    _cgo_import.go, which looks like:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/rangefunc/rewrite.go

    		Fun:     runtimeSym(r.info, "panicrangestate"),
    		ArgList: []syntax.Expr{arg},
    	}
    	setValueType(callPanicExpr, nil) // no result type
    	return &syntax.ExprStmt{X: callPanicExpr}
    }
    
    // next returns a reference to the #next variable.
    func (r *rewriter) next() *syntax.Name {
    	if r.nextVar == nil {
    		r.nextVar = r.declVar("#next", r.int.Type(), nil)
    	}
    	return r.useObj(r.nextVar)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top