| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 GenerateDeferredCode() && | 87 GenerateDeferredCode() && |
| 88 GenerateSafepointTable(); | 88 GenerateSafepointTable(); |
| 89 } | 89 } |
| 90 | 90 |
| 91 | 91 |
| 92 void LCodeGen::FinishCode(Handle<Code> code) { | 92 void LCodeGen::FinishCode(Handle<Code> code) { |
| 93 ASSERT(is_done()); | 93 ASSERT(is_done()); |
| 94 code->set_stack_slots(StackSlotCount()); | 94 code->set_stack_slots(StackSlotCount()); |
| 95 code->set_safepoint_table_offset(safepoints_.GetCodeOffset()); | 95 code->set_safepoint_table_offset(safepoints_.GetCodeOffset()); |
| 96 PopulateDeoptimizationData(code); | 96 PopulateDeoptimizationData(code); |
| 97 Deoptimizer::EnsureRelocSpaceForLazyDeoptimization(code); |
| 97 } | 98 } |
| 98 | 99 |
| 99 | 100 |
| 100 void LCodeGen::Abort(const char* format, ...) { | 101 void LCodeGen::Abort(const char* format, ...) { |
| 101 if (FLAG_trace_bailout) { | 102 if (FLAG_trace_bailout) { |
| 102 SmartPointer<char> name(info()->shared_info()->DebugName()->ToCString()); | 103 SmartPointer<char> name(info()->shared_info()->DebugName()->ToCString()); |
| 103 PrintF("Aborting LCodeGen in @\"%s\": ", *name); | 104 PrintF("Aborting LCodeGen in @\"%s\": ", *name); |
| 104 va_list arguments; | 105 va_list arguments; |
| 105 va_start(arguments, format); | 106 va_start(arguments, format); |
| 106 OS::VPrint(format, arguments); | 107 OS::VPrint(format, arguments); |
| (...skipping 3961 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4068 ASSERT(!environment->HasBeenRegistered()); | 4069 ASSERT(!environment->HasBeenRegistered()); |
| 4069 RegisterEnvironmentForDeoptimization(environment); | 4070 RegisterEnvironmentForDeoptimization(environment); |
| 4070 ASSERT(osr_pc_offset_ == -1); | 4071 ASSERT(osr_pc_offset_ == -1); |
| 4071 osr_pc_offset_ = masm()->pc_offset(); | 4072 osr_pc_offset_ = masm()->pc_offset(); |
| 4072 } | 4073 } |
| 4073 | 4074 |
| 4074 | 4075 |
| 4075 #undef __ | 4076 #undef __ |
| 4076 | 4077 |
| 4077 } } // namespace v8::internal | 4078 } } // namespace v8::internal |
| OLD | NEW |