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

Side by Side Diff: src/hydrogen.h

Issue 6390003: Introduce a hydrogen value for contexts, support context slot assignment. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Sorted Lithium instructions names. 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
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 805 matching lines...) Expand 10 before | Expand all | Expand 10 after
816 816
817 HInstruction* BuildStoreKeyedFastElement(HValue* object, 817 HInstruction* BuildStoreKeyedFastElement(HValue* object,
818 HValue* key, 818 HValue* key,
819 HValue* val, 819 HValue* val,
820 Expression* expr); 820 Expression* expr);
821 821
822 HCompare* BuildSwitchCompare(HSubgraph* subgraph, 822 HCompare* BuildSwitchCompare(HSubgraph* subgraph,
823 HValue* switch_value, 823 HValue* switch_value,
824 CaseClause* clause); 824 CaseClause* clause);
825 825
826 HValue* BuildContextChainWalk(Variable* var);
827
826 void AddCheckConstantFunction(Call* expr, 828 void AddCheckConstantFunction(Call* expr,
827 HValue* receiver, 829 HValue* receiver,
828 Handle<Map> receiver_map, 830 Handle<Map> receiver_map,
829 bool smi_and_map_check); 831 bool smi_and_map_check);
830 832
831 833
832 HBasicBlock* BuildTypeSwitch(ZoneMapList* maps, 834 HBasicBlock* BuildTypeSwitch(ZoneMapList* maps,
833 ZoneList<HSubgraph*>* subgraphs, 835 ZoneList<HSubgraph*>* subgraphs,
834 HValue* receiver, 836 HValue* receiver,
835 int join_id); 837 int join_id);
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
1066 const char* filename_; 1068 const char* filename_;
1067 HeapStringAllocator string_allocator_; 1069 HeapStringAllocator string_allocator_;
1068 StringStream trace_; 1070 StringStream trace_;
1069 int indent_; 1071 int indent_;
1070 }; 1072 };
1071 1073
1072 1074
1073 } } // namespace v8::internal 1075 } } // namespace v8::internal
1074 1076
1075 #endif // V8_HYDROGEN_H_ 1077 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/hydrogen.cc » ('j') | src/hydrogen.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698