Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Debugasm (0.13 sec)

  1. src/cmd/internal/obj/objfile.go

    		objabi.SDWARFVAR:
    	default:
    		return
    	}
    	ctxt.writeSymDebugNamed(aux, "aux for "+par.Name)
    }
    
    func debugAsmEmit(ctxt *Link) {
    	if ctxt.Debugasm > 0 {
    		ctxt.traverseSyms(traverseDefs, ctxt.writeSymDebug)
    		if ctxt.Debugasm > 1 {
    			fn := func(par *LSym, aux *LSym) {
    				writeAuxSymDebug(ctxt, par, aux)
    			}
    			ctxt.traverseAuxSyms(traverseAux, fn)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/util.go

    			sep = ", "
    		}
    	}
    }
    
    func (ctxt *Link) NewProg() *Prog {
    	p := new(Prog)
    	p.Ctxt = ctxt
    	return p
    }
    
    func (ctxt *Link) CanReuseProgs() bool {
    	return ctxt.Debugasm == 0
    }
    
    // Dconv accepts an argument 'a' within a prog 'p' and returns a string
    // with a formatted version of the argument.
    func Dconv(p *Prog, a *Addr) string {
    	buf := new(bytes.Buffer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/link.go

    // Link holds the context for writing object code from a compiler
    // to be linker input or for reading that input into the linker.
    type Link struct {
    	Headtype           objabi.HeadType
    	Arch               *LinkArch
    	Debugasm           int
    	Debugvlog          bool
    	Debugpcln          string
    	Flag_shared        bool
    	Flag_dynlink       bool
    	Flag_linkshared    bool
    	Flag_optimize      bool
    	Flag_locationlists bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top