d16ad3d64b
This ensures that the relocated addresses of sections with file contents are contained in the loaded segment. Fixes https://github.com/dart-lang/sdk/issues/47289 TEST=vm/dart{,_2}/use_save_debugging_info_flag Cq-Include-Trybots: luci.dart.try:vm-kernel-precomp-linux-debug-x64-try,vm-kernel-precomp-linux-product-x64-try,vm-kernel-precomp-linux-release-x64-try,vm-kernel-precomp-nnbd-linux-debug-x64-try,vm-kernel-precomp-nnbd-linux-release-x64-try Change-Id: I6f7f94900ab1f9f0cb5ead4b0dd63bd2402e5a19 Fixed: 47289 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/214800 Commit-Queue: Tess Strickland <sstrickl@google.com> Reviewed-by: Slava Egorov <vegorov@google.com>
12 lines
440 B
Dart
12 lines
440 B
Dart
// Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
export 'src/elf.dart' show DynamicTable, DynamicTableTag, Elf, Section, Symbol;
|
|
export 'src/constants.dart'
|
|
show
|
|
isolateDataSymbolName,
|
|
isolateSymbolName,
|
|
vmDataSymbolName,
|
|
vmSymbolName;
|