mirror of
https://github.com/intel/llvm.git
synced 2026-01-26 12:26:52 +08:00
clang -cc1: Add a -fno-bitfield-type-align option, for my own testing purposes.
llvm-svn: 101370
This commit is contained in:
@@ -100,6 +100,10 @@ public:
|
||||
unsigned CatchUndefined : 1; // Generate code to check for undefined ops.
|
||||
unsigned DumpRecordLayouts : 1; /// Dump the layout of IRgen'd records.
|
||||
unsigned DumpVtableLayouts : 1; /// Dump the layouts of emitted vtables.
|
||||
|
||||
// FIXME: This is just a temporary option, for testing purposes.
|
||||
unsigned NoBitFieldTypeAlign : 1;
|
||||
|
||||
private:
|
||||
unsigned GC : 2; // Objective-C Garbage Collection modes. We
|
||||
// declare this enum as unsigned because MSVC
|
||||
@@ -171,6 +175,7 @@ public:
|
||||
CatchUndefined = 0;
|
||||
DumpRecordLayouts = 0;
|
||||
DumpVtableLayouts = 0;
|
||||
NoBitFieldTypeAlign = 0;
|
||||
}
|
||||
|
||||
GCMode getGCMode() const { return (GCMode) GC; }
|
||||
|
||||
@@ -415,6 +415,8 @@ def trigraphs : Flag<"-trigraphs">,
|
||||
HelpText<"Process trigraph sequences">;
|
||||
def fwritable_strings : Flag<"-fwritable-strings">,
|
||||
HelpText<"Store string literals as writable data">;
|
||||
def fno_bitfield_type_align : Flag<"-fno-bitfield-type-align">,
|
||||
HelpText<"Ignore bit-field types when aligning structures">;
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// Header Search Options
|
||||
|
||||
@@ -142,9 +142,10 @@ bool TargetInfo::isTypeSigned(IntType T) const {
|
||||
/// Apply changes to the target information with respect to certain
|
||||
/// language options which change the target configuration.
|
||||
void TargetInfo::setForcedLangOptions(LangOptions &Opts) {
|
||||
if (Opts.ShortWChar) {
|
||||
if (Opts.NoBitFieldTypeAlign)
|
||||
UseBitFieldTypeAlignment = false;
|
||||
if (Opts.ShortWChar)
|
||||
WCharType = UnsignedShort;
|
||||
}
|
||||
}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
@@ -526,6 +526,14 @@ static void LangOptsToArgs(const LangOptions &Opts,
|
||||
// OptimizeSize is implicit.
|
||||
if (Opts.Static)
|
||||
Res.push_back("-static-define");
|
||||
if (Opts.DumpRecordLayouts)
|
||||
Res.push_back("-fdump-record-layouts");
|
||||
if (Opts.DumpVtableLayouts)
|
||||
Res.push_back("-fdump-vtable-layouts");
|
||||
if (Opts.NoBitFieldTypeAlign)
|
||||
Res.push_back("-fno-bitfield-type-alignment");
|
||||
if (Opts.SjLjExceptions)
|
||||
Res.push_back("-fsjlj-exceptions");
|
||||
if (Opts.PICLevel) {
|
||||
Res.push_back("-pic-level");
|
||||
Res.push_back(llvm::utostr(Opts.PICLevel));
|
||||
@@ -1219,6 +1227,7 @@ static void ParseLangArgs(LangOptions &Opts, ArgList &Args,
|
||||
Opts.Static = Args.hasArg(OPT_static_define);
|
||||
Opts.DumpRecordLayouts = Args.hasArg(OPT_fdump_record_layouts);
|
||||
Opts.DumpVtableLayouts = Args.hasArg(OPT_fdump_vtable_layouts);
|
||||
Opts.NoBitFieldTypeAlign = Args.hasArg(OPT_fno_bitfield_type_align);
|
||||
Opts.OptimizeSize = 0;
|
||||
|
||||
// FIXME: Eliminate this dependency.
|
||||
|
||||
Reference in New Issue
Block a user