Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,202 for tcCall (0.15 sec)

  1. src/cmd/compile/internal/walk/stmt.go

    	return n
    }
    
    // validGoDeferCall reports whether call is a valid call to appear in
    // a go or defer statement; that is, whether it's a regular function
    // call without arguments or results.
    func validGoDeferCall(call ir.Node) bool {
    	if call, ok := call.(*ir.CallExpr); ok && call.Op() == ir.OCALLFUNC && len(call.KeepAlive) == 0 {
    		sig := call.Fun.Type()
    		return sig.NumParams()+sig.NumResults() == 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/runtime/tls_arm.s

    // thread-local memory, so that we can call externally compiled
    // ARM code that will overwrite those registers.
    // NOTE: runtime.gogo assumes that R1 is preserved by this function.
    //       runtime.mcall assumes this function only clobbers R0 and R11.
    // Returns with g in R0.
    TEXT runtime·save_g(SB),NOSPLIT,$0
    	// If the host does not support MRC the linker will replace it with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:38:07 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/internal/objabi/funcid.go

    	"goexit":             abi.FuncID_goexit,
    	"gogo":               abi.FuncID_gogo,
    	"gopanic":            abi.FuncID_gopanic,
    	"handleAsyncEvent":   abi.FuncID_handleAsyncEvent,
    	"main":               abi.FuncID_runtime_main,
    	"mcall":              abi.FuncID_mcall,
    	"morestack":          abi.FuncID_morestack,
    	"mstart":             abi.FuncID_mstart,
    	"panicwrap":          abi.FuncID_panicwrap,
    	"runfinq":            abi.FuncID_runfinq,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 21:33:59 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/InstallExecutable.java

                toolChainPath.append("%PATH%");
            }
    
            String runScriptText =
                  "\n@echo off"
                + "\nSETLOCAL"
                + "\n" + toolChainPath
                + "\nCALL \"%~dp0lib\\" + executable.getName() + "\" %*"
                + "\nEXIT /B %ERRORLEVEL%"
                + "\nENDLOCAL"
                + "\n";
            GFileUtils.writeFile(runScriptText, runScript);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm/a.out.go

    	ABFX
    	ABFXU
    	ABFC
    	ABFI
    
    	AMULWT
    	AMULWB
    	AMULBB
    	AMULAWT
    	AMULAWB
    	AMULABB
    
    	AMRC // MRC/MCR
    
    	ALAST
    
    	// aliases
    	AB  = obj.AJMP
    	ABL = obj.ACALL
    )
    
    /* scond byte */
    const (
    	C_SCOND = (1 << 4) - 1
    	C_SBIT  = 1 << 4
    	C_PBIT  = 1 << 5
    	C_WBIT  = 1 << 6
    	C_FBIT  = 1 << 7 /* psr flags-only */
    	C_UBIT  = 1 << 7 /* up bit, unsigned bit */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 16:22:12 UTC 2021
    - 7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ir/fmt.go

    	case OTAILCALL:
    		n := n.(*TailCallStmt)
    		fmt.Fprintf(s, "tailcall %v", n.Call)
    
    	case OINLMARK:
    		n := n.(*InlineMarkStmt)
    		fmt.Fprintf(s, "inlmark %d", n.Index)
    
    	case OGO:
    		n := n.(*GoDeferStmt)
    		fmt.Fprintf(s, "go %v", n.Call)
    
    	case ODEFER:
    		n := n.(*GoDeferStmt)
    		fmt.Fprintf(s, "defer %v", n.Call)
    
    	case OIF:
    		n := n.(*IfStmt)
    		if simpleinit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  7. src/runtime/preempt.go

    //go:nosplit
    func asyncPreempt2() {
    	gp := getg()
    	gp.asyncSafePoint = true
    	if gp.preemptStop {
    		mcall(preemptPark)
    	} else {
    		mcall(gopreempt_m)
    	}
    	gp.asyncSafePoint = false
    }
    
    // asyncPreemptStack is the bytes of stack space required to inject an
    // asyncPreempt call.
    var asyncPreemptStack = ^uintptr(0)
    
    func init() {
    	f := findfunc(abi.FuncPCABI0(asyncPreempt))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

            return failure();
          }
        } else if (auto pcall = llvm::dyn_cast<TF::PartitionedCallOp>(&op)) {
          if (!pcall.func())
            return pcall.emitOpError(
                "TensorList decomposition does not support call with nested "
                "references.");
    
          if (failed(HandlePartitionedCallOp(
                  pcall, pcall.func(), module, buffer_to_size,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/common/extensions.kt

                // Use fewer parallel forks on macOs, since the agents are not very powerful.
                param("maxParallelForks", "2")
            }
            if (os == Os.LINUX || os == Os.MACOS) {
                param("env.LC_ALL", "en_US.UTF-8")
            }
        }
    }
    
    fun BuildSteps.checkCleanM2AndAndroidUserHome(os: Os = Os.LINUX, buildType: BuildType? = null) {
        script {
            name = "CHECK_CLEAN_M2_ANDROID_USER_HOME"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    			aux := ssa.StaticAuxCall(calleeLSym, params)
    			call = s.newValue0A(ssa.OpStaticLECall, aux.LateExpansionResultType(), aux)
    			if k == callTail {
    				call.Op = ssa.OpTailLECall
    				stksize = 0 // Tail call does not use stack. We reuse caller's frame.
    			}
    		default:
    			s.Fatalf("bad call type %v %v", n.Op(), n)
    		}
    		call.AddArgs(callArgs...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top