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

Side by Side Diff: src/hydrogen-instructions.cc

Issue 8640001: Implement crankshaft support for nested object literals. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Ported lithium part to x64 and ARM. Created 9 years, 1 month 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 | « src/hydrogen-instructions.h ('k') | src/ia32/lithium-codegen-ia32.h » ('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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 1774 matching lines...) Expand 10 before | Expand all | Expand 10 after
1785 HType HStringCharFromCode::CalculateInferredType() { 1785 HType HStringCharFromCode::CalculateInferredType() {
1786 return HType::String(); 1786 return HType::String();
1787 } 1787 }
1788 1788
1789 1789
1790 HType HArrayLiteral::CalculateInferredType() { 1790 HType HArrayLiteral::CalculateInferredType() {
1791 return HType::JSArray(); 1791 return HType::JSArray();
1792 } 1792 }
1793 1793
1794 1794
1795 HType HObjectLiteral::CalculateInferredType() { 1795 HType HObjectLiteralFast::CalculateInferredType() {
1796 return HType::JSObject(); 1796 return HType::JSObject();
1797 } 1797 }
1798 1798
1799
1800 HType HObjectLiteralGeneric::CalculateInferredType() {
1801 return HType::JSObject();
1802 }
1803
1799 1804
1800 HType HRegExpLiteral::CalculateInferredType() { 1805 HType HRegExpLiteral::CalculateInferredType() {
1801 return HType::JSObject(); 1806 return HType::JSObject();
1802 } 1807 }
1803 1808
1804 1809
1805 HType HFunctionLiteral::CalculateInferredType() { 1810 HType HFunctionLiteral::CalculateInferredType() {
1806 return HType::JSObject(); 1811 return HType::JSObject();
1807 } 1812 }
1808 1813
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
2102 2107
2103 2108
2104 void HCheckPrototypeMaps::Verify() { 2109 void HCheckPrototypeMaps::Verify() {
2105 HInstruction::Verify(); 2110 HInstruction::Verify();
2106 ASSERT(HasNoUses()); 2111 ASSERT(HasNoUses());
2107 } 2112 }
2108 2113
2109 #endif 2114 #endif
2110 2115
2111 } } // namespace v8::internal 2116 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/ia32/lithium-codegen-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698