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

Side by Side Diff: src/arm/lithium-codegen-arm.h

Issue 6142011: Crankshaft: Move LEnvironment and LPointerMap classes to platform-independent... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 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/arm/lithium-arm.cc ('k') | src/arm/lithium-codegen-arm.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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 // Deferred code support. 73 // Deferred code support.
74 void DoDeferredNumberTagD(LNumberTagD* instr); 74 void DoDeferredNumberTagD(LNumberTagD* instr);
75 void DoDeferredNumberTagI(LNumberTagI* instr); 75 void DoDeferredNumberTagI(LNumberTagI* instr);
76 void DoDeferredTaggedToI(LTaggedToI* instr); 76 void DoDeferredTaggedToI(LTaggedToI* instr);
77 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); 77 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr);
78 void DoDeferredStackCheck(LGoto* instr); 78 void DoDeferredStackCheck(LGoto* instr);
79 79
80 // Parallel move support. 80 // Parallel move support.
81 void DoParallelMove(LParallelMove* move); 81 void DoParallelMove(LParallelMove* move);
82 82
83 // Emit frame translation commands for an environment.
84 void WriteTranslation(LEnvironment* environment, Translation* translation);
85
83 // Declare methods that deal with the individual node types. 86 // Declare methods that deal with the individual node types.
84 #define DECLARE_DO(type) void Do##type(L##type* node); 87 #define DECLARE_DO(type) void Do##type(L##type* node);
85 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO) 88 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO)
86 #undef DECLARE_DO 89 #undef DECLARE_DO
87 90
88 private: 91 private:
89 enum Status { 92 enum Status {
90 UNUSED, 93 UNUSED,
91 GENERATING, 94 GENERATING,
92 DONE, 95 DONE,
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 private: 273 private:
271 LCodeGen* codegen_; 274 LCodeGen* codegen_;
272 Label entry_; 275 Label entry_;
273 Label exit_; 276 Label exit_;
274 Label* external_exit_; 277 Label* external_exit_;
275 }; 278 };
276 279
277 } } // namespace v8::internal 280 } } // namespace v8::internal
278 281
279 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ 282 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-arm.cc ('k') | src/arm/lithium-codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698