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 9304001: Implement inlining of constructor calls. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed moar comments by Vyacheslav Egorov. Created 8 years, 10 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 | « src/hydrogen-instructions.h ('k') | src/ia32/builtins-ia32.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 1808 matching lines...) Expand 10 before | Expand all | Expand 10 after
1819 HType HUnaryMathOperation::CalculateInferredType() { 1819 HType HUnaryMathOperation::CalculateInferredType() {
1820 return HType::TaggedNumber(); 1820 return HType::TaggedNumber();
1821 } 1821 }
1822 1822
1823 1823
1824 HType HStringCharFromCode::CalculateInferredType() { 1824 HType HStringCharFromCode::CalculateInferredType() {
1825 return HType::String(); 1825 return HType::String();
1826 } 1826 }
1827 1827
1828 1828
1829 HType HAllocateObject::CalculateInferredType() {
1830 return HType::JSObject();
1831 }
1832
1833
1829 HType HArrayLiteral::CalculateInferredType() { 1834 HType HArrayLiteral::CalculateInferredType() {
1830 return HType::JSArray(); 1835 return HType::JSArray();
1831 } 1836 }
1832 1837
1833 1838
1834 HType HObjectLiteralFast::CalculateInferredType() { 1839 HType HObjectLiteralFast::CalculateInferredType() {
1835 return HType::JSObject(); 1840 return HType::JSObject();
1836 } 1841 }
1837 1842
1838 1843
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
2146 2151
2147 2152
2148 void HCheckPrototypeMaps::Verify() { 2153 void HCheckPrototypeMaps::Verify() {
2149 HInstruction::Verify(); 2154 HInstruction::Verify();
2150 ASSERT(HasNoUses()); 2155 ASSERT(HasNoUses());
2151 } 2156 }
2152 2157
2153 #endif 2158 #endif
2154 2159
2155 } } // namespace v8::internal 2160 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/ia32/builtins-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698