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

Side by Side Diff: src/hydrogen.h

Issue 6805005: Fix opmitized external array access for compound assignments (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: remove unchanged file Created 9 years, 8 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 807 matching lines...) Expand 10 before | Expand all | Expand 10 after
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* BuildLoadKeyedSpecializedArrayElement(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* BuildLoadKeyed(HValue* obj,
Mads Ager (chromium) 2011/04/06 16:45:15 Remove spaces between '*' and 'obj'. Ditto for oth
829 HValue* key,
830 Property* prop);
831
828 HInstruction* BuildLoadNamed(HValue* object, 832 HInstruction* BuildLoadNamed(HValue* object,
829 Property* prop, 833 Property* prop,
830 Handle<Map> map, 834 Handle<Map> map,
831 Handle<String> name); 835 Handle<String> name);
832 HInstruction* BuildStoreNamed(HValue* object, 836 HInstruction* BuildStoreNamed(HValue* object,
833 HValue* value, 837 HValue* value,
834 Expression* expr); 838 Expression* expr);
835 HInstruction* BuildStoreNamedField(HValue* object, 839 HInstruction* BuildStoreNamedField(HValue* object,
836 Handle<String> name, 840 Handle<String> name,
837 HValue* value, 841 HValue* value,
838 Handle<Map> type, 842 Handle<Map> type,
839 LookupResult* lookup, 843 LookupResult* lookup,
840 bool smi_and_map_check); 844 bool smi_and_map_check);
841 HInstruction* BuildStoreNamedGeneric(HValue* object, 845 HInstruction* BuildStoreNamedGeneric(HValue* object,
842 Handle<String> name, 846 Handle<String> name,
843 HValue* value); 847 HValue* value);
844 HInstruction* BuildStoreKeyedGeneric(HValue* object, 848 HInstruction* BuildStoreKeyedGeneric(HValue* object,
845 HValue* key, 849 HValue* key,
846 HValue* value); 850 HValue* value);
847 851
848 HInstruction* BuildStoreKeyedFastElement(HValue* object, 852 HInstruction* BuildStoreKeyedFastElement(HValue* object,
849 HValue* key, 853 HValue* key,
850 HValue* val, 854 HValue* val,
851 Expression* expr); 855 Expression* expr);
852 856
853 HInstruction* BuildStoreKeyedSpecializedArrayElement( 857 HInstruction* BuildStoreKeyedSpecializedArrayElement(
854 HValue* object, 858 HValue* object,
855 HValue* key, 859 HValue* key,
856 HValue* val, 860 HValue* val,
857 Assignment* expr); 861 Expression* expr);
862
863 HInstruction* BuildStoreKeyed(HValue* object,
864 HValue* key,
865 HValue* value,
866 Expression* assignment);
858 867
859 HValue* BuildContextChainWalk(Variable* var); 868 HValue* BuildContextChainWalk(Variable* var);
860 869
861 void AddCheckConstantFunction(Call* expr, 870 void AddCheckConstantFunction(Call* expr,
862 HValue* receiver, 871 HValue* receiver,
863 Handle<Map> receiver_map, 872 Handle<Map> receiver_map,
864 bool smi_and_map_check); 873 bool smi_and_map_check);
865 874
866 875
867 // The translation state of the currently-being-translated function. 876 // The translation state of the currently-being-translated function.
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
1099 const char* filename_; 1108 const char* filename_;
1100 HeapStringAllocator string_allocator_; 1109 HeapStringAllocator string_allocator_;
1101 StringStream trace_; 1110 StringStream trace_;
1102 int indent_; 1111 int indent_;
1103 }; 1112 };
1104 1113
1105 1114
1106 } } // namespace v8::internal 1115 } } // namespace v8::internal
1107 1116
1108 #endif // V8_HYDROGEN_H_ 1117 #endif // V8_HYDROGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698