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

Side by Side Diff: src/hydrogen.h

Issue 7112032: Re-land r8140: Deoptimize on never-executed code-paths. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 6 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/arm/lithium-arm.cc ('k') | src/hydrogen.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 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 860 matching lines...) Expand 10 before | Expand all | Expand 10 after
871 Handle<String> name); 871 Handle<String> name);
872 872
873 HCompareSymbolEq* BuildSymbolCompare(HValue* left, 873 HCompareSymbolEq* BuildSymbolCompare(HValue* left,
874 HValue* right, 874 HValue* right,
875 Token::Value op); 875 Token::Value op);
876 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string, 876 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string,
877 HValue* index); 877 HValue* index);
878 HInstruction* BuildBinaryOperation(BinaryOperation* expr, 878 HInstruction* BuildBinaryOperation(BinaryOperation* expr,
879 HValue* left, 879 HValue* left,
880 HValue* right); 880 HValue* right);
881 HInstruction* BuildBinaryOperation(Token::Value op,
882 HValue* left,
883 HValue* right,
884 TypeInfo info);
885 HInstruction* BuildIncrement(bool returns_original_input, 881 HInstruction* BuildIncrement(bool returns_original_input,
886 CountOperation* expr); 882 CountOperation* expr);
887 HLoadNamedField* BuildLoadNamedField(HValue* object, 883 HLoadNamedField* BuildLoadNamedField(HValue* object,
888 Property* expr, 884 Property* expr,
889 Handle<Map> type, 885 Handle<Map> type,
890 LookupResult* result, 886 LookupResult* result,
891 bool smi_and_map_check); 887 bool smi_and_map_check);
892 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr); 888 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr);
893 HInstruction* BuildLoadKeyedFastElement(HValue* object, 889 HInstruction* BuildLoadKeyedFastElement(HValue* object,
894 HValue* key, 890 HValue* key,
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
1195 const char* filename_; 1191 const char* filename_;
1196 HeapStringAllocator string_allocator_; 1192 HeapStringAllocator string_allocator_;
1197 StringStream trace_; 1193 StringStream trace_;
1198 int indent_; 1194 int indent_;
1199 }; 1195 };
1200 1196
1201 1197
1202 } } // namespace v8::internal 1198 } } // namespace v8::internal
1203 1199
1204 #endif // V8_HYDROGEN_H_ 1200 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-arm.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698