Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(384)

Side by Side Diff: src/builtins/builtins.h

Issue 2599683002: [turbofan] Introduce a dedicated StringCharAt operator. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/builtins/builtins-string.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_BUILTINS_BUILTINS_H_ 5 #ifndef V8_BUILTINS_BUILTINS_H_
6 #define V8_BUILTINS_BUILTINS_H_ 6 #define V8_BUILTINS_BUILTINS_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/handles.h" 9 #include "src/handles.h"
10 10
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 ASM(InterruptCheck) \ 97 ASM(InterruptCheck) \
98 ASM(StackCheck) \ 98 ASM(StackCheck) \
99 \ 99 \
100 /* String helpers */ \ 100 /* String helpers */ \
101 TFS(StringEqual, BUILTIN, kNoExtraICState, Compare) \ 101 TFS(StringEqual, BUILTIN, kNoExtraICState, Compare) \
102 TFS(StringNotEqual, BUILTIN, kNoExtraICState, Compare) \ 102 TFS(StringNotEqual, BUILTIN, kNoExtraICState, Compare) \
103 TFS(StringLessThan, BUILTIN, kNoExtraICState, Compare) \ 103 TFS(StringLessThan, BUILTIN, kNoExtraICState, Compare) \
104 TFS(StringLessThanOrEqual, BUILTIN, kNoExtraICState, Compare) \ 104 TFS(StringLessThanOrEqual, BUILTIN, kNoExtraICState, Compare) \
105 TFS(StringGreaterThan, BUILTIN, kNoExtraICState, Compare) \ 105 TFS(StringGreaterThan, BUILTIN, kNoExtraICState, Compare) \
106 TFS(StringGreaterThanOrEqual, BUILTIN, kNoExtraICState, Compare) \ 106 TFS(StringGreaterThanOrEqual, BUILTIN, kNoExtraICState, Compare) \
107 TFS(StringCharAt, BUILTIN, kNoExtraICState, StringCharAt) \
107 \ 108 \
108 /* Interpreter */ \ 109 /* Interpreter */ \
109 ASM(InterpreterEntryTrampoline) \ 110 ASM(InterpreterEntryTrampoline) \
110 ASM(InterpreterPushArgsAndCall) \ 111 ASM(InterpreterPushArgsAndCall) \
111 ASM(InterpreterPushArgsAndCallFunction) \ 112 ASM(InterpreterPushArgsAndCallFunction) \
112 ASM(InterpreterPushArgsAndTailCall) \ 113 ASM(InterpreterPushArgsAndTailCall) \
113 ASM(InterpreterPushArgsAndTailCallFunction) \ 114 ASM(InterpreterPushArgsAndTailCallFunction) \
114 ASM(InterpreterPushArgsAndConstruct) \ 115 ASM(InterpreterPushArgsAndConstruct) \
115 ASM(InterpreterPushArgsAndConstructFunction) \ 116 ASM(InterpreterPushArgsAndConstructFunction) \
116 ASM(InterpreterPushArgsAndConstructArray) \ 117 ASM(InterpreterPushArgsAndConstructArray) \
(...skipping 735 matching lines...) Expand 10 before | Expand all | Expand 10 after
852 853
853 friend class Isolate; 854 friend class Isolate;
854 855
855 DISALLOW_COPY_AND_ASSIGN(Builtins); 856 DISALLOW_COPY_AND_ASSIGN(Builtins);
856 }; 857 };
857 858
858 } // namespace internal 859 } // namespace internal
859 } // namespace v8 860 } // namespace v8
860 861
861 #endif // V8_BUILTINS_BUILTINS_H_ 862 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « no previous file | src/builtins/builtins-string.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698