mirror of
https://github.com/golang/go.git
synced 2025-05-27 18:31:35 +00:00
runtime: replace calls to hasprefix with hasPrefix
The hasprefix function is redundant and can be removed since it has the same implementation as hasPrefix modulo variable names. Fixes #25688 Change-Id: I499cc24a2b5c38d1301718a4e66f555fd138386f Reviewed-on: https://go-review.googlesource.com/115835 Run-TryBot: Martin Möhrmann <moehrmann@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ilya Tocar <ilya.tocar@intel.com>
This commit is contained in:
parent
2fad8b219f
commit
b0dc54697b
@ -115,7 +115,7 @@ func (h *debugCallHandler) handle(info *siginfo, ctxt *sigctxt, gp2 *g) bool {
|
||||
return false
|
||||
}
|
||||
f := findfunc(uintptr(ctxt.rip()))
|
||||
if !(hasprefix(funcname(f), "runtime.debugCall") || hasprefix(funcname(f), "debugCall")) {
|
||||
if !(hasPrefix(funcname(f), "runtime.debugCall") || hasPrefix(funcname(f), "debugCall")) {
|
||||
println("trap in unknown function", funcname(f))
|
||||
return false
|
||||
}
|
||||
|
@ -44,7 +44,7 @@ func sighandler(_ureg *ureg, note *byte, gp *g) int {
|
||||
// level by the program but will otherwise be ignored.
|
||||
flags = _SigNotify
|
||||
for sig, t = range sigtable {
|
||||
if hasprefix(notestr, t.name) {
|
||||
if hasPrefix(notestr, t.name) {
|
||||
flags = t.flags
|
||||
break
|
||||
}
|
||||
|
@ -112,20 +112,20 @@ func sigpanic() {
|
||||
}
|
||||
|
||||
func atolwhex(p string) int64 {
|
||||
for hasprefix(p, " ") || hasprefix(p, "\t") {
|
||||
for hasPrefix(p, " ") || hasPrefix(p, "\t") {
|
||||
p = p[1:]
|
||||
}
|
||||
neg := false
|
||||
if hasprefix(p, "-") || hasprefix(p, "+") {
|
||||
if hasPrefix(p, "-") || hasPrefix(p, "+") {
|
||||
neg = p[0] == '-'
|
||||
p = p[1:]
|
||||
for hasprefix(p, " ") || hasprefix(p, "\t") {
|
||||
for hasPrefix(p, " ") || hasPrefix(p, "\t") {
|
||||
p = p[1:]
|
||||
}
|
||||
}
|
||||
var n int64
|
||||
switch {
|
||||
case hasprefix(p, "0x"), hasprefix(p, "0X"):
|
||||
case hasPrefix(p, "0x"), hasPrefix(p, "0X"):
|
||||
p = p[2:]
|
||||
for ; len(p) > 0; p = p[1:] {
|
||||
if '0' <= p[0] && p[0] <= '9' {
|
||||
@ -138,7 +138,7 @@ func atolwhex(p string) int64 {
|
||||
break
|
||||
}
|
||||
}
|
||||
case hasprefix(p, "0"):
|
||||
case hasPrefix(p, "0"):
|
||||
for ; len(p) > 0 && '0' <= p[0] && p[0] <= '7'; p = p[1:] {
|
||||
n = n*8 + int64(p[0]-'0')
|
||||
}
|
||||
|
@ -498,7 +498,7 @@ func cpuinit() {
|
||||
p := argv_index(argv, argc+1+i)
|
||||
s := *(*string)(unsafe.Pointer(&stringStruct{unsafe.Pointer(p), findnull(p)}))
|
||||
|
||||
if hasprefix(s, prefix) {
|
||||
if hasPrefix(s, prefix) {
|
||||
env = gostring(p)[len(prefix):]
|
||||
break
|
||||
}
|
||||
@ -3702,7 +3702,7 @@ func sigprof(pc, sp, lr uintptr, gp *g, mp *m) {
|
||||
// received from somewhere else (with _LostSIGPROFDuringAtomic64 as pc).
|
||||
if GOARCH == "mips" || GOARCH == "mipsle" || GOARCH == "arm" {
|
||||
if f := findfunc(pc); f.valid() {
|
||||
if hasprefix(funcname(f), "runtime/internal/atomic") {
|
||||
if hasPrefix(funcname(f), "runtime/internal/atomic") {
|
||||
lostAtomic64Count++
|
||||
return
|
||||
}
|
||||
|
@ -333,7 +333,7 @@ func index(s, t string) int {
|
||||
return 0
|
||||
}
|
||||
for i := 0; i < len(s); i++ {
|
||||
if s[i] == t[0] && hasprefix(s[i:], t) {
|
||||
if s[i] == t[0] && hasPrefix(s[i:], t) {
|
||||
return i
|
||||
}
|
||||
}
|
||||
@ -344,8 +344,8 @@ func contains(s, t string) bool {
|
||||
return index(s, t) >= 0
|
||||
}
|
||||
|
||||
func hasprefix(s, t string) bool {
|
||||
return len(s) >= len(t) && s[:len(t)] == t
|
||||
func hasPrefix(s, prefix string) bool {
|
||||
return len(s) >= len(prefix) && s[:len(prefix)] == prefix
|
||||
}
|
||||
|
||||
const (
|
||||
|
@ -843,7 +843,7 @@ func showfuncinfo(f funcInfo, firstFrame, elideWrapper bool) bool {
|
||||
return true
|
||||
}
|
||||
|
||||
return contains(name, ".") && (!hasprefix(name, "runtime.") || isExportedRuntime(name))
|
||||
return contains(name, ".") && (!hasPrefix(name, "runtime.") || isExportedRuntime(name))
|
||||
}
|
||||
|
||||
// isExportedRuntime reports whether name is an exported runtime function.
|
||||
@ -1022,7 +1022,7 @@ func isSystemGoroutine(gp *g) bool {
|
||||
// back into user code.
|
||||
return !fingRunning
|
||||
}
|
||||
return hasprefix(funcname(f), "runtime.")
|
||||
return hasPrefix(funcname(f), "runtime.")
|
||||
}
|
||||
|
||||
// SetCgoTraceback records three C functions to use to gather
|
||||
|
@ -112,10 +112,6 @@ func (t *_type) uncommon() *uncommontype {
|
||||
}
|
||||
}
|
||||
|
||||
func hasPrefix(s, prefix string) bool {
|
||||
return len(s) >= len(prefix) && s[:len(prefix)] == prefix
|
||||
}
|
||||
|
||||
func (t *_type) name() string {
|
||||
if t.tflag&tflagNamed == 0 {
|
||||
return ""
|
||||
|
Loading…
x
Reference in New Issue
Block a user