mirror of
https://github.com/apple/swift.git
synced 2026-02-27 18:26:24 +01:00
Added the PDB reading code and also a `SymbolLocator` type that allows us to locate symbols for a given image. rdar://168454023
53 lines
1.0 KiB
Plaintext
53 lines
1.0 KiB
Plaintext
module BacktracingImpl {
|
|
module ImageFormats {
|
|
module Elf {
|
|
header "ImageFormats/Elf/elf.h"
|
|
requires cplusplus
|
|
export *
|
|
}
|
|
module PeCoff {
|
|
header "ImageFormats/PeCoff/pe-coff.h"
|
|
requires cplusplus
|
|
export *
|
|
}
|
|
module Dwarf {
|
|
header "ImageFormats/Dwarf/dwarf.h"
|
|
header "ImageFormats/Dwarf/eh_frame_hdr.h"
|
|
requires cplusplus
|
|
export *
|
|
}
|
|
module CodeView {
|
|
header "ImageFormats/CodeView/codeview.h"
|
|
requires cplusplus
|
|
export *
|
|
}
|
|
module PDB {
|
|
header "ImageFormats/PDB/pdb.h"
|
|
requires cplusplus
|
|
export *
|
|
}
|
|
export *
|
|
}
|
|
|
|
module OS {
|
|
module Darwin { header "OS/Darwin.h" }
|
|
module Windows { header "OS/Windows.h" }
|
|
module Libc { header "OS/Libc.h" }
|
|
}
|
|
|
|
module Runtime {
|
|
header "Runtime/Runtime.h"
|
|
requires cplusplus
|
|
}
|
|
|
|
module FixedLayout {
|
|
header "FixedLayout.h"
|
|
requires cplusplus
|
|
}
|
|
|
|
module CompressionLibs {
|
|
header "Compression.h"
|
|
requires cplusplus
|
|
}
|
|
}
|