| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |