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

Side by Side Diff: src/hydrogen.h

Issue 9227007: Version 3.8.6 (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 8 years, 11 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/heap-profiler.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 852 matching lines...) Expand 10 before | Expand all | Expand 10 after
863 // Remove the arguments from the bailout environment and emit instructions 863 // Remove the arguments from the bailout environment and emit instructions
864 // to push them as outgoing parameters. 864 // to push them as outgoing parameters.
865 template <int V> HInstruction* PreProcessCall(HCall<V>* call); 865 template <int V> HInstruction* PreProcessCall(HCall<V>* call);
866 866
867 void TraceRepresentation(Token::Value op, 867 void TraceRepresentation(Token::Value op,
868 TypeInfo info, 868 TypeInfo info,
869 HValue* value, 869 HValue* value,
870 Representation rep); 870 Representation rep);
871 static Representation ToRepresentation(TypeInfo info); 871 static Representation ToRepresentation(TypeInfo info);
872 872
873 void SetupScope(Scope* scope); 873 void SetUpScope(Scope* scope);
874 virtual void VisitStatements(ZoneList<Statement*>* statements); 874 virtual void VisitStatements(ZoneList<Statement*>* statements);
875 875
876 #define DECLARE_VISIT(type) virtual void Visit##type(type* node); 876 #define DECLARE_VISIT(type) virtual void Visit##type(type* node);
877 AST_NODE_LIST(DECLARE_VISIT) 877 AST_NODE_LIST(DECLARE_VISIT)
878 #undef DECLARE_VISIT 878 #undef DECLARE_VISIT
879 879
880 HBasicBlock* CreateBasicBlock(HEnvironment* env); 880 HBasicBlock* CreateBasicBlock(HEnvironment* env);
881 HBasicBlock* CreateLoopHeaderBlock(); 881 HBasicBlock* CreateLoopHeaderBlock();
882 882
883 // Helpers for flow graph construction. 883 // Helpers for flow graph construction.
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
1251 const char* filename_; 1251 const char* filename_;
1252 HeapStringAllocator string_allocator_; 1252 HeapStringAllocator string_allocator_;
1253 StringStream trace_; 1253 StringStream trace_;
1254 int indent_; 1254 int indent_;
1255 }; 1255 };
1256 1256
1257 1257
1258 } } // namespace v8::internal 1258 } } // namespace v8::internal
1259 1259
1260 #endif // V8_HYDROGEN_H_ 1260 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/heap-profiler.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698