| 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 2484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2495 HValue* object_elements, | 2495 HValue* object_elements, |
| 2496 AllocationSiteUsageContext* site_context); | 2496 AllocationSiteUsageContext* site_context); |
| 2497 | 2497 |
| 2498 void AddCheckPrototypeMaps(Handle<JSObject> holder, | 2498 void AddCheckPrototypeMaps(Handle<JSObject> holder, |
| 2499 Handle<Map> receiver_map); | 2499 Handle<Map> receiver_map); |
| 2500 | 2500 |
| 2501 void AddCheckConstantFunction(Handle<JSObject> holder, | 2501 void AddCheckConstantFunction(Handle<JSObject> holder, |
| 2502 HValue* receiver, | 2502 HValue* receiver, |
| 2503 Handle<Map> receiver_map); | 2503 Handle<Map> receiver_map); |
| 2504 | 2504 |
| 2505 void InstallGlobalReceiverInExpressionStack(int index, | |
| 2506 Handle<JSFunction> function); | |
| 2507 | |
| 2508 // The translation state of the currently-being-translated function. | 2505 // The translation state of the currently-being-translated function. |
| 2509 FunctionState* function_state_; | 2506 FunctionState* function_state_; |
| 2510 | 2507 |
| 2511 // The base of the function state stack. | 2508 // The base of the function state stack. |
| 2512 FunctionState initial_function_state_; | 2509 FunctionState initial_function_state_; |
| 2513 | 2510 |
| 2514 // Expression context of the currently visited subexpression. NULL when | 2511 // Expression context of the currently visited subexpression. NULL when |
| 2515 // visiting statements. | 2512 // visiting statements. |
| 2516 AstContext* ast_context_; | 2513 AstContext* ast_context_; |
| 2517 | 2514 |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2689 } | 2686 } |
| 2690 | 2687 |
| 2691 private: | 2688 private: |
| 2692 HGraphBuilder* builder_; | 2689 HGraphBuilder* builder_; |
| 2693 }; | 2690 }; |
| 2694 | 2691 |
| 2695 | 2692 |
| 2696 } } // namespace v8::internal | 2693 } } // namespace v8::internal |
| 2697 | 2694 |
| 2698 #endif // V8_HYDROGEN_H_ | 2695 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |