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

Side by Side Diff: src/x64/lithium-x64.h

Issue 10700115: Break Crankshaft into phases. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review. Created 8 years, 5 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
« src/mips/lithium-mips.h ('K') | « src/x64/lithium-codegen-x64.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 2167 matching lines...) Expand 10 before | Expand all | Expand 10 after
2178 2178
2179 2179
2180 class LChunkBuilder; 2180 class LChunkBuilder;
2181 class LChunk: public LChunkBase { 2181 class LChunk: public LChunkBase {
2182 public: 2182 public:
2183 LChunk(CompilationInfo* info, HGraph* graph) 2183 LChunk(CompilationInfo* info, HGraph* graph)
2184 : LChunkBase(info, graph) { } 2184 : LChunkBase(info, graph) { }
2185 2185
2186 int GetNextSpillIndex(bool is_double); 2186 int GetNextSpillIndex(bool is_double);
2187 LOperand* GetNextSpillSlot(bool is_double); 2187 LOperand* GetNextSpillSlot(bool is_double);
2188
2189 static LChunk* cast(LChunkBase* chunk_base) {
2190 return reinterpret_cast<LChunk*>(chunk_base);
2191 }
2188 }; 2192 };
2189 2193
2190 2194
2191 class LChunkBuilder BASE_EMBEDDED { 2195 class LChunkBuilder BASE_EMBEDDED {
2192 public: 2196 public:
2193 LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator) 2197 LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator)
2194 : chunk_(NULL), 2198 : chunk_(NULL),
2195 info_(info), 2199 info_(info),
2196 graph_(graph), 2200 graph_(graph),
2197 zone_(graph->zone()), 2201 zone_(graph->zone()),
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
2344 2348
2345 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2349 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2346 }; 2350 };
2347 2351
2348 #undef DECLARE_HYDROGEN_ACCESSOR 2352 #undef DECLARE_HYDROGEN_ACCESSOR
2349 #undef DECLARE_CONCRETE_INSTRUCTION 2353 #undef DECLARE_CONCRETE_INSTRUCTION
2350 2354
2351 } } // namespace v8::int 2355 } } // namespace v8::int
2352 2356
2353 #endif // V8_X64_LITHIUM_X64_H_ 2357 #endif // V8_X64_LITHIUM_X64_H_
OLDNEW
« src/mips/lithium-mips.h ('K') | « src/x64/lithium-codegen-x64.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698