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

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

Issue 6201006: X64 Crankshaft: Ported lots of boilerplate code. (Closed)
Patch Set: Addressed review comments. Updated to match newest ia32 version. 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
« no previous file with comments | « no previous file | src/x64/assembler-x64.h » ('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 24 matching lines...) Expand all
35 #include "safepoint-table.h" 35 #include "safepoint-table.h"
36 #include "scopes.h" 36 #include "scopes.h"
37 37
38 namespace v8 { 38 namespace v8 {
39 namespace internal { 39 namespace internal {
40 40
41 // Forward declarations. 41 // Forward declarations.
42 class LDeferredCode; 42 class LDeferredCode;
43 class SafepointGenerator; 43 class SafepointGenerator;
44 44
45
46 class LCodeGen BASE_EMBEDDED { 45 class LCodeGen BASE_EMBEDDED {
47 public: 46 public:
48 LCodeGen(LChunk* chunk, MacroAssembler* assembler, CompilationInfo* info) 47 LCodeGen(LChunk* chunk, MacroAssembler* assembler, CompilationInfo* info)
49 : chunk_(chunk), 48 : chunk_(chunk),
50 masm_(assembler), 49 masm_(assembler),
51 info_(info), 50 info_(info),
52 current_block_(-1), 51 current_block_(-1),
53 current_instruction_(-1), 52 current_instruction_(-1),
54 instructions_(chunk->instructions()), 53 instructions_(chunk->instructions()),
55 deoptimizations_(4), 54 deoptimizations_(4),
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 private: 263 private:
265 LCodeGen* codegen_; 264 LCodeGen* codegen_;
266 Label entry_; 265 Label entry_;
267 Label exit_; 266 Label exit_;
268 Label* external_exit_; 267 Label* external_exit_;
269 }; 268 };
270 269
271 } } // namespace v8::internal 270 } } // namespace v8::internal
272 271
273 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ 272 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_
OLDNEW
« no previous file with comments | « no previous file | src/x64/assembler-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698