| 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 1808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |