Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AuxIntString (0.2 sec)

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

    	return fmt.Sprintf("b%d", b.ID)
    }
    
    // long form print
    func (b *Block) LongString() string {
    	s := b.Kind.String()
    	if b.Aux != nil {
    		s += fmt.Sprintf(" {%s}", b.Aux)
    	}
    	if t := b.AuxIntString(); t != "" {
    		s += fmt.Sprintf(" [%s]", t)
    	}
    	for _, c := range b.ControlValues() {
    		s += fmt.Sprintf(" %s", c)
    	}
    	if len(b.Succs) > 0 {
    		s += " ->"
    		for _, c := range b.Succs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/html.go

    	s := fmt.Sprintf("<span class=\"%s ssa-block\">%s</span>", html.EscapeString(b.String()), html.EscapeString(b.Kind.String()))
    	if b.Aux != nil {
    		s += html.EscapeString(fmt.Sprintf(" {%v}", b.Aux))
    	}
    	if t := b.AuxIntString(); t != "" {
    		s += html.EscapeString(fmt.Sprintf(" [%v]", t))
    	}
    	for _, c := range b.ControlValues() {
    		s += fmt.Sprintf(" %s", c.HTML())
    	}
    	if len(b.Succs) > 0 {
    		s += " &#8594;" // right arrow
    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