| 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 1933 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1944 HValue* object, | 1944 HValue* object, |
| 1945 SmallMapList* types, | 1945 SmallMapList* types, |
| 1946 Handle<String> name); | 1946 Handle<String> name); |
| 1947 HInstruction* TryLoadPolymorphicAsMonomorphic(HValue* object, | 1947 HInstruction* TryLoadPolymorphicAsMonomorphic(HValue* object, |
| 1948 SmallMapList* types, | 1948 SmallMapList* types, |
| 1949 Handle<String> name); | 1949 Handle<String> name); |
| 1950 void HandlePolymorphicStoreNamedField(int position, | 1950 void HandlePolymorphicStoreNamedField(int position, |
| 1951 BailoutId assignment_id, | 1951 BailoutId assignment_id, |
| 1952 HValue* object, | 1952 HValue* object, |
| 1953 HValue* value, | 1953 HValue* value, |
| 1954 HValue* result, | |
| 1955 SmallMapList* types, | 1954 SmallMapList* types, |
| 1956 Handle<String> name); | 1955 Handle<String> name); |
| 1957 bool TryStorePolymorphicAsMonomorphic(int position, | 1956 bool TryStorePolymorphicAsMonomorphic(int position, |
| 1958 BailoutId assignment_id, | 1957 BailoutId assignment_id, |
| 1959 HValue* object, | 1958 HValue* object, |
| 1960 HValue* value, | 1959 HValue* value, |
| 1961 HValue* result, | |
| 1962 SmallMapList* types, | 1960 SmallMapList* types, |
| 1963 Handle<String> name); | 1961 Handle<String> name); |
| 1964 void HandlePolymorphicCallNamed(Call* expr, | 1962 void HandlePolymorphicCallNamed(Call* expr, |
| 1965 HValue* receiver, | 1963 HValue* receiver, |
| 1966 SmallMapList* types, | 1964 SmallMapList* types, |
| 1967 Handle<String> name); | 1965 Handle<String> name); |
| 1968 bool TryCallPolymorphicAsMonomorphic(Call* expr, | 1966 bool TryCallPolymorphicAsMonomorphic(Call* expr, |
| 1969 HValue* receiver, | 1967 HValue* receiver, |
| 1970 SmallMapList* types, | 1968 SmallMapList* types, |
| 1971 Handle<String> name); | 1969 Handle<String> name); |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2042 int position, | 2040 int position, |
| 2043 BailoutId ast_id, | 2041 BailoutId ast_id, |
| 2044 BailoutId return_id); | 2042 BailoutId return_id); |
| 2045 | 2043 |
| 2046 void BuildStoreNamed(Expression* expression, | 2044 void BuildStoreNamed(Expression* expression, |
| 2047 BailoutId id, | 2045 BailoutId id, |
| 2048 int position, | 2046 int position, |
| 2049 BailoutId assignment_id, | 2047 BailoutId assignment_id, |
| 2050 Property* prop, | 2048 Property* prop, |
| 2051 HValue* object, | 2049 HValue* object, |
| 2052 HValue* store_value, | 2050 HValue* value); |
| 2053 HValue* result_value); | |
| 2054 | 2051 |
| 2055 HInstruction* BuildStoreNamedField(HValue* object, | 2052 HInstruction* BuildStoreNamedField(HValue* object, |
| 2056 Handle<String> name, | 2053 Handle<String> name, |
| 2057 HValue* value, | 2054 HValue* value, |
| 2058 Handle<Map> map, | 2055 Handle<Map> map, |
| 2059 LookupResult* lookup); | 2056 LookupResult* lookup); |
| 2060 HInstruction* BuildStoreNamedGeneric(HValue* object, | 2057 HInstruction* BuildStoreNamedGeneric(HValue* object, |
| 2061 Handle<String> name, | 2058 Handle<String> name, |
| 2062 HValue* value); | 2059 HValue* value); |
| 2063 HInstruction* BuildStoreNamedMonomorphic(HValue* object, | 2060 HInstruction* BuildStoreNamedMonomorphic(HValue* object, |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2294 } | 2291 } |
| 2295 | 2292 |
| 2296 private: | 2293 private: |
| 2297 HGraphBuilder* builder_; | 2294 HGraphBuilder* builder_; |
| 2298 }; | 2295 }; |
| 2299 | 2296 |
| 2300 | 2297 |
| 2301 } } // namespace v8::internal | 2298 } } // namespace v8::internal |
| 2302 | 2299 |
| 2303 #endif // V8_HYDROGEN_H_ | 2300 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |