Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Side by Side Diff: src/hydrogen.h

Issue 104013008: Reland v8:18458 "Load the global proxy from the context of the target function." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/code-stubs.h ('k') | src/hydrogen.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
2505 // The translation state of the currently-being-translated function. 2508 // The translation state of the currently-being-translated function.
2506 FunctionState* function_state_; 2509 FunctionState* function_state_;
2507 2510
2508 // The base of the function state stack. 2511 // The base of the function state stack.
2509 FunctionState initial_function_state_; 2512 FunctionState initial_function_state_;
2510 2513
2511 // Expression context of the currently visited subexpression. NULL when 2514 // Expression context of the currently visited subexpression. NULL when
2512 // visiting statements. 2515 // visiting statements.
2513 AstContext* ast_context_; 2516 AstContext* ast_context_;
2514 2517
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
2686 } 2689 }
2687 2690
2688 private: 2691 private:
2689 HGraphBuilder* builder_; 2692 HGraphBuilder* builder_;
2690 }; 2693 };
2691 2694
2692 2695
2693 } } // namespace v8::internal 2696 } } // namespace v8::internal
2694 2697
2695 #endif // V8_HYDROGEN_H_ 2698 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/code-stubs.h ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698