Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for partLiveArgs (0.26 sec)

  1. src/cmd/compile/internal/liveness/plive.go

    	livenessMap Map
    	stackMapSet bvecSet
    	stackMaps   []bitvec.BitVec
    
    	cache progeffectscache
    
    	// partLiveArgs includes input arguments (PPARAM) that may
    	// be partially live. That is, it is considered live because
    	// a part of it is used, but we may not initialize all parts.
    	partLiveArgs map[*ir.Name]bool
    
    	doClobber     bool // Whether to clobber dead stack slots in this function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	// Map from GC safe points to liveness index, generated by
    	// liveness analysis.
    	livenessMap liveness.Map
    
    	// partLiveArgs includes arguments that may be partially live, for which we
    	// need to generate instructions that spill the argument registers.
    	partLiveArgs map[*ir.Name]bool
    
    	// lineRunStart records the beginning of the current run of instructions
    	// within a single block sharing the same line number
    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