Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for I386 (0.12 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    			} else if ctxt.Arch.Family == sys.I386 {
    				// On 386 PC-relative addressing (for non-call/jmp instructions)
    				// assumes that the previous instruction loaded the PC of the end
    				// of that instruction into CX, so the adjustment is relative to
    				// that.
    				r.Add += int64(r.Off) - p.Pc + int64(r.Siz)
    			}
    		}
    		if r.Type == objabi.R_GOTPCREL && ctxt.Arch.Family == sys.I386 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

     * $FreeBSD: src/sys/amd64/include/elf.h,v 1.18 2004/08/03 08:21:48 dfr Exp $
     * $FreeBSD: src/sys/arm/include/elf.h,v 1.5.2.1 2006/06/30 21:42:52 cognet Exp $
     * $FreeBSD: src/sys/i386/include/elf.h,v 1.16 2004/08/02 19:12:17 dfr Exp $
     * $FreeBSD: src/sys/powerpc/include/elf.h,v 1.7 2004/11/02 09:47:01 ssouhlal Exp $
     * $FreeBSD: src/sys/sparc64/include/elf.h,v 1.12 2003/09/25 01:10:26 peter Exp $
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	{0x4d, 0x5a, 0x90, 0x00, 0x03, 0x00},      // PE (Windows) as generated by 6l/8l and gcc
    	{0x4d, 0x5a, 0x78, 0x00, 0x01, 0x00},      // PE (Windows) as generated by llvm for dll
    	{0x00, 0x00, 0x01, 0xEB},                  // Plan 9 i386
    	{0x00, 0x00, 0x8a, 0x97},                  // Plan 9 amd64
    	{0x00, 0x00, 0x06, 0x47},                  // Plan 9 arm
    	{0x00, 0x61, 0x73, 0x6D},                  // WASM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    			r.SetAdd(int64(tplt))
    
    			// jmp *addr
    			switch ctxt.Arch.Family {
    			default:
    				return fmt.Errorf("internal error in windynrelocsym: unsupported arch %v", ctxt.Arch.Family)
    			case sys.I386:
    				rel.AddUint8(0xff)
    				rel.AddUint8(0x25)
    				rel.AddAddrPlus(ctxt.Arch, targ, 0)
    				rel.AddUint8(0x90)
    				rel.AddUint8(0x90)
    			case sys.AMD64:
    				rel.AddUint8(0xff)
    				rel.AddUint8(0x24)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // Operators have the same meaning as in Go.
    //
    // For example, the following build constraint constrains a file to
    // build when the "linux" and "386" constraints are satisfied, or when
    // "darwin" is satisfied and "cgo" is not:
    //
    //	//go:build (linux && 386) || (darwin && !cgo)
    //
    // It is an error for a file to have more than one //go:build line.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_VSWSCANF                        = 0x94E // 2382
    	SYS_IMAXABS                         = 0x950 // 2384
    	SYS_IMAXDIV                         = 0x951 // 2385
    	SYS_STRTOIMAX                       = 0x952 // 2386
    	SYS_STRTOUMAX                       = 0x953 // 2387
    	SYS_WCSTOIMAX                       = 0x954 // 2388
    	SYS_WCSTOUMAX                       = 0x955 // 2389
    	SYS_ATOLL                           = 0x956 // 2390
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  7. src/cmd/trace/testdata/go122.test

    GoStop dt=315468 reason_string=16 stack=50
    GoStart dt=20 g=38 g_seq=3
    GoDestroy dt=160861
    ProcStop dt=34
    EventBatch gen=1 m=1709044 time=7689670489757 size=2312
    ProcStart dt=310 p=3 p_seq=2
    ProcStop dt=39
    ProcStart dt=1386 p=3 p_seq=3
    ProcStop dt=138
    ProcStart dt=3920 p=0 p_seq=5
    GoStart dt=266 g=24 g_seq=7
    GoUnblock dt=50 g=1 g_seq=25 stack=41
    GoBlock dt=13 reason_string=15 stack=27
    GoStart dt=7 g=1 g_seq=26
    GCMarkAssistEnd dt=6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    	}
    	cpu.Initialize(env)
    
    	// Support cpu feature variables are used in code generated by the compiler
    	// to guard execution of instructions that can not be assumed to be always supported.
    	switch GOARCH {
    	case "386", "amd64":
    		x86HasPOPCNT = cpu.X86.HasPOPCNT
    		x86HasSSE41 = cpu.X86.HasSSE41
    		x86HasFMA = cpu.X86.HasFMA
    
    	case "arm":
    		armHasVFPv4 = cpu.ARM.HasVFPv4
    
    	case "arm64":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top