Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 351 for tcCall (0.13 sec)

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

    func FixMethodCall(call *ir.CallExpr) {
    	if call.Fun.Op() != ir.ODOTMETH {
    		return
    	}
    
    	dot := call.Fun.(*ir.SelectorExpr)
    
    	fn := NewMethodExpr(dot.Pos(), dot.X.Type(), dot.Selection.Sym)
    
    	args := make([]ir.Node, 1+len(call.Args))
    	args[0] = dot.X
    	copy(args[1:], call.Args)
    
    	call.SetOp(ir.OCALLFUNC)
    	call.Fun = fn
    	call.Args = args
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/typecheck.go

    func Exprs(exprs []ir.Node) { typecheckslice(exprs, ctxExpr) }
    func Stmts(stmts []ir.Node) { typecheckslice(stmts, ctxStmt) }
    
    func Call(pos src.XPos, callee ir.Node, args []ir.Node, dots bool) ir.Node {
    	call := ir.NewCallExpr(pos, ir.OCALL, callee, args)
    	call.IsDDD = dots
    	return typecheck(call, ctxStmt|ctxExpr)
    }
    
    func Callee(n ir.Node) ir.Node {
    	return typecheck(n, ctxExpr|ctxCallee)
    }
    
    var traceIndent []byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/calls/KtCall.kt

    @Deprecated(
        "The API has been moved into `org.jetbrains.kotlin.analysis.api.resolution` package",
        level = DeprecationLevel.HIDDEN,
    )
    public typealias KaCall = KaCall
    public typealias KtCall = KaCall
    
    @Deprecated(
        "The API has been moved into `org.jetbrains.kotlin.analysis.api.resolution` package",
        level = DeprecationLevel.HIDDEN,
    )
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/call.go

    	} else {
    		if ddd {
    			// standard_func(a, b, c...)
    			//check.errorf(call.Ellipsis, "cannot use ... in call to non-variadic %s", call.Fun)
    			check.errorf(call, NonVariadicDotDotDot, "cannot use ... in call to non-variadic %s", call.Fun)
    			return
    		}
    		// standard_func(a, b, c)
    	}
    
    	// check argument count
    	if nargs != npars {
    		var at poser = call
    		qualifier := "not enough"
    		if nargs > npars {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  5. src/runtime/sys_linux_riscv64.s

    	MOV	$SYS_gettid, A7
    	ECALL
    	MOVW	A0, ret+0(FP)
    	RET
    
    // func raise(sig uint32)
    TEXT runtime·raise(SB),NOSPLIT|NOFRAME,$0
    	MOV	$SYS_gettid, A7
    	ECALL
    	// arg 1 tid - already in A0
    	MOVW	sig+0(FP), A1	// arg 2
    	MOV	$SYS_tkill, A7
    	ECALL
    	RET
    
    // func raiseproc(sig uint32)
    TEXT runtime·raiseproc(SB),NOSPLIT|NOFRAME,$0
    	MOV	$SYS_getpid, A7
    	ECALL
    	// arg 1 pid - already in A0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. src/go/types/call.go

    	}
    	// x.typ may be generic
    
    	switch x.mode {
    	case invalid:
    		check.use(call.Args...)
    		x.expr = call
    		return statement
    
    	case typexpr:
    		// conversion
    		check.nonGeneric(nil, x)
    		if x.mode == invalid {
    			return conversion
    		}
    		T := x.typ
    		x.mode = invalid
    		switch n := len(call.Args); n {
    		case 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/ld_test.go

    	for i := 0; i < 1<<17; i++ {
    		fmt.Fprintf(buf, "\tADD $0, X0, X0\n")
    	}
    	fmt.Fprintf(buf, "\tCALL b(SB)\n")
    	fmt.Fprintf(buf, "\tRET\n")
    	fmt.Fprintf(buf, "TEXT b(SB),$0-0\n")
    	fmt.Fprintf(buf, "\tRET\n")
    	fmt.Fprintf(buf, "TEXT c(SB),$0-0\n")
    	fmt.Fprintf(buf, "\tCALL b(SB)\n")
    	fmt.Fprintf(buf, "\tRET\n")
    	fmt.Fprintf(buf, "TEXT ·d(SB),0,$0-0\n")
    	for i := 0; i < 1<<17; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 05:45:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

            psi: KtElement,
            ktCall: KaCall,
            resolvedCalls: List<ResolvedCall<*>>,
            diagnostics: Diagnostics = context.diagnostics,
        ): KaCallInfo {
            val failedResolveCall = resolvedCalls.firstOrNull { !it.status.isSuccess } ?: return KaSuccessCallInfo(ktCall)
    
            val diagnostic = getDiagnosticToReport(context, psi, ktCall, diagnostics)?.let { KaFe10Diagnostic(it, token) }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. test/nosplit.go

    f7 16 call f8
    f8 16 call end
    end 1000
    
    start 0 call f1
    f1 16 nosplit call f2
    f2 16 nosplit call f3
    f3 16 nosplit call f4
    f4 16 nosplit call f5
    f5 16 nosplit call f6
    f6 16 nosplit call f7
    f7 16 nosplit call f8
    f8 16 nosplit call end
    end 1000
    REJECT
    
    # Two paths both go over the stack limit.
    start 0 call f1
    f1 80 nosplit call f2 call f3
    f2 40 nosplit call f4
    f3 96 nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. hack/make-rules/test.sh

              -o -path './staging/*' \
              -o -path './vendor/*' \
            \) -prune \
          \) -name '*_test.go' -print0 | xargs -0n1 dirname | LC_ALL=C sort -u
    
        find ./staging -name '*_test.go' -not -path '*/test/integration/*' -prune -print0 | xargs -0n1 dirname | LC_ALL=C sort -u
      )
    }
    
    # TODO: This timeout should really be lower, this is a *long* time to test one
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top