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>
43 lines
578 B
Go
43 lines
578 B
Go
// asmcheck -gcflags=-spectre=ret
|
|
|
|
//go:build amd64
|
|
|
|
package codegen
|
|
|
|
func CallFunc(f func()) {
|
|
// amd64:`CALL runtime.retpoline`
|
|
f()
|
|
}
|
|
|
|
func CallInterface(x interface{ M() }) {
|
|
// amd64:`CALL runtime.retpoline`
|
|
x.M()
|
|
}
|
|
|
|
// Check to make sure that jump tables are disabled
|
|
// when retpoline is on. See issue 57097.
|
|
func noJumpTables(x int) int {
|
|
switch x {
|
|
case 0:
|
|
return 0
|
|
case 1:
|
|
return 1
|
|
case 2:
|
|
return 2
|
|
case 3:
|
|
return 3
|
|
case 4:
|
|
return 4
|
|
case 5:
|
|
return 5
|
|
case 6:
|
|
return 6
|
|
case 7:
|
|
return 7
|
|
case 8:
|
|
return 8
|
|
case 9:
|
|
return 9
|
|
}
|
|
return 10
|
|
}
|