Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 686 for spill (0.85 sec)

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

    type LocResults []Location
    
    func (t LocResults) String() string {
    	s := ""
    	a := "<"
    	for _, r := range t {
    		a += s
    		s = ","
    		a += r.String()
    	}
    	a += ">"
    	return a
    }
    
    type Spill struct {
    	Type   *types.Type
    	Offset int64
    	Reg    int16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. src/reflect/asm_ppc64x.s

    	MOVD	R3, FIXED_FRAME+16(R1)	// addr retvalid (arg2)
    	ADD     $LOCAL_REGARGS, R1, R3
    	MOVD	R3, FIXED_FRAME+24(R1)	// abiregargs (arg3)
    	BL	·callReflect(SB)
    	ADD	$LOCAL_REGARGS, R1, R20	// set address of spill area
    	CALL	runtime·unspillArgs(SB)
    	RET
    
    // methodValueCall is the code half of the function returned by makeMethodValue.
    // See the comment on the declaration of methodValueCall in makefunc.go
    // for more details.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  3. src/runtime/histogram.go

    	//    │ └---- Next 2 bits -> sub-bucket 0
    	//    └------- Bit 10 set -> bucket 2
    	//
    	// Following this pattern, bucket 38 will have the bit 46 set. We don't
    	// have any buckets for higher values, so we spill the rest into an overflow
    	// bucket containing values of 2^47-1 nanoseconds or approx. 1 day or more.
    	// This range is more than enough to handle durations produced by the runtime.
    	timeHistMinBucketBits = 9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. src/sync/pool_test.go

    	}
    	if g := p.Get(); g != "b" {
    		t.Fatalf("got %#v; want b", g)
    	}
    	if g := p.Get(); g != nil {
    		t.Fatalf("got %#v; want nil", g)
    	}
    	Runtime_procUnpin()
    
    	// Put in a large number of objects so they spill into
    	// stealable space.
    	for i := 0; i < 100; i++ {
    		p.Put("c")
    	}
    	// After one GC, the victim cache should keep them alive.
    	runtime.GC()
    	if g := p.Get(); g != "c" {
    		t.Fatalf("got %#v; want c after GC", g)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. src/runtime/sys_windows_amd64.s

    	// if called from a non-go thread.
    	XORPS	X15, X15
    	XORQ	R14, R14
    
    	get_tls(AX)
    	CMPQ	AX, $0
    	JE	2(PC)
    	// Exception from Go thread, set R14.
    	MOVQ	g(AX), R14
    
    	// Reserve space for spill slots.
    	ADJSP	$16
    	MOVQ	CX, AX
    	MOVQ	DX, BX
    	// Calling ABIInternal because TLS might be nil.
    	CALL	runtime·sigtrampgo<ABIInternal>(SB)
    	// Return value is already stored in AX.
    
    	ADJSP	$-16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 07:24:08 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. src/runtime/sys_dragonfly_amd64.s

    	// Transition from C ABI to Go ABI.
    	PUSH_REGS_HOST_TO_ABI0()
    
    	// Set up ABIInternal environment: g in R14, cleared X15.
    	get_tls(R12)
    	MOVQ	g(R12), R14
    	PXOR	X15, X15
    
    	// Reserve space for spill slots.
    	NOP	SP		// disable vet stack checking
    	ADJSP   $24
    
    	// Call into the Go signal handler
    	MOVQ	DI, AX	// sig
    	MOVQ	SI, BX	// info
    	MOVQ	DX, CX	// ctx
    	CALL	·sigtrampgo<ABIInternal>(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. src/go/doc/comment/testdata/list6.txt

     - Another.
    
    Even more text.
     - List immediately after.
    
     - Blank line between items.
    
    Yet more text.
    
     - Another list after blank line.
    
     - Blank line between items.
    
    Still more text.
     - One list item.
    
       Multiple paragraphs.
    -- dump --
    Doc
    	Paragraph
    		Plain "Text."
    	List ForceBlankBefore=false ForceBlankBetween=false
    		Item Number=""
    			Paragraph
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 2K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/LinePrefixingStyledTextOutputTest.groovy

            when:
            output.println("1st line")
            output.text("2nd line")
            output.text(" - still 2nd line")
            output.println()
            output.text("3rd line")
    
            then:
            result.toString() == TextUtil.toPlatformLineSeparators("""[PREFIX]1st line
    [PREFIX]2nd line - still 2nd line
    [PREFIX]3rd line""")
        }
    
        def "allows not prefixing first line"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. test/arenas/smoke.go

    	defer a.Free()
    
    	const iValue = 10
    
    	i := arena.New[int](a)
    	*i = iValue
    
    	if *i != iValue {
    		// This test doesn't reasonably expect this to fail. It's more likely
    		// that *i crashes for some reason. Still, why not check it.
    		log.Fatalf("bad i value: got %d, want %d", *i, iValue)
    	}
    
    	const wantLen = 125
    	const wantCap = 1912
    
    	sl := arena.MakeSlice[*int](a, wantLen, wantCap)
    	if len(sl) != wantLen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 16 17:08:43 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. test/abi/spills4.go

    package main
    
    import "fmt"
    
    type i5f5 struct {
    	a, b          int16
    	c, d, e       int32
    	r, s, t, u, v float32
    }
    
    //go:noinline
    func spills(_ *float32) {
    
    }
    
    //go:registerparams
    //go:noinline
    func F(x i5f5) i5f5 {
    	y := x.v
    	spills(&y)
    	x.r = y
    	return x
    }
    
    func main() {
    	x := i5f5{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
    	y := x
    	z := F(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 753 bytes
    - Viewed (0)
Back to top