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

Side by Side Diff: src/hydrogen.h

Issue 24350014: Use Unique<Object> in HConstant and remove UniqueValueId. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 2 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 | « no previous file | src/hydrogen.cc » ('j') | src/hydrogen-instructions.h » ('J')
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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 309
310 Isolate* isolate() const { return isolate_; } 310 Isolate* isolate() const { return isolate_; }
311 Zone* zone() const { return zone_; } 311 Zone* zone() const { return zone_; }
312 CompilationInfo* info() const { return info_; } 312 CompilationInfo* info() const { return info_; }
313 313
314 const ZoneList<HBasicBlock*>* blocks() const { return &blocks_; } 314 const ZoneList<HBasicBlock*>* blocks() const { return &blocks_; }
315 const ZoneList<HPhi*>* phi_list() const { return phi_list_; } 315 const ZoneList<HPhi*>* phi_list() const { return phi_list_; }
316 HBasicBlock* entry_block() const { return entry_block_; } 316 HBasicBlock* entry_block() const { return entry_block_; }
317 HEnvironment* start_environment() const { return start_environment_; } 317 HEnvironment* start_environment() const { return start_environment_; }
318 318
319 void FinalizeUniqueValueIds(); 319 void FinalizeUniqueness();
320 bool ProcessArgumentsObject(); 320 bool ProcessArgumentsObject();
321 void OrderBlocks(); 321 void OrderBlocks();
322 void AssignDominators(); 322 void AssignDominators();
323 void RestoreActualValues(); 323 void RestoreActualValues();
324 324
325 // Returns false if there are phi-uses of the arguments-object 325 // Returns false if there are phi-uses of the arguments-object
326 // which are not supported by the optimizing compiler. 326 // which are not supported by the optimizing compiler.
327 bool CheckArgumentsPhiUses(); 327 bool CheckArgumentsPhiUses();
328 328
329 // Returns false if there are phi-uses of an uninitialized const 329 // Returns false if there are phi-uses of an uninitialized const
(...skipping 2100 matching lines...) Expand 10 before | Expand all | Expand 10 after
2430 } 2430 }
2431 2431
2432 private: 2432 private:
2433 HGraphBuilder* builder_; 2433 HGraphBuilder* builder_;
2434 }; 2434 };
2435 2435
2436 2436
2437 } } // namespace v8::internal 2437 } } // namespace v8::internal
2438 2438
2439 #endif // V8_HYDROGEN_H_ 2439 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « no previous file | src/hydrogen.cc » ('j') | src/hydrogen-instructions.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698