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

Side by Side Diff: src/hydrogen.h

Issue 6528013: Implement crankshaft support for pixel array stores. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: review feedback Created 9 years, 10 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 798 matching lines...) Expand 10 before | Expand all | Expand 10 after
809 HValue* value); 809 HValue* value);
810 HInstruction* BuildStoreKeyedGeneric(HValue* object, 810 HInstruction* BuildStoreKeyedGeneric(HValue* object,
811 HValue* key, 811 HValue* key,
812 HValue* value); 812 HValue* value);
813 813
814 HInstruction* BuildStoreKeyedFastElement(HValue* object, 814 HInstruction* BuildStoreKeyedFastElement(HValue* object,
815 HValue* key, 815 HValue* key,
816 HValue* val, 816 HValue* val,
817 Expression* expr); 817 Expression* expr);
818 818
819 HInstruction* BuildStoreKeyedPixelArrayElement(HValue* object,
820 HValue* key,
821 HValue* val,
822 Expression* expr);
823
819 HCompare* BuildSwitchCompare(HSubgraph* subgraph, 824 HCompare* BuildSwitchCompare(HSubgraph* subgraph,
820 HValue* switch_value, 825 HValue* switch_value,
821 CaseClause* clause); 826 CaseClause* clause);
822 827
823 HValue* BuildContextChainWalk(Variable* var); 828 HValue* BuildContextChainWalk(Variable* var);
824 829
825 void AddCheckConstantFunction(Call* expr, 830 void AddCheckConstantFunction(Call* expr,
826 HValue* receiver, 831 HValue* receiver,
827 Handle<Map> receiver_map, 832 Handle<Map> receiver_map,
828 bool smi_and_map_check); 833 bool smi_and_map_check);
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
1066 const char* filename_; 1071 const char* filename_;
1067 HeapStringAllocator string_allocator_; 1072 HeapStringAllocator string_allocator_;
1068 StringStream trace_; 1073 StringStream trace_;
1069 int indent_; 1074 int indent_;
1070 }; 1075 };
1071 1076
1072 1077
1073 } } // namespace v8::internal 1078 } } // namespace v8::internal
1074 1079
1075 #endif // V8_HYDROGEN_H_ 1080 #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