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

Side by Side Diff: src/hydrogen.h

Issue 10544196: Defer creating Handles for HConstants to the code generation phase. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review 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 | « src/arm/lithium-codegen-arm.cc ('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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 Handle<Object> value); 350 Handle<Object> value);
351 HConstant* GetConstantInt32(SetOncePointer<HConstant>* pointer,
352 int32_t integer_value);
351 353
352 void MarkAsDeoptimizingRecursively(HBasicBlock* block); 354 void MarkAsDeoptimizingRecursively(HBasicBlock* block);
353 void InsertTypeConversions(HInstruction* instr); 355 void InsertTypeConversions(HInstruction* instr);
354 void PropagateMinusZeroChecks(HValue* value, BitVector* visited); 356 void PropagateMinusZeroChecks(HValue* value, BitVector* visited);
355 void RecursivelyMarkPhiDeoptimizeOnUndefined(HPhi* phi); 357 void RecursivelyMarkPhiDeoptimizeOnUndefined(HPhi* phi);
356 void InsertRepresentationChangeForUse(HValue* value, 358 void InsertRepresentationChangeForUse(HValue* value,
357 HValue* use_value, 359 HValue* use_value,
358 int use_index, 360 int use_index,
359 Representation to); 361 Representation to);
360 void InsertRepresentationChangesForValue(HValue* value); 362 void InsertRepresentationChangesForValue(HValue* value);
(...skipping 1082 matching lines...) Expand 10 before | Expand all | Expand 10 after
1443 const char* filename_; 1445 const char* filename_;
1444 HeapStringAllocator string_allocator_; 1446 HeapStringAllocator string_allocator_;
1445 StringStream trace_; 1447 StringStream trace_;
1446 int indent_; 1448 int indent_;
1447 }; 1449 };
1448 1450
1449 1451
1450 } } // namespace v8::internal 1452 } } // namespace v8::internal
1451 1453
1452 #endif // V8_HYDROGEN_H_ 1454 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698