Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Disassemble (0.15 sec)

  1. doc/go1.17_spec.html

    does not exist, <code>delete</code> is a no-op.
    </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: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.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,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    		return strings.HasPrefix(s.Name, "libc_")
    	}
    	return ctxt.Arch.Family == sys.I386 && !ctxt.Flag_shared
    }
    
    // single-instruction no-ops of various lengths.
    // constructed by hand and disassembled with gdb to verify.
    // see http://www.agner.org/optimize/optimizing_assembly.pdf for discussion.
    var nop = [][16]uint8{
    	{0x90},
    	{0x66, 0x90},
    	{0x0F, 0x1F, 0x00},
    	{0x0F, 0x1F, 0x40, 0x00},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm7.go

    	case 45: /* sxt/uxt[bhw] R,R; movT R,R -> sxtT R,R */
    		as := p.As
    		rt, rf := p.To.Reg, p.From.Reg
    		if rf == REGZERO {
    			as = AMOVWU /* clearer in disassembly */
    		}
    		switch as {
    		case AMOVB, ASXTB:
    			o1 = c.opbfm(p, ASBFM, 0, 7, rf, rt)
    
    		case AMOVH, ASXTH:
    			o1 = c.opbfm(p, ASBFM, 0, 15, rf, rt)
    
    		case AMOVW, ASXTW:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top