Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: src/safepoint-table.cc

Issue 6347067: Fix potential overwriting of debug jumps of following code. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge/build-x64
Patch Set: Addressed review comments. Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/safepoint-table.h ('k') | src/x64/assembler-x64.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/safepoint-table.h ('k') | src/x64/assembler-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698