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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 unsigned index = info.deoptimization_index; | 223 unsigned index = info.deoptimization_index; |
224 unsigned gap_size = info.pc_after_gap - info.pc; | 224 unsigned gap_size = info.pc_after_gap - info.pc; |
225 uint32_t encoding = SafepointEntry::DeoptimizationIndexField::encode(index); | 225 uint32_t encoding = SafepointEntry::DeoptimizationIndexField::encode(index); |
226 encoding |= SafepointEntry::GapCodeSizeField::encode(gap_size); | 226 encoding |= SafepointEntry::GapCodeSizeField::encode(gap_size); |
227 encoding |= SafepointEntry::ArgumentsField::encode(info.arguments); | 227 encoding |= SafepointEntry::ArgumentsField::encode(info.arguments); |
228 encoding |= SafepointEntry::SaveDoublesField::encode(info.has_doubles); | 228 encoding |= SafepointEntry::SaveDoublesField::encode(info.has_doubles); |
229 return encoding; | 229 return encoding; |
230 } | 230 } |
231 | 231 |
232 | 232 |
| 233 int SafepointTableBuilder::CountShortDeoptimizationIntervals(unsigned limit) { |
| 234 int result = 0; |
| 235 if (!deoptimization_info_.is_empty()) { |
| 236 unsigned previous_gap_end = deoptimization_info_[0].pc_after_gap; |
| 237 for (int i = 1, n = deoptimization_info_.length(); i < n; i++) { |
| 238 DeoptimizationInfo info = deoptimization_info_[i]; |
| 239 if (static_cast<int>(info.deoptimization_index) != |
| 240 Safepoint::kNoDeoptimizationIndex) { |
| 241 if (previous_gap_end + limit > info.pc) { |
| 242 result++; |
| 243 } |
| 244 previous_gap_end = info.pc_after_gap; |
| 245 } |
| 246 } |
| 247 } |
| 248 return result; |
| 249 } |
| 250 |
| 251 |
| 252 |
233 } } // namespace v8::internal | 253 } } // namespace v8::internal |
OLD | NEW |