HEX
Server: LiteSpeed
System: Linux houston.panomity.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
User: nudepix (1011)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //lib/go/test/strength.go
// runoutput

// 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.

// Generate test of strength reduction for multiplications
// with constants. Especially useful for amd64/386.

package main

import "fmt"

func testMul(fact, bits int) string {
	n := fmt.Sprintf("testMul_%d_%d", fact, bits)
	fmt.Printf("func %s(s int%d) {\n", n, bits)

	want := 0
	for i := 0; i < 200; i++ {
		fmt.Printf(`	if want, got := int%d(%d), s*%d; want != got {
		failed = true
		fmt.Printf("got %d * %%d == %%d, wanted %d\n",  s, got)
	}
`, bits, want, i, i, want)
		want += fact
	}

	fmt.Printf("}\n")
	return fmt.Sprintf("%s(%d)", n, fact)
}

func main() {
	fmt.Printf("package main\n")
	fmt.Printf("import \"fmt\"\n")
	fmt.Printf("var failed = false\n")

	f1 := testMul(17, 32)
	f2 := testMul(131, 64)

	fmt.Printf("func main() {\n")
	fmt.Println(f1)
	fmt.Println(f2)
	fmt.Printf("if failed {\n	panic(\"multiplication failed\")\n}\n")
	fmt.Printf("}\n")
}