Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for valueToProgAfter (0.29 sec)

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

    	// See stackalloc.go's {new,put}StackAllocState.
    	stackAllocState *stackAllocState
    
    	scrPoset []*poset // scratch poset to be reused
    
    	// Reusable regalloc state.
    	regallocValues []valState
    
    	ValueToProgAfter []*obj.Prog
    	debugState       debugState
    
    	Liveness interface{} // *gc.livenessFuncCache
    
    	// Free "headers" for use by the allocators in allocators.go.
    	// Used to put slices in sync.Pools without allocation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 23:00:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		progToBlock[s.pp.Next] = f.Blocks[0]
    	}
    
    	if base.Ctxt.Flag_locationlists {
    		if cap(f.Cache.ValueToProgAfter) < f.NumValues() {
    			f.Cache.ValueToProgAfter = make([]*obj.Prog, f.NumValues())
    		}
    		valueToProgAfter = f.Cache.ValueToProgAfter[:f.NumValues()]
    		for i := range valueToProgAfter {
    			valueToProgAfter[i] = nil
    		}
    	}
    
    	// If the very first instruction is not tagged as a statement,
    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