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

Side by Side Diff: src/hydrogen.h

Issue 6656001: Support external arrays in Crankshaft (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: final version Created 9 years, 9 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-codegen-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 801 matching lines...) Expand 10 before | Expand all | Expand 10 after
812 HInstruction* BuildIncrement(HValue* value, bool increment); 812 HInstruction* BuildIncrement(HValue* value, bool increment);
813 HLoadNamedField* BuildLoadNamedField(HValue* object, 813 HLoadNamedField* BuildLoadNamedField(HValue* object,
814 Property* expr, 814 Property* expr,
815 Handle<Map> type, 815 Handle<Map> type,
816 LookupResult* result, 816 LookupResult* result,
817 bool smi_and_map_check); 817 bool smi_and_map_check);
818 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr); 818 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr);
819 HInstruction* BuildLoadKeyedFastElement(HValue* object, 819 HInstruction* BuildLoadKeyedFastElement(HValue* object,
820 HValue* key, 820 HValue* key,
821 Property* expr); 821 Property* expr);
822 HInstruction* BuildLoadKeyedPixelArrayElement(HValue* object, 822 HInstruction* BuildLoadKeyedSpecializedArrayElement(HValue* object,
823 HValue* key, 823 HValue* key,
824 Property* expr); 824 Property* expr);
825 HInstruction* BuildLoadKeyedGeneric(HValue* object, 825 HInstruction* BuildLoadKeyedGeneric(HValue* object,
826 HValue* key); 826 HValue* key);
827 827
828 HInstruction* BuildLoadNamed(HValue* object, 828 HInstruction* BuildLoadNamed(HValue* object,
829 Property* prop, 829 Property* prop,
830 Handle<Map> map, 830 Handle<Map> map,
831 Handle<String> name); 831 Handle<String> name);
832 HInstruction* BuildStoreNamed(HValue* object, 832 HInstruction* BuildStoreNamed(HValue* object,
833 HValue* value, 833 HValue* value,
834 Expression* expr); 834 Expression* expr);
835 HInstruction* BuildStoreNamedField(HValue* object, 835 HInstruction* BuildStoreNamedField(HValue* object,
836 Handle<String> name, 836 Handle<String> name,
837 HValue* value, 837 HValue* value,
838 Handle<Map> type, 838 Handle<Map> type,
839 LookupResult* lookup, 839 LookupResult* lookup,
840 bool smi_and_map_check); 840 bool smi_and_map_check);
841 HInstruction* BuildStoreNamedGeneric(HValue* object, 841 HInstruction* BuildStoreNamedGeneric(HValue* object,
842 Handle<String> name, 842 Handle<String> name,
843 HValue* value); 843 HValue* value);
844 HInstruction* BuildStoreKeyedGeneric(HValue* object, 844 HInstruction* BuildStoreKeyedGeneric(HValue* object,
845 HValue* key, 845 HValue* key,
846 HValue* value); 846 HValue* value);
847 847
848 HInstruction* BuildStoreKeyedFastElement(HValue* object, 848 HInstruction* BuildStoreKeyedFastElement(HValue* object,
849 HValue* key, 849 HValue* key,
850 HValue* val, 850 HValue* val,
851 Expression* expr); 851 Expression* expr);
852 852
853 HInstruction* BuildStoreKeyedPixelArrayElement(HValue* object, 853 HInstruction* BuildStoreKeyedSpecializedArrayElement(
854 HValue* key, 854 HValue* object,
855 HValue* val, 855 HValue* key,
856 Expression* expr); 856 HValue* val,
857 Assignment* expr);
857 858
858 HValue* BuildContextChainWalk(Variable* var); 859 HValue* BuildContextChainWalk(Variable* var);
859 860
860 void AddCheckConstantFunction(Call* expr, 861 void AddCheckConstantFunction(Call* expr,
861 HValue* receiver, 862 HValue* receiver,
862 Handle<Map> receiver_map, 863 Handle<Map> receiver_map,
863 bool smi_and_map_check); 864 bool smi_and_map_check);
864 865
865 866
866 // The translation state of the currently-being-translated function. 867 // The translation state of the currently-being-translated function.
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
1098 const char* filename_; 1099 const char* filename_;
1099 HeapStringAllocator string_allocator_; 1100 HeapStringAllocator string_allocator_;
1100 StringStream trace_; 1101 StringStream trace_;
1101 int indent_; 1102 int indent_;
1102 }; 1103 };
1103 1104
1104 1105
1105 } } // namespace v8::internal 1106 } } // namespace v8::internal
1106 1107
1107 #endif // V8_HYDROGEN_H_ 1108 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698