| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 void EmitCallWithStub(Call* expr); | 395 void EmitCallWithStub(Call* expr); |
| 396 void EmitCallWithIC(Call* expr, Handle<Object> name, RelocInfo::Mode mode); | 396 void EmitCallWithIC(Call* expr, Handle<Object> name, RelocInfo::Mode mode); |
| 397 void EmitKeyedCallWithIC(Call* expr, Expression* key, RelocInfo::Mode mode); | 397 void EmitKeyedCallWithIC(Call* expr, Expression* key, RelocInfo::Mode mode); |
| 398 | 398 |
| 399 | 399 |
| 400 // Platform-specific code for inline runtime calls. | 400 // Platform-specific code for inline runtime calls. |
| 401 void EmitInlineRuntimeCall(CallRuntime* expr); | 401 void EmitInlineRuntimeCall(CallRuntime* expr); |
| 402 void EmitIsSmi(ZoneList<Expression*>* arguments); | 402 void EmitIsSmi(ZoneList<Expression*>* arguments); |
| 403 void EmitIsNonNegativeSmi(ZoneList<Expression*>* arguments); | 403 void EmitIsNonNegativeSmi(ZoneList<Expression*>* arguments); |
| 404 void EmitIsObject(ZoneList<Expression*>* arguments); | 404 void EmitIsObject(ZoneList<Expression*>* arguments); |
| 405 void EmitIsSpecObject(ZoneList<Expression*>* arguments); |
| 405 void EmitIsUndetectableObject(ZoneList<Expression*>* arguments); | 406 void EmitIsUndetectableObject(ZoneList<Expression*>* arguments); |
| 406 void EmitIsFunction(ZoneList<Expression*>* arguments); | 407 void EmitIsFunction(ZoneList<Expression*>* arguments); |
| 407 void EmitIsArray(ZoneList<Expression*>* arguments); | 408 void EmitIsArray(ZoneList<Expression*>* arguments); |
| 408 void EmitIsRegExp(ZoneList<Expression*>* arguments); | 409 void EmitIsRegExp(ZoneList<Expression*>* arguments); |
| 409 void EmitIsConstructCall(ZoneList<Expression*>* arguments); | 410 void EmitIsConstructCall(ZoneList<Expression*>* arguments); |
| 410 void EmitObjectEquals(ZoneList<Expression*>* arguments); | 411 void EmitObjectEquals(ZoneList<Expression*>* arguments); |
| 411 void EmitArguments(ZoneList<Expression*>* arguments); | 412 void EmitArguments(ZoneList<Expression*>* arguments); |
| 412 void EmitArgumentsLength(ZoneList<Expression*>* arguments); | 413 void EmitArgumentsLength(ZoneList<Expression*>* arguments); |
| 413 void EmitClassOf(ZoneList<Expression*>* arguments); | 414 void EmitClassOf(ZoneList<Expression*>* arguments); |
| 414 void EmitValueOf(ZoneList<Expression*>* arguments); | 415 void EmitValueOf(ZoneList<Expression*>* arguments); |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 | 539 |
| 539 friend class NestedStatement; | 540 friend class NestedStatement; |
| 540 | 541 |
| 541 DISALLOW_COPY_AND_ASSIGN(FullCodeGenerator); | 542 DISALLOW_COPY_AND_ASSIGN(FullCodeGenerator); |
| 542 }; | 543 }; |
| 543 | 544 |
| 544 | 545 |
| 545 } } // namespace v8::internal | 546 } } // namespace v8::internal |
| 546 | 547 |
| 547 #endif // V8_FULL_CODEGEN_H_ | 548 #endif // V8_FULL_CODEGEN_H_ |
| OLD | NEW |