OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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_RUNTIME_RUNTIME_H_ | 5 #ifndef V8_RUNTIME_RUNTIME_H_ |
6 #define V8_RUNTIME_RUNTIME_H_ | 6 #define V8_RUNTIME_RUNTIME_H_ |
7 | 7 |
8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
9 #include "src/base/platform/time.h" | 9 #include "src/base/platform/time.h" |
10 #include "src/objects.h" | 10 #include "src/objects.h" |
(...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
856 F(StringBuilderConcat, 3, 1) \ | 856 F(StringBuilderConcat, 3, 1) \ |
857 F(StringBuilderJoin, 3, 1) \ | 857 F(StringBuilderJoin, 3, 1) \ |
858 F(SparseJoinWithSeparator, 3, 1) \ | 858 F(SparseJoinWithSeparator, 3, 1) \ |
859 F(StringToArray, 2, 1) \ | 859 F(StringToArray, 2, 1) \ |
860 F(StringToLowerCase, 1, 1) \ | 860 F(StringToLowerCase, 1, 1) \ |
861 F(StringToUpperCase, 1, 1) \ | 861 F(StringToUpperCase, 1, 1) \ |
862 F(StringTrim, 3, 1) \ | 862 F(StringTrim, 3, 1) \ |
863 F(TruncateString, 2, 1) \ | 863 F(TruncateString, 2, 1) \ |
864 F(NewString, 2, 1) \ | 864 F(NewString, 2, 1) \ |
865 F(StringEqual, 2, 1) \ | 865 F(StringEqual, 2, 1) \ |
| 866 F(StringNotEqual, 2, 1) \ |
866 F(FlattenString, 1, 1) \ | 867 F(FlattenString, 1, 1) \ |
867 F(StringCharFromCode, 1, 1) \ | 868 F(StringCharFromCode, 1, 1) \ |
868 F(StringCharAt, 2, 1) \ | 869 F(StringCharAt, 2, 1) \ |
869 F(OneByteSeqStringGetChar, 2, 1) \ | 870 F(OneByteSeqStringGetChar, 2, 1) \ |
870 F(OneByteSeqStringSetChar, 3, 1) \ | 871 F(OneByteSeqStringSetChar, 3, 1) \ |
871 F(TwoByteSeqStringGetChar, 2, 1) \ | 872 F(TwoByteSeqStringGetChar, 2, 1) \ |
872 F(TwoByteSeqStringSetChar, 3, 1) \ | 873 F(TwoByteSeqStringSetChar, 3, 1) \ |
873 F(StringCharCodeAt, 2, 1) | 874 F(StringCharCodeAt, 2, 1) |
874 | 875 |
875 #define FOR_EACH_INTRINSIC_SYMBOL(F) \ | 876 #define FOR_EACH_INTRINSIC_SYMBOL(F) \ |
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1186 | 1187 |
1187 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1188 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
1188 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1189 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
1189 STATIC_ASSERT(LANGUAGE_END == 3); | 1190 STATIC_ASSERT(LANGUAGE_END == 3); |
1190 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1191 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
1191 | 1192 |
1192 } // namespace internal | 1193 } // namespace internal |
1193 } // namespace v8 | 1194 } // namespace v8 |
1194 | 1195 |
1195 #endif // V8_RUNTIME_RUNTIME_H_ | 1196 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |