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

Side by Side Diff: src/hydrogen.h

Issue 16095004: Extract GlobalValueNumberer and helper classes from hydrogen.cc and move to hydrogen-gvn.cc. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Introduce hydrogen-gvn.h as well. Created 7 years, 6 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 1780 matching lines...) Expand 10 before | Expand all | Expand 10 after
1791 friend class AstContext; // Pushes and pops the AST context stack. 1791 friend class AstContext; // Pushes and pops the AST context stack.
1792 friend class KeyedLoadFastElementStub; 1792 friend class KeyedLoadFastElementStub;
1793 1793
1794 DISALLOW_COPY_AND_ASSIGN(HOptimizedGraphBuilder); 1794 DISALLOW_COPY_AND_ASSIGN(HOptimizedGraphBuilder);
1795 }; 1795 };
1796 1796
1797 1797
1798 Zone* AstContext::zone() const { return owner_->zone(); } 1798 Zone* AstContext::zone() const { return owner_->zone(); }
1799 1799
1800 1800
1801 class HValueMap: public ZoneObject {
1802 public:
1803 explicit HValueMap(Zone* zone)
1804 : array_size_(0),
1805 lists_size_(0),
1806 count_(0),
1807 present_flags_(0),
1808 array_(NULL),
1809 lists_(NULL),
1810 free_list_head_(kNil) {
1811 ResizeLists(kInitialSize, zone);
1812 Resize(kInitialSize, zone);
1813 }
1814
1815 void Kill(GVNFlagSet flags);
1816
1817 void Add(HValue* value, Zone* zone) {
1818 present_flags_.Add(value->gvn_flags());
1819 Insert(value, zone);
1820 }
1821
1822 HValue* Lookup(HValue* value) const;
1823
1824 HValueMap* Copy(Zone* zone) const {
1825 return new(zone) HValueMap(zone, this);
1826 }
1827
1828 bool IsEmpty() const { return count_ == 0; }
1829
1830 private:
1831 // A linked list of HValue* values. Stored in arrays.
1832 struct HValueMapListElement {
1833 HValue* value;
1834 int next; // Index in the array of the next list element.
1835 };
1836 static const int kNil = -1; // The end of a linked list
1837
1838 // Must be a power of 2.
1839 static const int kInitialSize = 16;
1840
1841 HValueMap(Zone* zone, const HValueMap* other);
1842
1843 void Resize(int new_size, Zone* zone);
1844 void ResizeLists(int new_size, Zone* zone);
1845 void Insert(HValue* value, Zone* zone);
1846 uint32_t Bound(uint32_t value) const { return value & (array_size_ - 1); }
1847
1848 int array_size_;
1849 int lists_size_;
1850 int count_; // The number of values stored in the HValueMap.
1851 GVNFlagSet present_flags_; // All flags that are in any value in the
1852 // HValueMap.
1853 HValueMapListElement* array_; // Primary store - contains the first value
1854 // with a given hash. Colliding elements are stored in linked lists.
1855 HValueMapListElement* lists_; // The linked lists containing hash collisions.
1856 int free_list_head_; // Unused elements in lists_ are on the free list.
1857 };
1858
1859
1860 class HSideEffectMap BASE_EMBEDDED {
1861 public:
1862 HSideEffectMap();
1863 explicit HSideEffectMap(HSideEffectMap* other);
1864 HSideEffectMap& operator= (const HSideEffectMap& other);
1865
1866 void Kill(GVNFlagSet flags);
1867
1868 void Store(GVNFlagSet flags, HInstruction* instr);
1869
1870 bool IsEmpty() const { return count_ == 0; }
1871
1872 inline HInstruction* operator[](int i) const {
1873 ASSERT(0 <= i);
1874 ASSERT(i < kNumberOfTrackedSideEffects);
1875 return data_[i];
1876 }
1877 inline HInstruction* at(int i) const { return operator[](i); }
1878
1879 private:
1880 int count_;
1881 HInstruction* data_[kNumberOfTrackedSideEffects];
1882 };
1883
1884
1885 class HStatistics: public Malloced { 1801 class HStatistics: public Malloced {
1886 public: 1802 public:
1887 HStatistics() 1803 HStatistics()
1888 : timing_(5), 1804 : timing_(5),
1889 names_(5), 1805 names_(5),
1890 sizes_(5), 1806 sizes_(5),
1891 create_graph_(0), 1807 create_graph_(0),
1892 optimize_graph_(0), 1808 optimize_graph_(0),
1893 generate_code_(0), 1809 generate_code_(0),
1894 total_size_(0), 1810 total_size_(0),
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
2025 EmbeddedVector<char, 64> filename_; 1941 EmbeddedVector<char, 64> filename_;
2026 HeapStringAllocator string_allocator_; 1942 HeapStringAllocator string_allocator_;
2027 StringStream trace_; 1943 StringStream trace_;
2028 int indent_; 1944 int indent_;
2029 }; 1945 };
2030 1946
2031 1947
2032 } } // namespace v8::internal 1948 } } // namespace v8::internal
2033 1949
2034 #endif // V8_HYDROGEN_H_ 1950 #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