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

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

Issue 14972008: Remove obsolete HObjectLiteral instruction. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix after rebase. Created 7 years, 7 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/lithium-codegen-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 2995 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698