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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 F(InterpreterEquals, 2, 1) \ | 209 F(InterpreterEquals, 2, 1) \ |
210 F(InterpreterNotEquals, 2, 1) \ | 210 F(InterpreterNotEquals, 2, 1) \ |
211 F(InterpreterStrictEquals, 2, 1) \ | 211 F(InterpreterStrictEquals, 2, 1) \ |
212 F(InterpreterStrictNotEquals, 2, 1) \ | 212 F(InterpreterStrictNotEquals, 2, 1) \ |
213 F(InterpreterLessThan, 2, 1) \ | 213 F(InterpreterLessThan, 2, 1) \ |
214 F(InterpreterGreaterThan, 2, 1) \ | 214 F(InterpreterGreaterThan, 2, 1) \ |
215 F(InterpreterLessThanOrEqual, 2, 1) \ | 215 F(InterpreterLessThanOrEqual, 2, 1) \ |
216 F(InterpreterGreaterThanOrEqual, 2, 1) \ | 216 F(InterpreterGreaterThanOrEqual, 2, 1) \ |
217 F(InterpreterToBoolean, 1, 1) \ | 217 F(InterpreterToBoolean, 1, 1) \ |
218 F(InterpreterLogicalNot, 1, 1) \ | 218 F(InterpreterLogicalNot, 1, 1) \ |
219 F(InterpreterTypeOf, 1, 1) \ | |
220 F(InterpreterNewClosure, 2, 1) \ | 219 F(InterpreterNewClosure, 2, 1) \ |
221 F(InterpreterTraceBytecodeEntry, 3, 1) \ | 220 F(InterpreterTraceBytecodeEntry, 3, 1) \ |
222 F(InterpreterTraceBytecodeExit, 3, 1) \ | 221 F(InterpreterTraceBytecodeExit, 3, 1) \ |
223 F(InterpreterClearPendingMessage, 0, 1) \ | 222 F(InterpreterClearPendingMessage, 0, 1) \ |
224 F(InterpreterSetPendingMessage, 1, 1) | 223 F(InterpreterSetPendingMessage, 1, 1) |
225 | 224 |
226 #define FOR_EACH_INTRINSIC_FUNCTION(F) \ | 225 #define FOR_EACH_INTRINSIC_FUNCTION(F) \ |
227 F(FunctionGetName, 1, 1) \ | 226 F(FunctionGetName, 1, 1) \ |
228 F(FunctionSetName, 2, 1) \ | 227 F(FunctionSetName, 2, 1) \ |
229 F(FunctionRemovePrototype, 1, 1) \ | 228 F(FunctionRemovePrototype, 1, 1) \ |
(...skipping 967 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1197 | 1196 |
1198 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1197 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
1199 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1198 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
1200 STATIC_ASSERT(LANGUAGE_END == 3); | 1199 STATIC_ASSERT(LANGUAGE_END == 3); |
1201 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1200 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
1202 | 1201 |
1203 } // namespace internal | 1202 } // namespace internal |
1204 } // namespace v8 | 1203 } // namespace v8 |
1205 | 1204 |
1206 #endif // V8_RUNTIME_RUNTIME_H_ | 1205 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |