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

Side by Side Diff: src/hydrogen.h

Issue 7206040: Remove redundant hydrogen- and lithium instruction for symbol comparison. (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
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 864 matching lines...) Expand 10 before | Expand all | Expand 10 after
875 void HandlePolymorphicStoreNamedField(Assignment* expr, 875 void HandlePolymorphicStoreNamedField(Assignment* expr,
876 HValue* object, 876 HValue* object,
877 HValue* value, 877 HValue* value,
878 ZoneMapList* types, 878 ZoneMapList* types,
879 Handle<String> name); 879 Handle<String> name);
880 void HandlePolymorphicCallNamed(Call* expr, 880 void HandlePolymorphicCallNamed(Call* expr,
881 HValue* receiver, 881 HValue* receiver,
882 ZoneMapList* types, 882 ZoneMapList* types,
883 Handle<String> name); 883 Handle<String> name);
884 884
885 HCompareSymbolEq* BuildSymbolCompare(HValue* left, 885 HCompareObjectEq* BuildSymbolCompare(HValue* left,
886 HValue* right, 886 HValue* right);
887 Token::Value op);
888 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string, 887 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string,
889 HValue* index); 888 HValue* index);
890 HInstruction* BuildBinaryOperation(BinaryOperation* expr, 889 HInstruction* BuildBinaryOperation(BinaryOperation* expr,
891 HValue* left, 890 HValue* left,
892 HValue* right); 891 HValue* right);
893 HInstruction* BuildIncrement(bool returns_original_input, 892 HInstruction* BuildIncrement(bool returns_original_input,
894 CountOperation* expr); 893 CountOperation* expr);
895 HLoadNamedField* BuildLoadNamedField(HValue* object, 894 HLoadNamedField* BuildLoadNamedField(HValue* object,
896 Property* expr, 895 Property* expr,
897 Handle<Map> type, 896 Handle<Map> type,
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
1200 const char* filename_; 1199 const char* filename_;
1201 HeapStringAllocator string_allocator_; 1200 HeapStringAllocator string_allocator_;
1202 StringStream trace_; 1201 StringStream trace_;
1203 int indent_; 1202 int indent_;
1204 }; 1203 };
1205 1204
1206 1205
1207 } } // namespace v8::internal 1206 } } // namespace v8::internal
1208 1207
1209 #endif // V8_HYDROGEN_H_ 1208 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/hydrogen.cc » ('j') | src/hydrogen.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698