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

Side by Side Diff: src/hydrogen.h

Issue 7027029: Revert r8140. (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);
881 HInstruction* BuildIncrement(bool returns_original_input, 885 HInstruction* BuildIncrement(bool returns_original_input,
882 CountOperation* expr); 886 CountOperation* expr);
883 HLoadNamedField* BuildLoadNamedField(HValue* object, 887 HLoadNamedField* BuildLoadNamedField(HValue* object,
884 Property* expr, 888 Property* expr,
885 Handle<Map> type, 889 Handle<Map> type,
886 LookupResult* result, 890 LookupResult* result,
887 bool smi_and_map_check); 891 bool smi_and_map_check);
888 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr); 892 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr);
889 HInstruction* BuildLoadKeyedFastElement(HValue* object, 893 HInstruction* BuildLoadKeyedFastElement(HValue* object,
890 HValue* key, 894 HValue* key,
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
1191 const char* filename_; 1195 const char* filename_;
1192 HeapStringAllocator string_allocator_; 1196 HeapStringAllocator string_allocator_;
1193 StringStream trace_; 1197 StringStream trace_;
1194 int indent_; 1198 int indent_;
1195 }; 1199 };
1196 1200
1197 1201
1198 } } // namespace v8::internal 1202 } } // namespace v8::internal
1199 1203
1200 #endif // V8_HYDROGEN_H_ 1204 #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