[ARM] Fix typo in comment in arm_expand_prologue
[official-gcc.git] / libgo / go / strings / strings_s390x.go
blobb47702fd51a77ee4e08a33655bfd624c002ba006
1 // Copyright 2016 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // +build ignore
7 package strings
9 //go:noescape
11 // indexShortStr returns the index of the first instance of sep in s,
12 // or -1 if sep is not present in s.
13 // indexShortStr requires 2 <= len(sep) <= shortStringLen
14 func indexShortStr(s, sep string) int // ../runtime/asm_$GOARCH.s
16 // supportsVX reports whether the vector facility is available.
17 // indexShortStr must not be called if the vector facility is not
18 // available.
19 func supportsVX() bool // ../runtime/asm_s390x.s
21 var shortStringLen = -1
23 func init() {
24 if supportsVX() {
25 shortStringLen = 64
29 // Index returns the index of the first instance of sep in s, or -1 if sep is not present in s.
30 func Index(s, sep string) int {
31 n := len(sep)
32 switch {
33 case n == 0:
34 return 0
35 case n == 1:
36 return IndexByte(s, sep[0])
37 case n == len(s):
38 if sep == s {
39 return 0
41 return -1
42 case n > len(s):
43 return -1
44 case n <= shortStringLen:
45 // Use brute force when s and sep both are small
46 if len(s) <= 64 {
47 return indexShortStr(s, sep)
49 c := sep[0]
50 i := 0
51 t := s[:len(s)-n+1]
52 fails := 0
53 for i < len(t) {
54 if t[i] != c {
55 // IndexByte skips 16/32 bytes per iteration,
56 // so it's faster than indexShortStr.
57 o := IndexByte(t[i:], c)
58 if o < 0 {
59 return -1
61 i += o
63 if s[i:i+n] == sep {
64 return i
66 fails++
67 i++
68 // Switch to indexShortStr when IndexByte produces too many false positives.
69 // Too many means more that 1 error per 8 characters.
70 // Allow some errors in the beginning.
71 if fails > (i+16)/8 {
72 r := indexShortStr(s[i:], sep)
73 if r >= 0 {
74 return r + i
76 return -1
79 return -1
81 // Rabin-Karp search
82 hashsep, pow := hashStr(sep)
83 var h uint32
84 for i := 0; i < n; i++ {
85 h = h*primeRK + uint32(s[i])
87 if h == hashsep && s[:n] == sep {
88 return 0
90 for i := n; i < len(s); {
91 h *= primeRK
92 h += uint32(s[i])
93 h -= pow * uint32(s[i-n])
94 i++
95 if h == hashsep && s[i-n:i] == sep {
96 return i - n
99 return -1