Lines Matching defs:DWARFLinkerOptions
28 struct DWARFLinkerOptions { struct
30 uint16_t TargetDWARFVersion = 0;
33 bool Verbose = false;
36 bool Statistics = false;
39 bool VerifyInputDWARF = false;
42 bool NoODR = false;
45 bool UpdateIndexTablesOnly = false;
49 bool KeepFunctionForStatic = false;
52 bool AllowNonDeterministicOutput = false;
55 unsigned Threads = 1;
58 SmallVector<DWARFLinkerBase::AccelTableKind, 1> AccelTables;
61 std::string PrependPath;
64 DWARFLinkerBase::InputVerificationHandlerTy InputVerificationHandler =
74 DWARFLinkerBase::SwiftInterfacesMapTy *ParseableSwiftInterfaces = nullptr;
98 const DWARFLinkerOptions &getOptions() const { return Options; } in getOptions() argument