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

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

Issue 10443114: Progress towards making Zones independent of Isolates and Threads. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix nits and rebase on current bleeding_edge 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/allocation-inl.h ('k') | src/arm/lithium-arm.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 2268 matching lines...) Expand 10 before | Expand all | Expand 10 after
2279 ZoneList<Handle<JSFunction> > inlined_closures_; 2279 ZoneList<Handle<JSFunction> > inlined_closures_;
2280 }; 2280 };
2281 2281
2282 2282
2283 class LChunkBuilder BASE_EMBEDDED { 2283 class LChunkBuilder BASE_EMBEDDED {
2284 public: 2284 public:
2285 LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator) 2285 LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator)
2286 : chunk_(NULL), 2286 : chunk_(NULL),
2287 info_(info), 2287 info_(info),
2288 graph_(graph), 2288 graph_(graph),
2289 zone_(graph->isolate()->zone()), 2289 zone_(graph->zone()),
2290 status_(UNUSED), 2290 status_(UNUSED),
2291 current_instruction_(NULL), 2291 current_instruction_(NULL),
2292 current_block_(NULL), 2292 current_block_(NULL),
2293 next_block_(NULL), 2293 next_block_(NULL),
2294 argument_count_(0), 2294 argument_count_(0),
2295 allocator_(allocator), 2295 allocator_(allocator),
2296 position_(RelocInfo::kNoPosition), 2296 position_(RelocInfo::kNoPosition),
2297 instruction_pending_deoptimization_environment_(NULL), 2297 instruction_pending_deoptimization_environment_(NULL),
2298 pending_deoptimization_ast_id_(AstNode::kNoNumber) { } 2298 pending_deoptimization_ast_id_(AstNode::kNoNumber) { }
2299 2299
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
2433 2433
2434 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2434 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2435 }; 2435 };
2436 2436
2437 #undef DECLARE_HYDROGEN_ACCESSOR 2437 #undef DECLARE_HYDROGEN_ACCESSOR
2438 #undef DECLARE_CONCRETE_INSTRUCTION 2438 #undef DECLARE_CONCRETE_INSTRUCTION
2439 2439
2440 } } // namespace v8::internal 2440 } } // namespace v8::internal
2441 2441
2442 #endif // V8_ARM_LITHIUM_ARM_H_ 2442 #endif // V8_ARM_LITHIUM_ARM_H_
OLDNEW
« no previous file with comments | « src/allocation-inl.h ('k') | src/arm/lithium-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698