Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BuildFuncDebug (0.19 sec)

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

    }
    
    // BuildFuncDebug debug information for f, placing the results
    // in "rval". f must be fully processed, so that each Value is where it
    // will be when machine code is emitted.
    func BuildFuncDebug(ctxt *obj.Link, f *Func, loggingLevel int, stackOffset func(LocalSlot) int32, rval *FuncDebug) {
    	if f.RegAlloc == nil {
    		f.Fatalf("BuildFuncDebug on func %v that has not been fully processed", f)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		if e.curfn.ABI == obj.ABIInternal && base.Flag.N != 0 {
    			ssa.BuildFuncDebugNoOptimized(base.Ctxt, f, base.Debug.LocationLists > 1, StackOffset, debugInfo)
    		} else {
    			ssa.BuildFuncDebug(base.Ctxt, f, base.Debug.LocationLists, StackOffset, debugInfo)
    		}
    		bstart := s.bstart
    		idToIdx := make([]int, f.NumBlocks())
    		for i, b := range f.Blocks {
    			idToIdx[b.ID] = i
    		}
    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