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

Side by Side Diff: src/hydrogen.h

Issue 10699052: Don't actually create Handles for the constant hole. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review II Created 8 years, 5 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 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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 void MarkRecursive() { 340 void MarkRecursive() {
341 is_recursive_ = true; 341 is_recursive_ = true;
342 } 342 }
343 343
344 bool is_recursive() const { 344 bool is_recursive() const {
345 return is_recursive_; 345 return is_recursive_;
346 } 346 }
347 347
348 private: 348 private:
349 HConstant* GetConstant(SetOncePointer<HConstant>* pointer, 349 HConstant* GetConstant(SetOncePointer<HConstant>* pointer,
350 Object* value); 350 Handle<Object> value);
351 351
352 void MarkAsDeoptimizingRecursively(HBasicBlock* block); 352 void MarkAsDeoptimizingRecursively(HBasicBlock* block);
353 void InsertTypeConversions(HInstruction* instr); 353 void InsertTypeConversions(HInstruction* instr);
354 void PropagateMinusZeroChecks(HValue* value, BitVector* visited); 354 void PropagateMinusZeroChecks(HValue* value, BitVector* visited);
355 void RecursivelyMarkPhiDeoptimizeOnUndefined(HPhi* phi); 355 void RecursivelyMarkPhiDeoptimizeOnUndefined(HPhi* phi);
356 void InsertRepresentationChangeForUse(HValue* value, 356 void InsertRepresentationChangeForUse(HValue* value,
357 HValue* use_value, 357 HValue* use_value,
358 int use_index, 358 int use_index,
359 Representation to); 359 Representation to);
360 void InsertRepresentationChangesForValue(HValue* value); 360 void InsertRepresentationChangesForValue(HValue* value);
(...skipping 1079 matching lines...) Expand 10 before | Expand all | Expand 10 after
1440 const char* filename_; 1440 const char* filename_;
1441 HeapStringAllocator string_allocator_; 1441 HeapStringAllocator string_allocator_;
1442 StringStream trace_; 1442 StringStream trace_;
1443 int indent_; 1443 int indent_;
1444 }; 1444 };
1445 1445
1446 1446
1447 } } // namespace v8::internal 1447 } } // namespace v8::internal
1448 1448
1449 #endif // V8_HYDROGEN_H_ 1449 #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