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

Side by Side Diff: src/x64/lithium-x64.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/x64/lithium-codegen-x64.cc ('k') | src/x64/lithium-x64.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 2213 matching lines...) Expand 10 before | Expand all | Expand 10 after
2224 ZoneList<Handle<JSFunction> > inlined_closures_; 2224 ZoneList<Handle<JSFunction> > inlined_closures_;
2225 }; 2225 };
2226 2226
2227 2227
2228 class LChunkBuilder BASE_EMBEDDED { 2228 class LChunkBuilder BASE_EMBEDDED {
2229 public: 2229 public:
2230 LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator) 2230 LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator)
2231 : chunk_(NULL), 2231 : chunk_(NULL),
2232 info_(info), 2232 info_(info),
2233 graph_(graph), 2233 graph_(graph),
2234 zone_(graph->isolate()->zone()), 2234 zone_(graph->zone()),
2235 status_(UNUSED), 2235 status_(UNUSED),
2236 current_instruction_(NULL), 2236 current_instruction_(NULL),
2237 current_block_(NULL), 2237 current_block_(NULL),
2238 next_block_(NULL), 2238 next_block_(NULL),
2239 argument_count_(0), 2239 argument_count_(0),
2240 allocator_(allocator), 2240 allocator_(allocator),
2241 position_(RelocInfo::kNoPosition), 2241 position_(RelocInfo::kNoPosition),
2242 instruction_pending_deoptimization_environment_(NULL), 2242 instruction_pending_deoptimization_environment_(NULL),
2243 pending_deoptimization_ast_id_(AstNode::kNoNumber) { } 2243 pending_deoptimization_ast_id_(AstNode::kNoNumber) { }
2244 2244
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
2378 2378
2379 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2379 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2380 }; 2380 };
2381 2381
2382 #undef DECLARE_HYDROGEN_ACCESSOR 2382 #undef DECLARE_HYDROGEN_ACCESSOR
2383 #undef DECLARE_CONCRETE_INSTRUCTION 2383 #undef DECLARE_CONCRETE_INSTRUCTION
2384 2384
2385 } } // namespace v8::int 2385 } } // namespace v8::int
2386 2386
2387 #endif // V8_X64_LITHIUM_X64_H_ 2387 #endif // V8_X64_LITHIUM_X64_H_
OLDNEW
« no previous file with comments | « src/x64/lithium-codegen-x64.cc ('k') | src/x64/lithium-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698