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

Side by Side Diff: src/ia32/lithium-ia32.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
« no previous file with comments | « src/ia32/lithium-codegen-ia32.h ('k') | src/lithium.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 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 2309 matching lines...) Expand 10 before | Expand all | Expand 10 after
2320 2320
2321 class LChunkBuilder; 2321 class LChunkBuilder;
2322 class LChunk: public LChunkBase { 2322 class LChunk: public LChunkBase {
2323 public: 2323 public:
2324 LChunk(CompilationInfo* info, HGraph* graph) 2324 LChunk(CompilationInfo* info, HGraph* graph)
2325 : LChunkBase(info, graph), 2325 : LChunkBase(info, graph),
2326 num_double_slots_(0) { } 2326 num_double_slots_(0) { }
2327 2327
2328 int GetNextSpillIndex(bool is_double); 2328 int GetNextSpillIndex(bool is_double);
2329 LOperand* GetNextSpillSlot(bool is_double); 2329 LOperand* GetNextSpillSlot(bool is_double);
2330
danno 2012/07/12 15:00:08 Remove this whitespace change, please.
2331 int num_double_slots() const { return num_double_slots_; } 2330 int num_double_slots() const { return num_double_slots_; }
2332 2331
2333 private: 2332 private:
2334 int num_double_slots_; 2333 int num_double_slots_;
2335 }; 2334 };
2336 2335
2337 2336
2338 class LChunkBuilder BASE_EMBEDDED { 2337 class LChunkBuilder BASE_EMBEDDED {
2339 public: 2338 public:
2340 LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator) 2339 LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator)
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
2491 2490
2492 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2491 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2493 }; 2492 };
2494 2493
2495 #undef DECLARE_HYDROGEN_ACCESSOR 2494 #undef DECLARE_HYDROGEN_ACCESSOR
2496 #undef DECLARE_CONCRETE_INSTRUCTION 2495 #undef DECLARE_CONCRETE_INSTRUCTION
2497 2496
2498 } } // namespace v8::internal 2497 } } // namespace v8::internal
2499 2498
2500 #endif // V8_IA32_LITHIUM_IA32_H_ 2499 #endif // V8_IA32_LITHIUM_IA32_H_
OLDNEW
« no previous file with comments | « src/ia32/lithium-codegen-ia32.h ('k') | src/lithium.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698