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

Side by Side Diff: src/hydrogen.h

Issue 7129039: Merge r8230 from bleeding edge to 3.2 branch. (Closed) Base URL: http://v8.googlecode.com/svn/branches/3.2/
Patch Set: Created 9 years, 6 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') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 void InitializeInferredTypes(); 214 void InitializeInferredTypes();
215 void InsertTypeConversions(); 215 void InsertTypeConversions();
216 void InsertRepresentationChanges(); 216 void InsertRepresentationChanges();
217 void ComputeMinusZeroChecks(); 217 void ComputeMinusZeroChecks();
218 bool ProcessArgumentsObject(); 218 bool ProcessArgumentsObject();
219 void EliminateRedundantPhis(); 219 void EliminateRedundantPhis();
220 void EliminateUnreachablePhis(); 220 void EliminateUnreachablePhis();
221 void Canonicalize(); 221 void Canonicalize();
222 void OrderBlocks(); 222 void OrderBlocks();
223 void AssignDominators(); 223 void AssignDominators();
224 void ReplaceCheckedValues();
224 225
225 // Returns false if there are phi-uses of the arguments-object 226 // Returns false if there are phi-uses of the arguments-object
226 // which are not supported by the optimizing compiler. 227 // which are not supported by the optimizing compiler.
227 bool CollectPhis(); 228 bool CollectPhis();
228 229
229 Handle<Code> Compile(CompilationInfo* info); 230 Handle<Code> Compile(CompilationInfo* info);
230 231
231 void set_undefined_constant(HConstant* constant) { 232 void set_undefined_constant(HConstant* constant) {
232 undefined_constant_.set(constant); 233 undefined_constant_.set(constant);
233 } 234 }
(...skipping 906 matching lines...) Expand 10 before | Expand all | Expand 10 after
1140 const char* filename_; 1141 const char* filename_;
1141 HeapStringAllocator string_allocator_; 1142 HeapStringAllocator string_allocator_;
1142 StringStream trace_; 1143 StringStream trace_;
1143 int indent_; 1144 int indent_;
1144 }; 1145 };
1145 1146
1146 1147
1147 } } // namespace v8::internal 1148 } } // namespace v8::internal
1148 1149
1149 #endif // V8_HYDROGEN_H_ 1150 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « no previous file | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698