| 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 2268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |