| 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 2396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2407 HCallNamed(HValue* context, Handle<String> name, int argument_count) | 2407 HCallNamed(HValue* context, Handle<String> name, int argument_count) |
| 2408 : HUnaryCall(context, argument_count), name_(name) { | 2408 : HUnaryCall(context, argument_count), name_(name) { |
| 2409 } | 2409 } |
| 2410 | 2410 |
| 2411 Handle<String> name_; | 2411 Handle<String> name_; |
| 2412 }; | 2412 }; |
| 2413 | 2413 |
| 2414 | 2414 |
| 2415 enum CallMode { | 2415 enum CallMode { |
| 2416 NORMAL_CALL, | 2416 NORMAL_CALL, |
| 2417 TAIL_CALL, | 2417 TAIL_CALL |
| 2418 NORMAL_CONTEXTUAL_CALL | |
| 2419 }; | 2418 }; |
| 2420 | 2419 |
| 2421 | 2420 |
| 2422 class HCallFunction V8_FINAL : public HBinaryCall { | 2421 class HCallFunction V8_FINAL : public HBinaryCall { |
| 2423 public: | 2422 public: |
| 2424 DECLARE_INSTRUCTION_WITH_CONTEXT_FACTORY_P2(HCallFunction, HValue*, int); | 2423 DECLARE_INSTRUCTION_WITH_CONTEXT_FACTORY_P2(HCallFunction, HValue*, int); |
| 2425 DECLARE_INSTRUCTION_WITH_CONTEXT_FACTORY_P3( | 2424 DECLARE_INSTRUCTION_WITH_CONTEXT_FACTORY_P3( |
| 2426 HCallFunction, HValue*, int, CallMode); | 2425 HCallFunction, HValue*, int, CallMode); |
| 2427 | 2426 |
| 2428 bool IsTailCall() const { return call_mode_ == TAIL_CALL; } | 2427 bool IsTailCall() const { return call_mode_ == TAIL_CALL; } |
| 2429 bool IsContextualCall() const { return call_mode_ == NORMAL_CONTEXTUAL_CALL; } | 2428 |
| 2430 HValue* context() { return first(); } | 2429 HValue* context() { return first(); } |
| 2431 HValue* function() { return second(); } | 2430 HValue* function() { return second(); } |
| 2432 | 2431 |
| 2433 DECLARE_CONCRETE_INSTRUCTION(CallFunction) | 2432 DECLARE_CONCRETE_INSTRUCTION(CallFunction) |
| 2434 | 2433 |
| 2435 virtual int argument_delta() const V8_OVERRIDE { | 2434 virtual int argument_delta() const V8_OVERRIDE { |
| 2436 if (IsTailCall()) return 0; | 2435 if (IsTailCall()) return 0; |
| 2437 return -argument_count(); | 2436 return -argument_count(); |
| 2438 } | 2437 } |
| 2439 | 2438 |
| (...skipping 5137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7577 virtual bool IsDeletable() const V8_OVERRIDE { return true; } | 7576 virtual bool IsDeletable() const V8_OVERRIDE { return true; } |
| 7578 }; | 7577 }; |
| 7579 | 7578 |
| 7580 | 7579 |
| 7581 #undef DECLARE_INSTRUCTION | 7580 #undef DECLARE_INSTRUCTION |
| 7582 #undef DECLARE_CONCRETE_INSTRUCTION | 7581 #undef DECLARE_CONCRETE_INSTRUCTION |
| 7583 | 7582 |
| 7584 } } // namespace v8::internal | 7583 } } // namespace v8::internal |
| 7585 | 7584 |
| 7586 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ | 7585 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ |
| OLD | NEW |