Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for dumphdr (0.26 sec)

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

    	if w == nil {
    		return
    	}
    	io.WriteString(w.w, "</tr>")
    	io.WriteString(w.w, "</table>")
    	io.WriteString(w.w, "</body>")
    	io.WriteString(w.w, "</html>")
    	w.w.Close()
    	fmt.Printf("dumped SSA for %s to %v\n", w.Func.NameABI(), w.path)
    }
    
    // WritePhase writes f in a column headed by title.
    // phase is used for collapsing columns and should be unique across the table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/liveness/plive.go

    		if printed {
    			fmt.Printf("\n")
    		}
    	}
    
    	fmt.Printf("\n")
    }
    
    // Dumps a slice of bitmaps to a symbol as a sequence of uint32 values. The
    // first word dumped is the total number of bitmaps. The second word is the
    // length of the bitmaps. All bitmaps are assumed to be of equal length. The
    // remaining bytes are the raw bitmaps.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		filename := fmt.Sprintf("%s_broken.go", arch.name)
    		if err := os.WriteFile(filename, buf.Bytes(), 0644); err != nil {
    			log.Printf("failed to dump broken code to %s: %v", filename, err)
    		} else {
    			log.Printf("dumped broken code to %s", filename)
    		}
    		log.Fatalf("failed to parse generated code for arch %s: %v", arch.name, err)
    	}
    	tfile := fset.File(file.Pos())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
Back to top