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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 | 395 |
396 // Platform-specific code sequences for calls | 396 // Platform-specific code sequences for calls |
397 void EmitCall(Call* expr, ConvertReceiverMode = ConvertReceiverMode::kAny); | 397 void EmitCall(Call* expr, ConvertReceiverMode = ConvertReceiverMode::kAny); |
398 void EmitCallWithLoadIC(Call* expr); | 398 void EmitCallWithLoadIC(Call* expr); |
399 void EmitKeyedCallWithLoadIC(Call* expr, Expression* key); | 399 void EmitKeyedCallWithLoadIC(Call* expr, Expression* key); |
400 | 400 |
401 #define FOR_EACH_FULL_CODE_INTRINSIC(F) \ | 401 #define FOR_EACH_FULL_CODE_INTRINSIC(F) \ |
402 F(IsSmi) \ | 402 F(IsSmi) \ |
403 F(IsArray) \ | 403 F(IsArray) \ |
404 F(IsTypedArray) \ | 404 F(IsTypedArray) \ |
| 405 F(IsRegExp) \ |
405 F(IsJSProxy) \ | 406 F(IsJSProxy) \ |
406 F(Call) \ | 407 F(Call) \ |
407 F(NewObject) \ | 408 F(NewObject) \ |
408 F(IsJSReceiver) \ | 409 F(IsJSReceiver) \ |
409 F(GetSuperConstructor) \ | 410 F(GetSuperConstructor) \ |
410 F(DebugBreakInOptimizedCode) \ | 411 F(DebugBreakInOptimizedCode) \ |
411 F(ClassOf) \ | 412 F(ClassOf) \ |
412 F(StringCharCodeAt) \ | 413 F(StringCharCodeAt) \ |
413 F(SubString) \ | 414 F(SubString) \ |
414 F(RegExpExec) \ | 415 F(RegExpExec) \ |
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
897 Address start_; | 898 Address start_; |
898 Address instruction_start_; | 899 Address instruction_start_; |
899 uint32_t length_; | 900 uint32_t length_; |
900 }; | 901 }; |
901 | 902 |
902 | 903 |
903 } // namespace internal | 904 } // namespace internal |
904 } // namespace v8 | 905 } // namespace v8 |
905 | 906 |
906 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ | 907 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
OLD | NEW |