OLD | NEW |
---|---|
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 1806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1817 } | 1817 } |
1818 } | 1818 } |
1819 | 1819 |
1820 if_nil.CaptureContinuation(continuation); | 1820 if_nil.CaptureContinuation(continuation); |
1821 } | 1821 } |
1822 | 1822 |
1823 | 1823 |
1824 HValue* HGraphBuilder::BuildCreateAllocationMemento(HValue* previous_object, | 1824 HValue* HGraphBuilder::BuildCreateAllocationMemento(HValue* previous_object, |
1825 int previous_object_size, | 1825 int previous_object_size, |
1826 HValue* alloc_site) { | 1826 HValue* alloc_site) { |
1827 ASSERT(alloc_site != NULL); | 1827 // TODO(mvstanton): ASSERT altered to CHECK to diagnose chromium bug 284577 |
1828 CHECK(alloc_site != NULL); | |
1828 HInnerAllocatedObject* alloc_memento = Add<HInnerAllocatedObject>( | 1829 HInnerAllocatedObject* alloc_memento = Add<HInnerAllocatedObject>( |
1829 previous_object, previous_object_size); | 1830 previous_object, previous_object_size); |
1830 Handle<Map> alloc_memento_map( | 1831 Handle<Map> alloc_memento_map( |
1831 isolate()->heap()->allocation_memento_map()); | 1832 isolate()->heap()->allocation_memento_map()); |
1832 AddStoreMapConstant(alloc_memento, alloc_memento_map); | 1833 AddStoreMapConstant(alloc_memento, alloc_memento_map); |
1833 HObjectAccess access = HObjectAccess::ForAllocationMementoSite(); | 1834 HObjectAccess access = HObjectAccess::ForAllocationMementoSite(); |
1834 Add<HStoreNamedField>(alloc_memento, access, alloc_site); | 1835 Add<HStoreNamedField>(alloc_memento, access, alloc_site); |
1836 // TODO(mvstanton): to diagnose chromium bug 284577 we could/should | |
1837 // dereference the alloc_site here. We could do a map check. However it has | |
1838 // a performance impact so I'm not doing that right away. | |
1839 // for example, something like: | |
1840 // Add<HLoadNamedField>(alloc_site, | |
1841 // HObjectAccess::ForAllocationSiteTransitionInfo()); | |
Hannes Payer (out of office)
2013/09/11 13:25:35
I guess you are planing to land this in a differen
| |
1835 return alloc_memento; | 1842 return alloc_memento; |
1836 } | 1843 } |
1837 | 1844 |
1838 | 1845 |
1839 HInstruction* HGraphBuilder::BuildGetNativeContext() { | 1846 HInstruction* HGraphBuilder::BuildGetNativeContext() { |
1840 // Get the global context, then the native context | 1847 // Get the global context, then the native context |
1841 HInstruction* global_object = Add<HGlobalObject>(); | 1848 HInstruction* global_object = Add<HGlobalObject>(); |
1842 HObjectAccess access = HObjectAccess::ForJSObjectOffset( | 1849 HObjectAccess access = HObjectAccess::ForJSObjectOffset( |
1843 GlobalObject::kNativeContextOffset); | 1850 GlobalObject::kNativeContextOffset); |
1844 return Add<HLoadNamedField>(global_object, access); | 1851 return Add<HLoadNamedField>(global_object, access); |
(...skipping 7834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
9679 if (ShouldProduceTraceOutput()) { | 9686 if (ShouldProduceTraceOutput()) { |
9680 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); | 9687 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); |
9681 } | 9688 } |
9682 | 9689 |
9683 #ifdef DEBUG | 9690 #ifdef DEBUG |
9684 graph_->Verify(false); // No full verify. | 9691 graph_->Verify(false); // No full verify. |
9685 #endif | 9692 #endif |
9686 } | 9693 } |
9687 | 9694 |
9688 } } // namespace v8::internal | 9695 } } // namespace v8::internal |
OLD | NEW |