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_FULL_CODEGEN_FULL_CODEGEN_H_ | 5 #ifndef V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
6 #define V8_FULL_CODEGEN_FULL_CODEGEN_H_ | 6 #define V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
7 | 7 |
8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
9 #include "src/assert-scope.h" | 9 #include "src/assert-scope.h" |
10 #include "src/ast/ast.h" | 10 #include "src/ast/ast.h" |
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
405 F(IsArray) \ | 405 F(IsArray) \ |
406 F(IsTypedArray) \ | 406 F(IsTypedArray) \ |
407 F(IsJSProxy) \ | 407 F(IsJSProxy) \ |
408 F(Call) \ | 408 F(Call) \ |
409 F(IsJSReceiver) \ | 409 F(IsJSReceiver) \ |
410 F(GetSuperConstructor) \ | 410 F(GetSuperConstructor) \ |
411 F(DebugBreakInOptimizedCode) \ | 411 F(DebugBreakInOptimizedCode) \ |
412 F(ClassOf) \ | 412 F(ClassOf) \ |
413 F(StringCharCodeAt) \ | 413 F(StringCharCodeAt) \ |
414 F(SubString) \ | 414 F(SubString) \ |
415 F(RegExpExec) \ | |
416 F(ToInteger) \ | 415 F(ToInteger) \ |
417 F(NumberToString) \ | |
418 F(ToString) \ | 416 F(ToString) \ |
419 F(ToLength) \ | 417 F(ToLength) \ |
420 F(ToNumber) \ | 418 F(ToNumber) \ |
421 F(ToObject) \ | 419 F(ToObject) \ |
422 F(DebugIsActive) \ | 420 F(DebugIsActive) \ |
423 F(CreateIterResultObject) | 421 F(CreateIterResultObject) |
424 | 422 |
425 #define GENERATOR_DECLARATION(Name) void Emit##Name(CallRuntime* call); | 423 #define GENERATOR_DECLARATION(Name) void Emit##Name(CallRuntime* call); |
426 FOR_EACH_FULL_CODE_INTRINSIC(GENERATOR_DECLARATION) | 424 FOR_EACH_FULL_CODE_INTRINSIC(GENERATOR_DECLARATION) |
427 #undef GENERATOR_DECLARATION | 425 #undef GENERATOR_DECLARATION |
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
895 Address start_; | 893 Address start_; |
896 Address instruction_start_; | 894 Address instruction_start_; |
897 uint32_t length_; | 895 uint32_t length_; |
898 }; | 896 }; |
899 | 897 |
900 | 898 |
901 } // namespace internal | 899 } // namespace internal |
902 } // namespace v8 | 900 } // namespace v8 |
903 | 901 |
904 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ | 902 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
OLD | NEW |