| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |