Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for progedit (0.09 sec)

  1. src/cmd/internal/obj/ppc64/obj9.go

    	Preprocess:     preprocess,
    	Assemble:       span9,
    	Progedit:       progedit,
    	UnaryDst:       unaryDst,
    	DWARFRegisters: PPC64DWARFRegisters,
    }
    
    var Linkppc64le = obj.LinkArch{
    	Arch:           sys.ArchPPC64LE,
    	Init:           buildop,
    	Preprocess:     preprocess,
    	Assemble:       span9,
    	Progedit:       progedit,
    	UnaryDst:       unaryDst,
    	DWARFRegisters: PPC64DWARFRegisters,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/sym.go

    	}
    
    	if ctxt.Headtype == objabi.Haix {
    		// Data must be in a reliable order for reproducible builds.
    		// The original entries are in a reliable order, but the TOC symbols
    		// that are added in Progedit are added by different goroutines
    		// that can be scheduled independently. We need to reorder those
    		// symbols reliably. Sort by name but use a stable sort, so that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/link.go

    type LinkArch struct {
    	*sys.Arch
    	Init           func(*Link)
    	ErrorCheck     func(*Link, *LSym)
    	Preprocess     func(*Link, *LSym, ProgAlloc)
    	Assemble       func(*Link, *LSym, ProgAlloc)
    	Progedit       func(*Link, *Prog, ProgAlloc)
    	SEH            func(*Link, *LSym) *LSym
    	UnaryDst       map[As]bool // Instruction takes one operand, a destination.
    	DWARFRegisters map[int16]int16
    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