| 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 2995 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3006 size()->PrintNameTo(stream); | 3006 size()->PrintNameTo(stream); |
| 3007 if (!GuaranteedInNewSpace()) stream->Add(" (pretenure)"); | 3007 if (!GuaranteedInNewSpace()) stream->Add(" (pretenure)"); |
| 3008 } | 3008 } |
| 3009 | 3009 |
| 3010 | 3010 |
| 3011 HType HArrayLiteral::CalculateInferredType() { | 3011 HType HArrayLiteral::CalculateInferredType() { |
| 3012 return HType::JSArray(); | 3012 return HType::JSArray(); |
| 3013 } | 3013 } |
| 3014 | 3014 |
| 3015 | 3015 |
| 3016 HType HObjectLiteral::CalculateInferredType() { | |
| 3017 return HType::JSObject(); | |
| 3018 } | |
| 3019 | |
| 3020 | |
| 3021 HType HRegExpLiteral::CalculateInferredType() { | 3016 HType HRegExpLiteral::CalculateInferredType() { |
| 3022 return HType::JSObject(); | 3017 return HType::JSObject(); |
| 3023 } | 3018 } |
| 3024 | 3019 |
| 3025 | 3020 |
| 3026 HType HFunctionLiteral::CalculateInferredType() { | 3021 HType HFunctionLiteral::CalculateInferredType() { |
| 3027 return HType::JSObject(); | 3022 return HType::JSObject(); |
| 3028 } | 3023 } |
| 3029 | 3024 |
| 3030 | 3025 |
| (...skipping 599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3630 | 3625 |
| 3631 | 3626 |
| 3632 void HCheckFunction::Verify() { | 3627 void HCheckFunction::Verify() { |
| 3633 HInstruction::Verify(); | 3628 HInstruction::Verify(); |
| 3634 ASSERT(HasNoUses()); | 3629 ASSERT(HasNoUses()); |
| 3635 } | 3630 } |
| 3636 | 3631 |
| 3637 #endif | 3632 #endif |
| 3638 | 3633 |
| 3639 } } // namespace v8::internal | 3634 } } // namespace v8::internal |
| OLD | NEW |