Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for endDepCycle (0.18 sec)

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

    	return fmt.Sprintf("%x", h.Sum(nil))
    }
    
    type funcPrinter interface {
    	header(f *Func)
    	startBlock(b *Block, reachable bool)
    	endBlock(b *Block, reachable bool)
    	value(v *Value, live bool)
    	startDepCycle()
    	endDepCycle()
    	named(n LocalSlot, vals []*Value)
    }
    
    type stringFuncPrinter struct {
    	w         io.Writer
    	printDead bool
    }
    
    func (p stringFuncPrinter) header(f *Func) {
    	fmt.Fprint(p.w, f.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/html.go

    	fmt.Fprint(p.w, v.LongHTML())
    	io.WriteString(p.w, "</li>")
    }
    
    func (p htmlFuncPrinter) startDepCycle() {
    	fmt.Fprintln(p.w, "<span class=\"depcycle\">")
    }
    
    func (p htmlFuncPrinter) endDepCycle() {
    	fmt.Fprintln(p.w, "</span>")
    }
    
    func (p htmlFuncPrinter) named(n LocalSlot, vals []*Value) {
    	fmt.Fprintf(p.w, "<li>name %s: ", n)
    	for _, val := range vals {
    		fmt.Fprintf(p.w, "%s ", val.HTML())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
Back to top