mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
Separate patterns in asmcheck by spaces instead of commas. Many patterns end in comma (like "MOV [$]123,") so separating patterns by comma is not great; they're already quoted, so spaces are fine. Also replace all tabs in the assembly lines with spaces before matching. Finally, replace \$ or \\$ with [$] as the matching idiom. The effect of all these is to make the patterns look like: // amd64:"BSFQ" "ORQ [$]256" instead of the old: // amd64:"BSFQ","ORQ\t\\$256" Update all tests as well. Change-Id: Ia39febe5d7f67ba115846422789e11b185d5c807 Reviewed-on: https://go-review.googlesource.com/c/go/+/716060 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Alan Donovan <adonovan@google.com> Reviewed-by: Jorropo <jorropo.pgm@gmail.com>
35 lines
1.3 KiB
Go
35 lines
1.3 KiB
Go
// asmcheck -gcflags=-clobberdead
|
|
|
|
//go:build amd64 || arm64
|
|
|
|
// Copyright 2021 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 codegen
|
|
|
|
type T [2]*int // contain pointer, not SSA-able (so locals are not registerized)
|
|
|
|
var p1, p2, p3 T
|
|
|
|
func F() {
|
|
// 3735936685 is 0xdeaddead. On ARM64 R27 is REGTMP.
|
|
// clobber x, y at entry. not clobber z (stack object).
|
|
// amd64:`MOVL \$3735936685, command-line-arguments\.x`, `MOVL \$3735936685, command-line-arguments\.y`, -`MOVL \$3735936685, command-line-arguments\.z`
|
|
// arm64:`MOVW R27, command-line-arguments\.x`, `MOVW R27, command-line-arguments\.y`, -`MOVW R27, command-line-arguments\.z`
|
|
x, y, z := p1, p2, p3
|
|
addrTaken(&z)
|
|
// x is dead at the call (the value of x is loaded before the CALL), y is not
|
|
// amd64:`MOVL \$3735936685, command-line-arguments\.x`, -`MOVL \$3735936685, command-line-arguments\.y`
|
|
// arm64:`MOVW R27, command-line-arguments\.x`, -`MOVW R27, command-line-arguments\.y`
|
|
use(x)
|
|
// amd64:`MOVL \$3735936685, command-line-arguments\.x`, `MOVL \$3735936685, command-line-arguments\.y`
|
|
// arm64:`MOVW R27, command-line-arguments\.x`, `MOVW R27, command-line-arguments\.y`
|
|
use(y)
|
|
}
|
|
|
|
//go:noinline
|
|
func use(T) {}
|
|
|
|
//go:noinline
|
|
func addrTaken(*T) {}
|