Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for genWasm (0.38 sec)

  1. src/runtime/mkpreempt.go

    var out io.Writer
    
    var arches = map[string]func(){
    	"386":     gen386,
    	"amd64":   genAMD64,
    	"arm":     genARM,
    	"arm64":   genARM64,
    	"loong64": genLoong64,
    	"mips64x": func() { genMIPS(true) },
    	"mipsx":   func() { genMIPS(false) },
    	"ppc64x":  genPPC64,
    	"riscv64": genRISCV64,
    	"s390x":   genS390X,
    	"wasm":    genWasm,
    }
    var beLe = map[string]bool{"mips64x": true, "mipsx": true, "ppc64x": true}
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. src/cmd/internal/objfile/disasm.go

    	return disasm_x86(code, pc, lookup, 32, gnuAsm)
    }
    
    func disasm_amd64(code []byte, pc uint64, lookup lookupFunc, _ binary.ByteOrder, gnuAsm bool) (string, int) {
    	return disasm_x86(code, pc, lookup, 64, gnuAsm)
    }
    
    func disasm_x86(code []byte, pc uint64, lookup lookupFunc, arch int, gnuAsm bool) (string, int) {
    	inst, err := x86asm.Decode(code, arch)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  3. src/cmd/objdump/main.go

    	"cmd/internal/objfile"
    	"cmd/internal/telemetry"
    )
    
    var printCode = flag.Bool("S", false, "print Go code alongside assembly")
    var symregexp = flag.String("s", "", "only dump symbols matching this regexp")
    var gnuAsm = flag.Bool("gnu", false, "print GNU assembly next to Go assembly (where supported)")
    var symRE *regexp.Regexp
    
    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: go tool objdump [-S] [-gnu] [-s symregexp] binary [start end]\n\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top