Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 269 for Atack (0.03 sec)

  1. src/cmd/compile/internal/ssa/nilcheck.go

    					// instruction between a VarDef and that variable being
    					// fully initialized. If there was, then anything scanning
    					// the stack during the handling of that fault will see
    					// a live but uninitialized pointer variable on the stack.
    					//
    					// If we have:
    					//
    					//   NilCheck p
    					//   VarDef x
    					//   x = *p
    					//
    					// We can't rewrite that to
    					//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    // profile.
    //
    // profilez samples are a repeated sequence of stack frames of the
    // form:
    //
    //	1st word -- The number of times this stack was encountered.
    //	2nd word -- The size of the stack (StackSize).
    //	3rd word -- The first address on the stack.
    //	...
    //	StackSize + 2 -- The last address on the stack
    //
    // The last stack trace is of the form:
    //
    //	1st word -- 0
    //	2nd word -- 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/link.go

    	}
    
    	return &sym
    }
    
    type WasmField struct {
    	Type WasmFieldType
    	// Offset holds the frame-pointer-relative locations for Go's stack-based
    	// ABI. This is used by the src/cmd/internal/wasm package to map WASM
    	// import parameters to the Go stack in a wrapper function.
    	Offset int64
    }
    
    type WasmFieldType byte
    
    const (
    	WasmI32 WasmFieldType = iota
    	WasmI64
    	WasmF32
    	WasmF64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. src/runtime/sys_darwin.go

    //
    // The stacks obtained from the hung child processes are in
    // libSystem_atfork_child, which is supposed to reinitialize various
    // parts of the C library in the new process.
    //
    // One common stack dies in _notify_fork_child calling _notify_globals
    // (inlined) calling _os_alloc_once, because _os_alloc_once detects that
    // the once lock is held by the parent process and then calls
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/plive.go

    				}
    				lv.unsafePoints.Set(int32(v.ID))
    			}
    		}
    	}
    }
    
    // Returns true for instructions that must have a stack map.
    //
    // This does not necessarily mean the instruction is a safe-point. In
    // 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
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/WasmOps.go

    		gpsp   = gp | buildReg("SP")
    		gpspsb = gpsp | buildReg("SB")
    		// The "registers", which are actually local variables, can get clobbered
    		// if we're switching goroutines, because it unwinds the WebAssembly stack.
    		callerSave = gp | fp32 | fp64 | buildReg("g")
    	)
    
    	// Common regInfo
    	var (
    		gp01      = regInfo{inputs: nil, outputs: []regMask{gp}}
    		gp11      = regInfo{inputs: []regMask{gpsp}, outputs: []regMask{gp}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/stdlib_test.go

    		"issue20529.go",  // types2 does not have constraints on stack size
    		"issue22200.go",  // types2 does not have constraints on stack size
    		"issue22200b.go", // types2 does not have constraints on stack size
    		"issue25507.go",  // types2 does not have constraints on stack size
    		"issue20780.go",  // types2 does not have constraints on stack size
    		"issue42058a.go", // types2 does not have constraints on channel element size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/debug/gosym/symtab.go

    	tos := noPath
    
    pathloop:
    	for _, s := range o.Paths {
    		val := int(s.Value)
    		switch {
    		case val > aline:
    			break pathloop
    
    		case val == 1:
    			// Start a new stack
    			tos = &stackEnt{s.Name, val, 0, noPath}
    
    		case s.Name == "":
    			// Pop
    			if tos == noPath {
    				return "<malformed symbol table>", 0
    			}
    			tos.prev.offset += val - tos.start
    			tos = tos.prev
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. src/go/types/predicates.go

    	// package is nil for objects in universe scope
    	if a == nil || b == nil {
    		return a == b
    	}
    	// a != nil && b != nil
    	return a.path == b.path
    }
    
    // An ifacePair is a node in a stack of interface type pairs compared for identity.
    type ifacePair struct {
    	x, y *Interface
    	prev *ifacePair
    }
    
    func (p *ifacePair) identical(q *ifacePair) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/encoding/xml/xml.go

    		d.r = rb
    	} else {
    		d.r = bufio.NewReader(r)
    	}
    }
    
    // Parsing state - stack holds old name space translations
    // and the current set of open elements. The translations to pop when
    // ending a given tag are *below* it on the stack, which is
    // more work but forced on us by XML.
    type stack struct {
    	next *stack
    	kind int
    	name Name
    	ok   bool
    }
    
    const (
    	stkStart = iota
    	stkNs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
Back to top