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

Side by Side Diff: src/hydrogen.h

Issue 6880276: Use type info for count operation in Crankshaft. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Switch back to generating Integer32 code for tagged case, instead of bailing out of compilation. Created 9 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 | « no previous file | 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 813 matching lines...) Expand 10 before | Expand all | Expand 10 after
824 void HandlePolymorphicCallNamed(Call* expr, 824 void HandlePolymorphicCallNamed(Call* expr,
825 HValue* receiver, 825 HValue* receiver,
826 ZoneMapList* types, 826 ZoneMapList* types,
827 Handle<String> name); 827 Handle<String> name);
828 828
829 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string, 829 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string,
830 HValue* index); 830 HValue* index);
831 HInstruction* BuildBinaryOperation(BinaryOperation* expr, 831 HInstruction* BuildBinaryOperation(BinaryOperation* expr,
832 HValue* left, 832 HValue* left,
833 HValue* right); 833 HValue* right);
834 HInstruction* BuildIncrement(HValue* value, bool increment); 834 HInstruction* BuildIncrement(HValue* value,
835 bool increment,
836 CountOperation* expr);
835 HLoadNamedField* BuildLoadNamedField(HValue* object, 837 HLoadNamedField* BuildLoadNamedField(HValue* object,
836 Property* expr, 838 Property* expr,
837 Handle<Map> type, 839 Handle<Map> type,
838 LookupResult* result, 840 LookupResult* result,
839 bool smi_and_map_check); 841 bool smi_and_map_check);
840 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr); 842 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr);
841 HInstruction* BuildLoadKeyedFastElement(HValue* object, 843 HInstruction* BuildLoadKeyedFastElement(HValue* object,
842 HValue* key, 844 HValue* key,
843 Property* expr); 845 Property* expr);
844 HInstruction* BuildLoadKeyedSpecializedArrayElement(HValue* object, 846 HInstruction* BuildLoadKeyedSpecializedArrayElement(HValue* object,
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
1139 const char* filename_; 1141 const char* filename_;
1140 HeapStringAllocator string_allocator_; 1142 HeapStringAllocator string_allocator_;
1141 StringStream trace_; 1143 StringStream trace_;
1142 int indent_; 1144 int indent_;
1143 }; 1145 };
1144 1146
1145 1147
1146 } } // namespace v8::internal 1148 } } // namespace v8::internal
1147 1149
1148 #endif // V8_HYDROGEN_H_ 1150 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « no previous file | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698