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

Side by Side Diff: src/hydrogen.h

Issue 7232010: Version 3.4.6 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
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/heap.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 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,
886 HValue* right,
887 Token::Value op);
888 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string, 885 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string,
889 HValue* index); 886 HValue* index);
890 HInstruction* BuildBinaryOperation(BinaryOperation* expr, 887 HInstruction* BuildBinaryOperation(BinaryOperation* expr,
891 HValue* left, 888 HValue* left,
892 HValue* right); 889 HValue* right);
893 HInstruction* BuildIncrement(bool returns_original_input, 890 HInstruction* BuildIncrement(bool returns_original_input,
894 CountOperation* expr); 891 CountOperation* expr);
895 HLoadNamedField* BuildLoadNamedField(HValue* object, 892 HLoadNamedField* BuildLoadNamedField(HValue* object,
896 Property* expr, 893 Property* expr,
897 Handle<Map> type, 894 Handle<Map> type,
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
1200 const char* filename_; 1197 const char* filename_;
1201 HeapStringAllocator string_allocator_; 1198 HeapStringAllocator string_allocator_;
1202 StringStream trace_; 1199 StringStream trace_;
1203 int indent_; 1200 int indent_;
1204 }; 1201 };
1205 1202
1206 1203
1207 } } // namespace v8::internal 1204 } } // namespace v8::internal
1208 1205
1209 #endif // V8_HYDROGEN_H_ 1206 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/heap.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698