| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 ASSERT(is_done()); | 93 ASSERT(is_done()); |
| 94 code->set_stack_slots(GetStackSlotCount()); | 94 code->set_stack_slots(GetStackSlotCount()); |
| 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 Deoptimizer::EnsureRelocSpaceForLazyDeoptimization(code); |
| 98 } | 98 } |
| 99 | 99 |
| 100 | 100 |
| 101 void LCodeGen::Abort(const char* format, ...) { | 101 void LCodeGen::Abort(const char* format, ...) { |
| 102 if (FLAG_trace_bailout) { | 102 if (FLAG_trace_bailout) { |
| 103 SmartPointer<char> name(info()->shared_info()->DebugName()->ToCString()); | 103 SmartArrayPointer<char> name( |
| 104 info()->shared_info()->DebugName()->ToCString()); |
| 104 PrintF("Aborting LCodeGen in @\"%s\": ", *name); | 105 PrintF("Aborting LCodeGen in @\"%s\": ", *name); |
| 105 va_list arguments; | 106 va_list arguments; |
| 106 va_start(arguments, format); | 107 va_start(arguments, format); |
| 107 OS::VPrint(format, arguments); | 108 OS::VPrint(format, arguments); |
| 108 va_end(arguments); | 109 va_end(arguments); |
| 109 PrintF("\n"); | 110 PrintF("\n"); |
| 110 } | 111 } |
| 111 status_ = ABORTED; | 112 status_ = ABORTED; |
| 112 } | 113 } |
| 113 | 114 |
| (...skipping 4033 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4147 RegisterEnvironmentForDeoptimization(environment); | 4148 RegisterEnvironmentForDeoptimization(environment); |
| 4148 ASSERT(osr_pc_offset_ == -1); | 4149 ASSERT(osr_pc_offset_ == -1); |
| 4149 osr_pc_offset_ = masm()->pc_offset(); | 4150 osr_pc_offset_ = masm()->pc_offset(); |
| 4150 } | 4151 } |
| 4151 | 4152 |
| 4152 #undef __ | 4153 #undef __ |
| 4153 | 4154 |
| 4154 } } // namespace v8::internal | 4155 } } // namespace v8::internal |
| 4155 | 4156 |
| 4156 #endif // V8_TARGET_ARCH_X64 | 4157 #endif // V8_TARGET_ARCH_X64 |
| OLD | NEW |