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

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

Issue 10533022: Unbreak MIPS build after recent zone-related changes (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 6 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/mips/lithium-codegen-mips.cc ('k') | src/mips/lithium-mips.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 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 2234 matching lines...) Expand 10 before | Expand all | Expand 10 after
2245 ZoneList<Handle<JSFunction> > inlined_closures_; 2245 ZoneList<Handle<JSFunction> > inlined_closures_;
2246 }; 2246 };
2247 2247
2248 2248
2249 class LChunkBuilder BASE_EMBEDDED { 2249 class LChunkBuilder BASE_EMBEDDED {
2250 public: 2250 public:
2251 LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator) 2251 LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator)
2252 : chunk_(NULL), 2252 : chunk_(NULL),
2253 info_(info), 2253 info_(info),
2254 graph_(graph), 2254 graph_(graph),
2255 zone_(graph->isolate()->zone()), 2255 zone_(graph->zone()),
2256 status_(UNUSED), 2256 status_(UNUSED),
2257 current_instruction_(NULL), 2257 current_instruction_(NULL),
2258 current_block_(NULL), 2258 current_block_(NULL),
2259 next_block_(NULL), 2259 next_block_(NULL),
2260 argument_count_(0), 2260 argument_count_(0),
2261 allocator_(allocator), 2261 allocator_(allocator),
2262 position_(RelocInfo::kNoPosition), 2262 position_(RelocInfo::kNoPosition),
2263 instruction_pending_deoptimization_environment_(NULL), 2263 instruction_pending_deoptimization_environment_(NULL),
2264 pending_deoptimization_ast_id_(AstNode::kNoNumber) { } 2264 pending_deoptimization_ast_id_(AstNode::kNoNumber) { }
2265 2265
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
2396 2396
2397 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2397 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2398 }; 2398 };
2399 2399
2400 #undef DECLARE_HYDROGEN_ACCESSOR 2400 #undef DECLARE_HYDROGEN_ACCESSOR
2401 #undef DECLARE_CONCRETE_INSTRUCTION 2401 #undef DECLARE_CONCRETE_INSTRUCTION
2402 2402
2403 } } // namespace v8::internal 2403 } } // namespace v8::internal
2404 2404
2405 #endif // V8_MIPS_LITHIUM_MIPS_H_ 2405 #endif // V8_MIPS_LITHIUM_MIPS_H_
OLDNEW
« no previous file with comments | « src/mips/lithium-codegen-mips.cc ('k') | src/mips/lithium-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698