Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 329 for ssa2 (0.04 sec)

  1. src/cmd/compile/internal/ssa/location.go

    // Copyright 2015 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 ssa
    
    import (
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/types"
    	"fmt"
    )
    
    // A place that an ssa variable can reside.
    type Location interface {
    	String() string // name to use in assembly templates: AX, 16(SP), ...
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/testdata/infloop.gdb-opt.nexts

      src/cmd/compile/internal/ssa/testdata/infloop.go
    6:	func test() {
    8:		go func() {}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:04:34 UTC 2019
    - 98 bytes
    - Viewed (0)
  3. test/intrinsic.go

    // errorcheckandrundir -0 -d=ssa/intrinsics/debug
    
    //go:build amd64 || arm64 || arm || s390x
    
    // Copyright 2016 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.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 270 bytes
    - Viewed (0)
  4. test/opt_branchlikely.go

    // errorcheck -0 -d=ssa/likelyadjust/debug=1,ssa/insert_resched_checks/off
    // rescheduling check insertion is turned off because the inserted conditional branches perturb the errorcheck
    
    //go:build amd64
    
    // Copyright 2016 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.
    
    // Test that branches have some prediction properties.
    package foo
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. src/internal/cpu/cpu_arm64.go

    const CacheLinePadSize = 128
    
    func doinit() {
    	options = []option{
    		{Name: "aes", Feature: &ARM64.HasAES},
    		{Name: "pmull", Feature: &ARM64.HasPMULL},
    		{Name: "sha1", Feature: &ARM64.HasSHA1},
    		{Name: "sha2", Feature: &ARM64.HasSHA2},
    		{Name: "sha512", Feature: &ARM64.HasSHA512},
    		{Name: "crc32", Feature: &ARM64.HasCRC32},
    		{Name: "atomics", Feature: &ARM64.HasATOMICS},
    		{Name: "cpuid", Feature: &ARM64.HasCPUID},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 25 14:08:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. test/fixedbugs/issue42753.go

    // compile -d=ssa/check/on
    
    // Copyright 2020 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 main
    
    func f() uint32 {
    	s := "\x01"
    	x := -int32(s[0])
    	return uint32(x) & 0x7fffffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 21 16:46:05 UTC 2020
    - 285 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/generate.go

    // Copyright 2022 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.
    
    //go:build generate
    
    package ssa
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 225 bytes
    - Viewed (0)
  8. test/fixedbugs/issue52278.go

    // compile -d=ssa/check/on
    
    // Copyright 2022 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 main
    
    func main() {
    _:
    _:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 25 20:44:49 UTC 2022
    - 224 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/opt.go

    // Copyright 2015 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 ssa
    
    // machine-independent optimization.
    func opt(f *Func) {
    	applyRewrite(f, rewriteBlockgeneric, rewriteValuegeneric, removeDeadValues)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 309 bytes
    - Viewed (0)
  10. test/fixedbugs/issue31915.go

    // compile -d=ssa/check/on
    
    // Copyright 2019 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 p
    
    func f()
    
    func g() {
    	var a []int
    	var b bool
    	for {
    		b = (b && b) != (b && b)
    		for b && b == b || true {
    			f()
    			_ = a[0]
    		}
    		_ = &b
    		a = []int{}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 19:04:43 UTC 2019
    - 358 bytes
    - Viewed (0)
Back to top