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

Side by Side Diff: src/ia32/lithium-codegen-ia32.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-codegen-arm.cc ('k') | src/ia32/lithium-codegen-ia32.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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 void DoDeferredNumberTagI(LNumberTagI* instr); 76 void DoDeferredNumberTagI(LNumberTagI* instr);
77 void DoDeferredTaggedToI(LTaggedToI* instr); 77 void DoDeferredTaggedToI(LTaggedToI* instr);
78 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); 78 void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr);
79 void DoDeferredStackCheck(LGoto* instr); 79 void DoDeferredStackCheck(LGoto* instr);
80 void DoDeferredLInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, 80 void DoDeferredLInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr,
81 Label* map_check); 81 Label* map_check);
82 82
83 // Parallel move support. 83 // Parallel move support.
84 void DoParallelMove(LParallelMove* move); 84 void DoParallelMove(LParallelMove* move);
85 85
86 // Emit frame translation commands for an environment.
87 void WriteTranslation(LEnvironment* environment, Translation* translation);
88
86 // Declare methods that deal with the individual node types. 89 // Declare methods that deal with the individual node types.
87 #define DECLARE_DO(type) void Do##type(L##type* node); 90 #define DECLARE_DO(type) void Do##type(L##type* node);
88 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO) 91 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_DO)
89 #undef DECLARE_DO 92 #undef DECLARE_DO
90 93
91 private: 94 private:
92 enum Status { 95 enum Status {
93 UNUSED, 96 UNUSED,
94 GENERATING, 97 GENERATING,
95 DONE, 98 DONE,
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 private: 264 private:
262 LCodeGen* codegen_; 265 LCodeGen* codegen_;
263 Label entry_; 266 Label entry_;
264 Label exit_; 267 Label exit_;
265 Label* external_exit_; 268 Label* external_exit_;
266 }; 269 };
267 270
268 } } // namespace v8::internal 271 } } // namespace v8::internal
269 272
270 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ 273 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698