Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 365 for i386 (0.17 sec)

  1. test/codegen/memops.go

    func idxLoadPlusOp32(x []int32, i int) int32 {
    	s := x[0]
    	// 386: `ADDL\t4\([A-Z]+\)\([A-Z]+\*4\), [A-Z]+`
    	// amd64: `ADDL\t4\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*4\), [A-Z]+[0-9]*`
    	s += x[i+1]
    	// 386: `SUBL\t8\([A-Z]+\)\([A-Z]+\*4\), [A-Z]+`
    	// amd64: `SUBL\t8\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*4\), [A-Z]+[0-9]*`
    	s -= x[i+2]
    	// 386: `IMULL\t12\([A-Z]+\)\([A-Z]+\*4\), [A-Z]+`
    	s *= x[i+3]
    	// 386: `ANDL\t16\([A-Z]+\)\([A-Z]+\*4\), [A-Z]+`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    #ifdef GOOS_darwin
    #define NEED_OS_SUPPORT_AX V3_OS_SUPPORT_AX
    // These values are from:
    // https://github.com/apple/darwin-xnu/blob/xnu-4570.1.46/osfmk/i386/cpu_capabilities.h
    #define commpage64_base_address         0x00007fffffe00000
    #define commpage64_cpu_capabilities64   (commpage64_base_address+0x010)
    #define commpage64_version              (commpage64_base_address+0x01E)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. src/internal/goarch/zgoarch_386.go

    // Code generated by gengoarch.go using 'go generate'. DO NOT EDIT.
    
    //go:build 386
    
    package goarch
    
    const GOARCH = `386`
    
    const Is386 = 1
    const IsAmd64 = 0
    const IsAmd64p32 = 0
    const IsArm = 0
    const IsArmbe = 0
    const IsArm64 = 0
    const IsArm64be = 0
    const IsLoong64 = 0
    const IsMips = 0
    const IsMipsle = 0
    const IsMips64 = 0
    const IsMips64le = 0
    const IsMips64p32 = 0
    const IsMips64p32le = 0
    const IsPpc = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 574 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.android-386.txt

    golang.org/******@****.***d-386
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.android-386"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 298 bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/386.s

    Cherry Zhang <******@****.***> 1554826227 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 18:57:21 UTC 2019
    - 2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.openbsd-386.txt

    golang.org/******@****.***d-386
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.openbsd-386"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 298 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.linux-386.txt

    golang.org/******@****.***-386
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.linux-386"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 294 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.netbsd-386.txt

    golang.org/******@****.***-386
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.netbsd-386"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 296 bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    	}
    	return flags
    }
    
    // hostlinkArchArgs returns arguments to pass to the external linker
    // based on the architecture.
    func hostlinkArchArgs(arch *sys.Arch) []string {
    	switch arch.Family {
    	case sys.I386:
    		return []string{"-m32"}
    	case sys.AMD64:
    		if buildcfg.GOOS == "darwin" {
    			return []string{"-arch", "x86_64", "-m64"}
    		}
    		return []string{"-m64"}
    	case sys.S390X:
    		return []string{"-m64"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. src/debug/plan9obj/testdata/386-plan9-exec

    Andrew Gerrand <******@****.***> 1441330476 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 04 02:59:49 UTC 2015
    - 36.4K bytes
    - Viewed (0)
Back to top