| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |