| 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 1824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1835 HValue* result_value = NULL); | 1835 HValue* result_value = NULL); |
| 1836 | 1836 |
| 1837 HInstruction* BuildStoreNamedField(HValue* object, | 1837 HInstruction* BuildStoreNamedField(HValue* object, |
| 1838 Handle<String> name, | 1838 Handle<String> name, |
| 1839 HValue* value, | 1839 HValue* value, |
| 1840 Handle<Map> map, | 1840 Handle<Map> map, |
| 1841 LookupResult* lookup); | 1841 LookupResult* lookup); |
| 1842 HInstruction* BuildStoreNamedGeneric(HValue* object, | 1842 HInstruction* BuildStoreNamedGeneric(HValue* object, |
| 1843 Handle<String> name, | 1843 Handle<String> name, |
| 1844 HValue* value); | 1844 HValue* value); |
| 1845 HInstruction* BuildCallSetter(HValue* object, | |
| 1846 HValue* value, | |
| 1847 Handle<Map> map, | |
| 1848 Handle<JSFunction> setter, | |
| 1849 Handle<JSObject> holder); | |
| 1850 HInstruction* BuildStoreNamedMonomorphic(HValue* object, | 1845 HInstruction* BuildStoreNamedMonomorphic(HValue* object, |
| 1851 Handle<String> name, | 1846 Handle<String> name, |
| 1852 HValue* value, | 1847 HValue* value, |
| 1853 Handle<Map> map); | 1848 Handle<Map> map); |
| 1854 HInstruction* BuildStoreKeyedGeneric(HValue* object, | 1849 HInstruction* BuildStoreKeyedGeneric(HValue* object, |
| 1855 HValue* key, | 1850 HValue* key, |
| 1856 HValue* value); | 1851 HValue* value); |
| 1857 | 1852 |
| 1858 HValue* BuildContextChainWalk(Variable* var); | 1853 HValue* BuildContextChainWalk(Variable* var); |
| 1859 | 1854 |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2095 EmbeddedVector<char, 64> filename_; | 2090 EmbeddedVector<char, 64> filename_; |
| 2096 HeapStringAllocator string_allocator_; | 2091 HeapStringAllocator string_allocator_; |
| 2097 StringStream trace_; | 2092 StringStream trace_; |
| 2098 int indent_; | 2093 int indent_; |
| 2099 }; | 2094 }; |
| 2100 | 2095 |
| 2101 | 2096 |
| 2102 } } // namespace v8::internal | 2097 } } // namespace v8::internal |
| 2103 | 2098 |
| 2104 #endif // V8_HYDROGEN_H_ | 2099 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |