Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for adapter (0.4 sec)

  1. src/cmd/compile/internal/ssagen/abi.go

    	ir.CurFunc = fn
    	typecheck.Stmts(fn.Body)
    
    	// Restore previous context.
    	base.Pos = savepos
    	ir.CurFunc = savedcurfn
    }
    
    // CreateWasmImportWrapper creates a wrapper for imported WASM functions to
    // adapt them to the Go calling convention. The body for this function is
    // generated in cmd/internal/obj/wasm/wasmobj.go
    func CreateWasmImportWrapper(fn *ir.Func) bool {
    	if fn.WasmImport == nil {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/unify.go

    func asInterface(x Type) (i *Interface) {
    	if _, ok := Unalias(x).(*TypeParam); !ok {
    		i, _ = under(x).(*Interface)
    	}
    	return i
    }
    
    // nify implements the core unification algorithm which is an
    // adapted version of Checker.identical. For changes to that
    // code the corresponding changes should be made here.
    // Must not be called directly from outside the unifier.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Add8", argLength: 2, commutative: true}, // arg0 + arg1
    	{name: "Add16", argLength: 2, commutative: true},
    	{name: "Add32", argLength: 2, commutative: true},
    	{name: "Add64", argLength: 2, commutative: true},
    	{name: "AddPtr", argLength: 2}, // For address calculations.  arg0 is a pointer and arg1 is an int.
    	{name: "Add32F", argLength: 2, commutative: true},
    	{name: "Add64F", argLength: 2, commutative: true},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/branchelim.go

    	case "arm64", "ppc64le", "ppc64", "amd64", "wasm", "loong64":
    		// implemented
    	default:
    		return
    	}
    
    	// Find all the values used in computing the address of any load.
    	// Typically these values have operations like AddPtr, Lsh64x64, etc.
    	loadAddr := f.newSparseSet(f.NumValues())
    	defer f.retSparseSet(loadAddr)
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			switch v.Op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
Back to top