| 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 985 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 996 Handle<JSFunction> caller, | 996 Handle<JSFunction> caller, |
| 997 const char* failure_reason); | 997 const char* failure_reason); |
| 998 | 998 |
| 999 void HandleGlobalVariableAssignment(Variable* var, | 999 void HandleGlobalVariableAssignment(Variable* var, |
| 1000 HValue* value, | 1000 HValue* value, |
| 1001 int position, | 1001 int position, |
| 1002 int ast_id); | 1002 int ast_id); |
| 1003 | 1003 |
| 1004 void HandlePropertyAssignment(Assignment* expr); | 1004 void HandlePropertyAssignment(Assignment* expr); |
| 1005 void HandleCompoundAssignment(Assignment* expr); | 1005 void HandleCompoundAssignment(Assignment* expr); |
| 1006 void HandlePolymorphicLoadNamedField(Property* expr, |
| 1007 HValue* object, |
| 1008 SmallMapList* types, |
| 1009 Handle<String> name); |
| 1006 void HandlePolymorphicStoreNamedField(Assignment* expr, | 1010 void HandlePolymorphicStoreNamedField(Assignment* expr, |
| 1007 HValue* object, | 1011 HValue* object, |
| 1008 HValue* value, | 1012 HValue* value, |
| 1009 SmallMapList* types, | 1013 SmallMapList* types, |
| 1010 Handle<String> name); | 1014 Handle<String> name); |
| 1011 void HandlePolymorphicCallNamed(Call* expr, | 1015 void HandlePolymorphicCallNamed(Call* expr, |
| 1012 HValue* receiver, | 1016 HValue* receiver, |
| 1013 SmallMapList* types, | 1017 SmallMapList* types, |
| 1014 Handle<String> name); | 1018 Handle<String> name); |
| 1015 void HandleLiteralCompareTypeof(CompareOperation* expr, | 1019 void HandleLiteralCompareTypeof(CompareOperation* expr, |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1341 const char* filename_; | 1345 const char* filename_; |
| 1342 HeapStringAllocator string_allocator_; | 1346 HeapStringAllocator string_allocator_; |
| 1343 StringStream trace_; | 1347 StringStream trace_; |
| 1344 int indent_; | 1348 int indent_; |
| 1345 }; | 1349 }; |
| 1346 | 1350 |
| 1347 | 1351 |
| 1348 } } // namespace v8::internal | 1352 } } // namespace v8::internal |
| 1349 | 1353 |
| 1350 #endif // V8_HYDROGEN_H_ | 1354 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |