Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for Disassemble (0.49 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    // The pc is the program counter of the instruction, used for expanding
    // PC-relative addresses into absolute ones.
    // The symname function queries the symbol table for the program
    // being disassembled. Given a target address it returns the name and base
    // address of the symbol containing the target, if any; otherwise it returns "", 0.
    // The reader r should read from the text segment using text addresses
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64enc.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The cases are auto-generated by disassembler.
    // The uncommented cases means they can be handled by assembler
    // and they are consistent with disassembler decoding.
    // TODO means they cannot be handled by current assembler.
    
    #include "../../../../../runtime/textflag.h"
    
    TEXT asmtest(SB),DUPOK|NOSPLIT,$-8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/func_test.go

    // like this:
    //   fun.blocks["entry"] or fun.values["deadval"]
    
    package ssa
    
    // TODO(matloob): Choose better names for Fun, Bloc, Goto, etc.
    // TODO(matloob): Write a parser for the Func disassembly. Maybe
    // the parser can be used instead of Fun.
    
    import (
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/src"
    	"fmt"
    	"reflect"
    	"testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    		nodes = append(nodes, item.Name)
    	}
    
    	ui.render(w, req, "top", rpt, errList, legend, webArgs{
    		Top:   top,
    		Nodes: nodes,
    	})
    }
    
    // disasm generates a web page containing disassembly.
    func (ui *webInterface) disasm(w http.ResponseWriter, req *http.Request) {
    	args := []string{"disasm", req.URL.Query().Get("f")}
    	rpt, errList := ui.makeReport(w, req, args, nil)
    	if rpt == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/build.go

    different sets of packages. If a package matches patterns given in
    multiple flags, the latest match on the command line wins.
    For example, 'go build -gcflags=-S fmt' prints the disassembly
    only for package fmt, while 'go build -gcflags=all=-S fmt'
    prints the disassembly for fmt and all its dependencies.
    
    For more about specifying packages, see 'go help packages'.
    For more about where packages and binaries are installed,
    run 'go help gopath'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. doc/go_spec.html

    returns a received value along with an indication of whether the channel is closed.
    </p>
    
    
    <h3 id="Complex_numbers">Manipulating complex numbers</h3>
    
    <p>
    Three functions assemble and disassemble complex numbers.
    The built-in function <code>complex</code> constructs a complex
    value from a floating-point real and imaginary part, while
    <code>real</code> and <code>imag</code>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  7. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    // The pc is the program counter of the instruction, used for
    // expanding PC-relative addresses into absolute ones.
    // The symname function queries the symbol table for the program
    // being disassembled. Given a target address it returns the name
    // and base address of the symbol containing the target, if any;
    // otherwise it returns "", 0.
    // The reader text should read from the text segment using text addresses
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    		// instruction. Because the instruction tables distinguished these two,
    		// any operand size prefix has been marked as used (to decide which
    		// branch to take). Unmark it, so that it will show up in disassembly,
    		// so that the reader can tell the size of memory operand.
    		// up with the same arguments
    		dst, _ := inst.Args[0].(Reg)
    		src, _ := inst.Args[1].(Reg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  9. src/runtime/pprof/proto.go

    	if id := b.emitLocation(); id > 0 { // emit remaining location.
    		locs = append(locs, id)
    	}
    	return locs
    }
    
    // Here's an example of how Go 1.17 writes out inlined functions, compiled for
    // linux/amd64. The disassembly of main.main shows two levels of inlining: main
    // calls b, b calls a, a does some work.
    //
    //   inline.go:9   0x4553ec  90              NOPL                 // func main()    { b(v) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    	// specific instruction to which they are attached? It depends.
    	// If they really have no meaning, they are ignored. However, a future
    	// processor may assign a different meaning. As a disassembler, we
    	// don't really know whether we're seeing a meaningless prefix or one
    	// whose meaning we simply haven't been told yet.
    	//
    	// Combining the two questions, what happens when conflicting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
Back to top