| 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_H_ | 5 #ifndef V8_FULL_CODEGEN_H_ |
| 6 #define V8_FULL_CODEGEN_H_ | 6 #define V8_FULL_CODEGEN_H_ |
| 7 | 7 |
| 8 #include "src/v8.h" | 8 #include "src/v8.h" |
| 9 | 9 |
| 10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
| (...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 void EmitSuperConstructorCall(Call* expr); | 514 void EmitSuperConstructorCall(Call* expr); |
| 515 void EmitCallWithLoadIC(Call* expr); | 515 void EmitCallWithLoadIC(Call* expr); |
| 516 void EmitSuperCallWithLoadIC(Call* expr); | 516 void EmitSuperCallWithLoadIC(Call* expr); |
| 517 void EmitKeyedCallWithLoadIC(Call* expr, Expression* key); | 517 void EmitKeyedCallWithLoadIC(Call* expr, Expression* key); |
| 518 void EmitKeyedSuperCallWithLoadIC(Call* expr); | 518 void EmitKeyedSuperCallWithLoadIC(Call* expr); |
| 519 | 519 |
| 520 #define FOR_EACH_FULL_CODE_INTRINSIC(F) \ | 520 #define FOR_EACH_FULL_CODE_INTRINSIC(F) \ |
| 521 F(IsSmi) \ | 521 F(IsSmi) \ |
| 522 F(IsNonNegativeSmi) \ | 522 F(IsNonNegativeSmi) \ |
| 523 F(IsArray) \ | 523 F(IsArray) \ |
| 524 F(IsTypedArray) \ |
| 524 F(IsRegExp) \ | 525 F(IsRegExp) \ |
| 525 F(IsJSProxy) \ | 526 F(IsJSProxy) \ |
| 526 F(IsConstructCall) \ | 527 F(IsConstructCall) \ |
| 527 F(CallFunction) \ | 528 F(CallFunction) \ |
| 528 F(DefaultConstructorCallSuper) \ | 529 F(DefaultConstructorCallSuper) \ |
| 529 F(ArgumentsLength) \ | 530 F(ArgumentsLength) \ |
| 530 F(Arguments) \ | 531 F(Arguments) \ |
| 531 F(ValueOf) \ | 532 F(ValueOf) \ |
| 532 F(SetValueOf) \ | 533 F(SetValueOf) \ |
| 533 F(ThrowIfNotADate) \ | 534 F(ThrowIfNotADate) \ |
| (...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1097 | 1098 |
| 1098 Address start_; | 1099 Address start_; |
| 1099 Address instruction_start_; | 1100 Address instruction_start_; |
| 1100 uint32_t length_; | 1101 uint32_t length_; |
| 1101 }; | 1102 }; |
| 1102 | 1103 |
| 1103 | 1104 |
| 1104 } } // namespace v8::internal | 1105 } } // namespace v8::internal |
| 1105 | 1106 |
| 1106 #endif // V8_FULL_CODEGEN_H_ | 1107 #endif // V8_FULL_CODEGEN_H_ |
| OLD | NEW |