Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for bigcall (0.18 sec)

  1. src/runtime/runtime2.go

    	syscalltick uint32
    	freelink    *m // on sched.freem
    	trace       mTraceState
    
    	// these are here because they are too large to be on the stack
    	// of low-level NOSPLIT functions.
    	libcall    libcall
    	libcallpc  uintptr // for cpu profiler
    	libcallsp  uintptr
    	libcallg   guintptr
    	winsyscall winlibcall // stores syscall parameters on windows
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

            patchIfNeeded(expression.symbol) { expression.symbol = it }
            super.visitGetObjectValue(expression)
        }
    
        override fun visitCall(expression: IrCall) {
            patchIfNeeded(expression.symbol) { expression.symbol = it }
            patchIfNeeded(expression.superQualifierSymbol) { expression.superQualifierSymbol = it }
            super.visitCall(expression)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  3. src/runtime/stack.go

    	}
    	if !isShrinkStackSafe(gp) {
    		throw("shrinkstack at bad time")
    	}
    	// Check for self-shrinks while in a libcall. These may have
    	// pointers into the stack disguised as uintptrs, but these
    	// code paths should all be nosplit.
    	if gp == getg().m.curg && gp.m.libcallsp != 0 {
    		throw("shrinking stack in libcall")
    	}
    
    	if debug.gcshrinkstackoff > 0 {
    		return
    	}
    	f := findfunc(gp.startpc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/liveness/plive.go

    // particular, call Values can have a stack map in case the callee
    // grows the stack, but not themselves be a safe-point.
    func (lv *liveness) hasStackMap(v *ssa.Value) bool {
    	if !v.Op.IsCall() {
    		return false
    	}
    	// wbZero and wbCopy are write barriers and
    	// deeply non-preemptible. They are unsafe points and
    	// hence should not have liveness maps.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    			// install slot in lookup table
    			idx, _ := sc.lookup(sl)
    			// add to f.NamedValues if not already present
    			addToNV(v, sc.canonSlot(idx))
    		} else if v.Op.IsCall() {
    			// if we hit a call, we've gone too far.
    			break
    		}
    	}
    
    	// Now make a pass through the ABI in-params, looking for params
    	// or pieces of params that we didn't encounter in the loop above.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                if (equalsSymbol != null) return@processEqualsFunctions
                equalsSymbol = it
            }
    
            return equalsSymbol ?: equalsSymbolInAny
        }
    
        private fun FirCall.createArgumentMapping(signatureOfCallee: KaFunctionLikeSignature<*>): LinkedHashMap<KtExpression, KaVariableLikeSignature<KaValueParameterSymbol>> {
            return resolvedArgumentMapping?.entries.createArgumentMapping(signatureOfCallee)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  7. src/runtime/traceback.go

    // the initial PC must not be rewound to the previous instruction.
    // (All the saved pairs record a PC that is a return address, so we
    // rewind it into the CALL instruction.)
    // If gp.m.libcall{g,pc,sp} information is available, it uses that information in preference to
    // the pc/sp/lr passed in.
    func tracebacktrap(pc, sp, lr uintptr, gp *g) {
    	if gp.m.libcallsp != 0 {
    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. src/runtime/proc.go

    	wakep()
    
    	releasem(mp)
    
    	return now
    }
    
    // usesLibcall indicates whether this runtime performs system calls
    // via libcall.
    func usesLibcall() bool {
    	switch GOOS {
    	case "aix", "darwin", "illumos", "ios", "solaris", "windows":
    		return true
    	case "openbsd":
    		return GOARCH != "mips64"
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    		// in the entry block up to the first safepoint.
    		type nameOff struct {
    			n   *ir.Name
    			off int64
    		}
    		partLiveArgsSpilled := make(map[nameOff]bool)
    		for _, v := range f.Entry.Values {
    			if v.Op.IsCall() {
    				break
    			}
    			if v.Op != ssa.OpStoreReg || v.Args[0].Op != ssa.OpArgIntReg {
    				continue
    			}
    			n, off := ssa.AutoVar(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. RELEASE.md

    Ashutosh Hathidara, autoih, Ayushman Kumar, ayushmankumar7, Bairen Yi, Bas
    Aarts, Bastian Eichenberger, Ben Barsdell, bhack, Bharat Raghunathan, Biagio
    Montaruli, Bigcat-Himax, blueyi, Bryan Cutler, Byambaa, Carlos
    Hernandez-Vaquero, Chen Lei, Chris Knorowski, Christian Clauss, chuanqiw,
    CuiYifeng, Daniel Situnayake, Daria Zhuravleva, Dayananda-V, Deven Desai, Devi
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top