Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for allee (0.05 sec)

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

    	funcPackageInit              // compiler emitted .init func for package
    )
    
    type SymAndPos struct {
    	Sym *obj.LSym // LSym of callee
    	Pos src.XPos  // line of call
    }
    
    func (f *Func) Dupok() bool                    { return f.flags&funcDupok != 0 }
    func (f *Func) Wrapper() bool                  { return f.flags&funcWrapper != 0 }
    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/runtime/stubs.go

    // call site for justification.
    //
    // Package reflect accesses this symbol through a linkname.
    //
    // Arguments passed through to reflectcall do not escape. The type is used
    // only in a very limited callee of reflectcall, the stackArgs are copied, and
    // regArgs is only used in the reflectcall frame.
    //
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    // callTargetLSym returns the correct LSym to call 'callee' using its ABI.
    func callTargetLSym(callee *ir.Name) *obj.LSym {
    	if callee.Func == nil {
    		// TODO(austin): This happens in case of interface method I.M from imported package.
    		// It's ABIInternal, and would be better if callee.Func was never nil and we didn't
    		// need this case.
    		return callee.Linksym()
    	}
    
    	return callee.LinksymABI(callee.Func.ABI)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. src/cmd/link/link_test.go

    		t.Errorf("binary too big: got %d, want < %d", got, want)
    	}
    }
    
    const testIssue42396src = `
    package main
    
    //go:noinline
    //go:nosplit
    func callee(x int) {
    }
    
    func main() {
    	callee(9)
    }
    `
    
    func TestIssue42396(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	if !platform.RaceDetectorSupported(runtime.GOOS, runtime.GOARCH) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // corresponding argument if the callee has only one use.
      //
      // TODO(b/154065712): Move this to a more general inter-procedural constant
      // folding pass.
      void PropagateConstantToCallee(CallOpInterface call_op, FuncOp func,
                                     ModuleOp module);
    
      // Propagates any constant return value of the callee function to the call
      // op's corresponding result.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. src/runtime/cgocall.go

    // m.g0's stack (the pointer is still in m.g0.sched.sp), restores the old
    // m.g0.sched.sp value from the stack, and returns to crosscall2.
    //
    // crosscall2 restores the callee-save registers for gcc and returns
    // to GoF, which unpacks any result values and returns to f.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"internal/goexperiment"
    	"runtime/internal/sys"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. src/runtime/traceback.go

    		lastN = 0
    		f := u.frame.fn
    		for iu, uf := newInlineUnwinder(f, u.symPC()); uf.valid(); uf = iu.next(uf) {
    			sf := iu.srcFunc(uf)
    			callee := u.calleeFuncID
    			u.calleeFuncID = sf.funcID
    			if !(showRuntime || showframe(sf, gp, n == 0, callee)) {
    				continue
    			}
    
    			if pr, stop := commitFrame(); stop {
    				return
    			} else if !pr {
    				continue
    			}
    
    			name := sf.name()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      }
      pm.addNestedPass<mlir::func::FuncOp>(mlir::createCanonicalizerPass());
      // The SCCP pass performs constant propagation across the IR, which, for
      // example, propagates constant arguments into callee functions.
      // TODO(hinsu): Investigate if we really need SCCP pass before shape inference
      // and can do with just one pass after the shape inference.
      pm.addPass(mlir::createSCCPPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  9. src/text/template/exec.go

    				// Validate against the type of the elements of the variadic slice.
    				t = t.Elem()
    			}
    		}
    		argv[i] = s.validateType(final, t)
    	}
    
    	// Special case for the "call" builtin.
    	// Insert the name of the callee function as the first argument.
    	if isBuiltin && name == "call" {
    		calleeName := args[0].String()
    		argv = append([]reflect.Value{reflect.ValueOf(calleeName)}, argv...)
    		fun = reflect.ValueOf(call)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            get() {
                val typeReference = referenceExpression ?: return false
                return typeReference.textRange.intersects(selection)
            }
    
        /**
         * Checks whether callee reference of [this] qualified expression is considered to be in the [selection] text range.
         *
         * Examples of calls:
         *
         *  - `|foo.bar()|` - true
         * - `foo.|bar|()` - true
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top