| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 InlineFunctionGenerator FindInlineFunctionGenerator(Runtime::FunctionId id); | 484 InlineFunctionGenerator FindInlineFunctionGenerator(Runtime::FunctionId id); |
| 485 | 485 |
| 486 void EmitInlineRuntimeCall(CallRuntime* expr); | 486 void EmitInlineRuntimeCall(CallRuntime* expr); |
| 487 | 487 |
| 488 #define EMIT_INLINE_RUNTIME_CALL(name, x, y) \ | 488 #define EMIT_INLINE_RUNTIME_CALL(name, x, y) \ |
| 489 void Emit##name(CallRuntime* expr); | 489 void Emit##name(CallRuntime* expr); |
| 490 INLINE_FUNCTION_LIST(EMIT_INLINE_RUNTIME_CALL) | 490 INLINE_FUNCTION_LIST(EMIT_INLINE_RUNTIME_CALL) |
| 491 INLINE_RUNTIME_FUNCTION_LIST(EMIT_INLINE_RUNTIME_CALL) | 491 INLINE_RUNTIME_FUNCTION_LIST(EMIT_INLINE_RUNTIME_CALL) |
| 492 #undef EMIT_INLINE_RUNTIME_CALL | 492 #undef EMIT_INLINE_RUNTIME_CALL |
| 493 | 493 |
| 494 void EmitSeqStringSetCharCheck(Register string, |
| 495 Register index, |
| 496 Register value, |
| 497 uint32_t encoding_mask); |
| 498 |
| 494 // Platform-specific code for resuming generators. | 499 // Platform-specific code for resuming generators. |
| 495 void EmitGeneratorResume(Expression *generator, | 500 void EmitGeneratorResume(Expression *generator, |
| 496 Expression *value, | 501 Expression *value, |
| 497 JSGeneratorObject::ResumeMode resume_mode); | 502 JSGeneratorObject::ResumeMode resume_mode); |
| 498 | 503 |
| 499 // Platform-specific code for loading variables. | 504 // Platform-specific code for loading variables. |
| 500 void EmitLoadGlobalCheckExtensions(Variable* var, | 505 void EmitLoadGlobalCheckExtensions(Variable* var, |
| 501 TypeofState typeof_state, | 506 TypeofState typeof_state, |
| 502 Label* slow); | 507 Label* slow); |
| 503 MemOperand ContextSlotOperandCheckExtensions(Variable* var, Label* slow); | 508 MemOperand ContextSlotOperandCheckExtensions(Variable* var, Label* slow); |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 868 } | 873 } |
| 869 | 874 |
| 870 private: | 875 private: |
| 871 Zone* zone_; | 876 Zone* zone_; |
| 872 }; | 877 }; |
| 873 | 878 |
| 874 | 879 |
| 875 } } // namespace v8::internal | 880 } } // namespace v8::internal |
| 876 | 881 |
| 877 #endif // V8_FULL_CODEGEN_H_ | 882 #endif // V8_FULL_CODEGEN_H_ |
| OLD | NEW |