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) \ | |
406 F(IsJSProxy) \ | 405 F(IsJSProxy) \ |
407 F(Call) \ | 406 F(Call) \ |
408 F(IsJSReceiver) \ | 407 F(IsJSReceiver) \ |
409 F(GetSuperConstructor) \ | 408 F(GetSuperConstructor) \ |
410 F(DebugBreakInOptimizedCode) \ | 409 F(DebugBreakInOptimizedCode) \ |
411 F(ClassOf) \ | 410 F(ClassOf) \ |
412 F(StringCharCodeAt) \ | 411 F(StringCharCodeAt) \ |
413 F(SubString) \ | 412 F(SubString) \ |
414 F(RegExpExec) \ | 413 F(RegExpExec) \ |
415 F(ToInteger) \ | 414 F(ToInteger) \ |
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
893 Address start_; | 892 Address start_; |
894 Address instruction_start_; | 893 Address instruction_start_; |
895 uint32_t length_; | 894 uint32_t length_; |
896 }; | 895 }; |
897 | 896 |
898 | 897 |
899 } // namespace internal | 898 } // namespace internal |
900 } // namespace v8 | 899 } // namespace v8 |
901 | 900 |
902 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ | 901 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
OLD | NEW |