| 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 1832 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1843 HInstruction* BuildIncrement(bool returns_original_input, | 1843 HInstruction* BuildIncrement(bool returns_original_input, |
| 1844 CountOperation* expr); | 1844 CountOperation* expr); |
| 1845 HInstruction* BuildLoadKeyedGeneric(HValue* object, | 1845 HInstruction* BuildLoadKeyedGeneric(HValue* object, |
| 1846 HValue* key); | 1846 HValue* key); |
| 1847 | 1847 |
| 1848 HInstruction* TryBuildConsolidatedElementLoad(HValue* object, | 1848 HInstruction* TryBuildConsolidatedElementLoad(HValue* object, |
| 1849 HValue* key, | 1849 HValue* key, |
| 1850 HValue* val, | 1850 HValue* val, |
| 1851 SmallMapList* maps); | 1851 SmallMapList* maps); |
| 1852 | 1852 |
| 1853 LoadKeyedHoleMode GetKeyedHoleMode(Handle<Map> map); |
| 1854 |
| 1853 HInstruction* BuildMonomorphicElementAccess(HValue* object, | 1855 HInstruction* BuildMonomorphicElementAccess(HValue* object, |
| 1854 HValue* key, | 1856 HValue* key, |
| 1855 HValue* val, | 1857 HValue* val, |
| 1856 HValue* dependency, | 1858 HValue* dependency, |
| 1857 Handle<Map> map, | 1859 Handle<Map> map, |
| 1858 bool is_store, | 1860 bool is_store, |
| 1859 KeyedAccessStoreMode store_mode); | 1861 KeyedAccessStoreMode store_mode); |
| 1860 | 1862 |
| 1861 HValue* HandlePolymorphicElementAccess(HValue* object, | 1863 HValue* HandlePolymorphicElementAccess(HValue* object, |
| 1862 HValue* key, | 1864 HValue* key, |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2163 EmbeddedVector<char, 64> filename_; | 2165 EmbeddedVector<char, 64> filename_; |
| 2164 HeapStringAllocator string_allocator_; | 2166 HeapStringAllocator string_allocator_; |
| 2165 StringStream trace_; | 2167 StringStream trace_; |
| 2166 int indent_; | 2168 int indent_; |
| 2167 }; | 2169 }; |
| 2168 | 2170 |
| 2169 | 2171 |
| 2170 } } // namespace v8::internal | 2172 } } // namespace v8::internal |
| 2171 | 2173 |
| 2172 #endif // V8_HYDROGEN_H_ | 2174 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |