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

Side by Side Diff: src/hydrogen.h

Issue 18537006: Revert "Unify the Count Operation assignment with other assignments." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 5 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 1726 matching lines...) Expand 10 before | Expand all | Expand 10 after
1737 Handle<String> name); 1737 Handle<String> name);
1738 HInstruction* TryLoadPolymorphicAsMonomorphic(Property* expr, 1738 HInstruction* TryLoadPolymorphicAsMonomorphic(Property* expr,
1739 HValue* object, 1739 HValue* object,
1740 SmallMapList* types, 1740 SmallMapList* types,
1741 Handle<String> name); 1741 Handle<String> name);
1742 void HandlePolymorphicStoreNamedField(BailoutId id, 1742 void HandlePolymorphicStoreNamedField(BailoutId id,
1743 int position, 1743 int position,
1744 BailoutId assignment_id, 1744 BailoutId assignment_id,
1745 HValue* object, 1745 HValue* object,
1746 HValue* value, 1746 HValue* value,
1747 HValue* result,
1748 SmallMapList* types, 1747 SmallMapList* types,
1749 Handle<String> name); 1748 Handle<String> name);
1750 bool TryStorePolymorphicAsMonomorphic(int position, 1749 bool TryStorePolymorphicAsMonomorphic(int position,
1751 BailoutId assignment_id, 1750 BailoutId assignment_id,
1752 HValue* object, 1751 HValue* object,
1753 HValue* value, 1752 HValue* value,
1754 HValue* result,
1755 SmallMapList* types, 1753 SmallMapList* types,
1756 Handle<String> name); 1754 Handle<String> name);
1757 void HandlePolymorphicCallNamed(Call* expr, 1755 void HandlePolymorphicCallNamed(Call* expr,
1758 HValue* receiver, 1756 HValue* receiver,
1759 SmallMapList* types, 1757 SmallMapList* types,
1760 Handle<String> name); 1758 Handle<String> name);
1761 void HandleLiteralCompareTypeof(CompareOperation* expr, 1759 void HandleLiteralCompareTypeof(CompareOperation* expr,
1762 HTypeof* typeof_expr, 1760 HTypeof* typeof_expr,
1763 Handle<String> check); 1761 Handle<String> check);
1764 void HandleLiteralCompareNil(CompareOperation* expr, 1762 void HandleLiteralCompareNil(CompareOperation* expr,
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
1824 1822
1825 void AddCheckMapsWithTransitions(HValue* object, 1823 void AddCheckMapsWithTransitions(HValue* object,
1826 Handle<Map> map); 1824 Handle<Map> map);
1827 1825
1828 void BuildStoreNamed(Expression* expression, 1826 void BuildStoreNamed(Expression* expression,
1829 BailoutId id, 1827 BailoutId id,
1830 int position, 1828 int position,
1831 BailoutId assignment_id, 1829 BailoutId assignment_id,
1832 Property* prop, 1830 Property* prop,
1833 HValue* object, 1831 HValue* object,
1834 HValue* store_value, 1832 HValue* value);
1835 HValue* result_value = NULL);
1836 1833
1837 HInstruction* BuildStoreNamedField(HValue* object, 1834 HInstruction* BuildStoreNamedField(HValue* object,
1838 Handle<String> name, 1835 Handle<String> name,
1839 HValue* value, 1836 HValue* value,
1840 Handle<Map> map, 1837 Handle<Map> map,
1841 LookupResult* lookup); 1838 LookupResult* lookup);
1842 HInstruction* BuildStoreNamedGeneric(HValue* object, 1839 HInstruction* BuildStoreNamedGeneric(HValue* object,
1843 Handle<String> name, 1840 Handle<String> name,
1844 HValue* value); 1841 HValue* value);
1845 HInstruction* BuildCallSetter(HValue* object, 1842 HInstruction* BuildCallSetter(HValue* object,
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
2095 EmbeddedVector<char, 64> filename_; 2092 EmbeddedVector<char, 64> filename_;
2096 HeapStringAllocator string_allocator_; 2093 HeapStringAllocator string_allocator_;
2097 StringStream trace_; 2094 StringStream trace_;
2098 int indent_; 2095 int indent_;
2099 }; 2096 };
2100 2097
2101 2098
2102 } } // namespace v8::internal 2099 } } // namespace v8::internal
2103 2100
2104 #endif // V8_HYDROGEN_H_ 2101 #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