Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 329 for ssa2 (0.08 sec)

  1. src/cmd/internal/objabi/flag.go

    				help := f.tab[name].help
    				fmt.Printf("\t%-*s\t%s\n", maxLen, name, strings.Replace(help, "\n", nl, -1))
    			}
    			if f.debugSSA != nil {
    				// ssa options have their own help
    				fmt.Printf("\t%-*s\t%s\n", maxLen, "ssa/help", "print help about SSA debugging")
    			}
    			os.Exit(0)
    		}
    
    		val, valstring, haveInt := 1, "", true
    		if i := strings.IndexAny(name, "=:"); i >= 0 {
    			var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 23:08:09 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. test/fixedbugs/issue19084.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 19084: SSA doesn't handle CONVNOP STRUCTLIT
    
    package p
    
    type T struct {
    	a, b, c, d, e, f, g, h int // big, not SSA-able
    }
    
    func f() {
    	_ = T(T{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:57:56 UTC 2017
    - 330 bytes
    - Viewed (0)
  3. test/fixedbugs/issue25993.go

    // compile -d=ssa/check/on
    
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 25993: SSA check fails on ARM.
    
    package p
    
    func f() {
    	var x int
    	var B0 bool
    	B0 = !B0 || B0
    	if B0 && B0 {
    		x = -1
    	}
    	var AI []int
    	var AB []bool
    	_ = AI[x] > 0 && AB[x]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 22 16:25:32 UTC 2018
    - 373 bytes
    - Viewed (0)
  4. test/codegen/memops.go

    	// 386/sse2: `MOVSD\t8\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*8\), X[0-9]+`
    	//    arm64: `FMOVD\t\(R[0-9]*\)\(R[0-9]*<<3\), F[0-9]+`
    	t = x[i+1]
    	//    amd64: `MOVSD\tX[0-9]+, 8\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*8\)`
    	// 386/sse2: `MOVSD\tX[0-9]+, 8\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*8\)`
    	//    arm64: `FMOVD\tF[0-9]+, \(R[0-9]*\)\(R[0-9]*<<3\)`
    	y[i+1] = t
    	//    amd64: `MOVSD\t8\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*[18]\), X[0-9]+`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/README

    This command generates Go code (in the parent directory) for all
    the architecture-specific opcodes, blocks, and rewrites. See the
    "Hacking on SSA" section in the parent directory's README.md for
    more information.
    
    To regenerate everything, run "go generate" on the ssa package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 462 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/arm64/galign.go

    package arm64
    
    import (
    	"cmd/compile/internal/ssa"
    	"cmd/compile/internal/ssagen"
    	"cmd/internal/obj/arm64"
    )
    
    func Init(arch *ssagen.ArchInfo) {
    	arch.LinkArch = &arm64.Linkarm64
    	arch.REGSP = arm64.REGSP
    	arch.MAXWIDTH = 1 << 50
    
    	arch.PadFrame = padframe
    	arch.ZeroRange = zerorange
    	arch.Ginsnop = ginsnop
    
    	arch.SSAMarkMoves = func(s *ssagen.State, b *ssa.Block) {}
    	arch.SSAGenValue = ssaGenValue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 03 21:05:55 UTC 2021
    - 666 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/mips64/galign.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package mips64
    
    import (
    	"cmd/compile/internal/ssa"
    	"cmd/compile/internal/ssagen"
    	"cmd/internal/obj/mips"
    	"internal/buildcfg"
    )
    
    func Init(arch *ssagen.ArchInfo) {
    	arch.LinkArch = &mips.Linkmips64
    	if buildcfg.GOARCH == "mips64le" {
    		arch.LinkArch = &mips.Linkmips64le
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 03 21:05:55 UTC 2021
    - 718 bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    	SMUSD_X_ZZ:        "SMUSD.X.ZZ",
    	SSAT_EQ:           "SSAT.EQ",
    	SSAT_NE:           "SSAT.NE",
    	SSAT_CS:           "SSAT.CS",
    	SSAT_CC:           "SSAT.CC",
    	SSAT_MI:           "SSAT.MI",
    	SSAT_PL:           "SSAT.PL",
    	SSAT_VS:           "SSAT.VS",
    	SSAT_VC:           "SSAT.VC",
    	SSAT_HI:           "SSAT.HI",
    	SSAT_LS:           "SSAT.LS",
    	SSAT_GE:           "SSAT.GE",
    	SSAT_LT:           "SSAT.LT",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
  9. src/sort/sort_slices_benchmark_test.go

    func TestStructSorts(t *testing.T) {
    	ss := makeRandomStructs(200)
    	ss2 := make([]*myStruct, len(ss))
    	for i := range ss {
    		ss2[i] = &myStruct{n: ss[i].n}
    	}
    
    	Sort(ss)
    	slices.SortFunc(ss2, func(a, b *myStruct) int { return a.n - b.n })
    
    	for i := range ss {
    		if *ss[i] != *ss2[i] {
    			t.Fatalf("ints2 mismatch at %d; %v != %v", i, *ss[i], *ss2[i])
    		}
    	}
    }
    
    func BenchmarkSortStructs(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 22:59:40 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. cmd/sftp-server.go

    // because they have reached the end of their useful life.
    // https://cs.opensource.google/go/x/crypto/+/refs/tags/v0.22.0:ssh/common.go;l=85
    var supportedMACs = []string{
    	"hmac-sha2******@****.***", "hmac-sha2******@****.***", "hmac-sha2-256", "hmac-sha2-512", "hmac-sha1", "hmac-sha1-96",
    }
    
    func sshPubKeyAuth(c ssh.ConnMetadata, key ssh.PublicKey) (*ssh.Permissions, error) {
    	return authenticateSSHConnection(c, key, nil)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top