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

Side by Side Diff: src/hydrogen.cc

Issue 13977019: Fix HConstant::InNewSpace() for parallel compilation. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 7 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-instructions.h » ('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 623 matching lines...) Expand 10 before | Expand all | Expand 10 after
634 634
635 #define DEFINE_GET_CONSTANT(Name, name, htype, boolean_value) \ 635 #define DEFINE_GET_CONSTANT(Name, name, htype, boolean_value) \
636 HConstant* HGraph::GetConstant##Name() { \ 636 HConstant* HGraph::GetConstant##Name() { \
637 if (!constant_##name##_.is_set()) { \ 637 if (!constant_##name##_.is_set()) { \
638 HConstant* constant = new(zone()) HConstant( \ 638 HConstant* constant = new(zone()) HConstant( \
639 isolate()->factory()->name##_value(), \ 639 isolate()->factory()->name##_value(), \
640 UniqueValueId(isolate()->heap()->name##_value()), \ 640 UniqueValueId(isolate()->heap()->name##_value()), \
641 Representation::Tagged(), \ 641 Representation::Tagged(), \
642 htype, \ 642 htype, \
643 false, \ 643 false, \
644 true, \
644 boolean_value); \ 645 boolean_value); \
645 constant->InsertAfter(GetConstantUndefined()); \ 646 constant->InsertAfter(GetConstantUndefined()); \
646 constant_##name##_.set(constant); \ 647 constant_##name##_.set(constant); \
647 } \ 648 } \
648 return constant_##name##_.get(); \ 649 return constant_##name##_.get(); \
649 } 650 }
650 651
651 652
652 DEFINE_GET_CONSTANT(True, true, HType::Boolean(), true) 653 DEFINE_GET_CONSTANT(True, true, HType::Boolean(), true)
653 DEFINE_GET_CONSTANT(False, false, HType::Boolean(), false) 654 DEFINE_GET_CONSTANT(False, false, HType::Boolean(), false)
(...skipping 11563 matching lines...) Expand 10 before | Expand all | Expand 10 after
12217 } 12218 }
12218 } 12219 }
12219 12220
12220 #ifdef DEBUG 12221 #ifdef DEBUG
12221 if (graph_ != NULL) graph_->Verify(false); // No full verify. 12222 if (graph_ != NULL) graph_->Verify(false); // No full verify.
12222 if (allocator_ != NULL) allocator_->Verify(); 12223 if (allocator_ != NULL) allocator_->Verify();
12223 #endif 12224 #endif
12224 } 12225 }
12225 12226
12226 } } // namespace v8::internal 12227 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/hydrogen-instructions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698