mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-25 16:24:23 +00:00
Hide debugging options
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2676 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
AnalysisID FunctionLiveVarInfo::ID(AnalysisID::create<FunctionLiveVarInfo>());
|
AnalysisID FunctionLiveVarInfo::ID(AnalysisID::create<FunctionLiveVarInfo>());
|
||||||
|
|
||||||
cl::Enum<LiveVarDebugLevel_t> DEBUG_LV("dlivevar", cl::NoFlags,
|
cl::Enum<LiveVarDebugLevel_t> DEBUG_LV("dlivevar", cl::Hidden,
|
||||||
"enable live-variable debugging information",
|
"enable live-variable debugging information",
|
||||||
clEnumValN(LV_DEBUG_None , "n", "disable debug output"),
|
clEnumValN(LV_DEBUG_None , "n", "disable debug output"),
|
||||||
clEnumValN(LV_DEBUG_Normal , "y", "enable debug output"),
|
clEnumValN(LV_DEBUG_Normal , "y", "enable debug output"),
|
||||||
|
@ -19,7 +19,7 @@ using std::vector;
|
|||||||
|
|
||||||
//************************* External Data Types *****************************/
|
//************************* External Data Types *****************************/
|
||||||
|
|
||||||
cl::Enum<enum SchedDebugLevel_t> SchedDebugLevel("dsched", cl::NoFlags,
|
cl::Enum<enum SchedDebugLevel_t> SchedDebugLevel("dsched", cl::Hidden,
|
||||||
"enable instruction scheduling debugging information",
|
"enable instruction scheduling debugging information",
|
||||||
clEnumValN(Sched_NoDebugInfo, "n", "disable debug output"),
|
clEnumValN(Sched_NoDebugInfo, "n", "disable debug output"),
|
||||||
clEnumValN(Sched_Disable, "off", "disable instruction scheduling"),
|
clEnumValN(Sched_Disable, "off", "disable instruction scheduling"),
|
||||||
|
@ -39,7 +39,7 @@ enum SelectDebugLevel_t {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Enable Debug Options to be specified on the command line
|
// Enable Debug Options to be specified on the command line
|
||||||
cl::Enum<enum SelectDebugLevel_t> SelectDebugLevel("dselect", cl::NoFlags,
|
cl::Enum<enum SelectDebugLevel_t> SelectDebugLevel("dselect", cl::Hidden,
|
||||||
"enable instruction selection debugging information",
|
"enable instruction selection debugging information",
|
||||||
clEnumValN(Select_NoDebugInfo, "n", "disable debug output"),
|
clEnumValN(Select_NoDebugInfo, "n", "disable debug output"),
|
||||||
clEnumValN(Select_PrintMachineCode, "y", "print generated machine code"),
|
clEnumValN(Select_PrintMachineCode, "y", "print generated machine code"),
|
||||||
|
@ -32,7 +32,7 @@ using std::cerr;
|
|||||||
// ***TODO: There are several places we add instructions. Validate the order
|
// ***TODO: There are several places we add instructions. Validate the order
|
||||||
// of adding these instructions.
|
// of adding these instructions.
|
||||||
|
|
||||||
cl::Enum<RegAllocDebugLevel_t> DEBUG_RA("dregalloc", cl::NoFlags,
|
cl::Enum<RegAllocDebugLevel_t> DEBUG_RA("dregalloc", cl::Hidden,
|
||||||
"enable register allocation debugging information",
|
"enable register allocation debugging information",
|
||||||
clEnumValN(RA_DEBUG_None , "n", "disable debug output"),
|
clEnumValN(RA_DEBUG_None , "n", "disable debug output"),
|
||||||
clEnumValN(RA_DEBUG_Normal , "y", "enable debug output"),
|
clEnumValN(RA_DEBUG_Normal , "y", "enable debug output"),
|
||||||
|
@ -19,7 +19,7 @@ using std::vector;
|
|||||||
|
|
||||||
//************************* External Data Types *****************************/
|
//************************* External Data Types *****************************/
|
||||||
|
|
||||||
cl::Enum<enum SchedDebugLevel_t> SchedDebugLevel("dsched", cl::NoFlags,
|
cl::Enum<enum SchedDebugLevel_t> SchedDebugLevel("dsched", cl::Hidden,
|
||||||
"enable instruction scheduling debugging information",
|
"enable instruction scheduling debugging information",
|
||||||
clEnumValN(Sched_NoDebugInfo, "n", "disable debug output"),
|
clEnumValN(Sched_NoDebugInfo, "n", "disable debug output"),
|
||||||
clEnumValN(Sched_Disable, "off", "disable instruction scheduling"),
|
clEnumValN(Sched_Disable, "off", "disable instruction scheduling"),
|
||||||
|
@ -39,7 +39,7 @@ enum SelectDebugLevel_t {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Enable Debug Options to be specified on the command line
|
// Enable Debug Options to be specified on the command line
|
||||||
cl::Enum<enum SelectDebugLevel_t> SelectDebugLevel("dselect", cl::NoFlags,
|
cl::Enum<enum SelectDebugLevel_t> SelectDebugLevel("dselect", cl::Hidden,
|
||||||
"enable instruction selection debugging information",
|
"enable instruction selection debugging information",
|
||||||
clEnumValN(Select_NoDebugInfo, "n", "disable debug output"),
|
clEnumValN(Select_NoDebugInfo, "n", "disable debug output"),
|
||||||
clEnumValN(Select_PrintMachineCode, "y", "print generated machine code"),
|
clEnumValN(Select_PrintMachineCode, "y", "print generated machine code"),
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
AnalysisID FunctionLiveVarInfo::ID(AnalysisID::create<FunctionLiveVarInfo>());
|
AnalysisID FunctionLiveVarInfo::ID(AnalysisID::create<FunctionLiveVarInfo>());
|
||||||
|
|
||||||
cl::Enum<LiveVarDebugLevel_t> DEBUG_LV("dlivevar", cl::NoFlags,
|
cl::Enum<LiveVarDebugLevel_t> DEBUG_LV("dlivevar", cl::Hidden,
|
||||||
"enable live-variable debugging information",
|
"enable live-variable debugging information",
|
||||||
clEnumValN(LV_DEBUG_None , "n", "disable debug output"),
|
clEnumValN(LV_DEBUG_None , "n", "disable debug output"),
|
||||||
clEnumValN(LV_DEBUG_Normal , "y", "enable debug output"),
|
clEnumValN(LV_DEBUG_Normal , "y", "enable debug output"),
|
||||||
|
@ -32,7 +32,7 @@ using std::cerr;
|
|||||||
// ***TODO: There are several places we add instructions. Validate the order
|
// ***TODO: There are several places we add instructions. Validate the order
|
||||||
// of adding these instructions.
|
// of adding these instructions.
|
||||||
|
|
||||||
cl::Enum<RegAllocDebugLevel_t> DEBUG_RA("dregalloc", cl::NoFlags,
|
cl::Enum<RegAllocDebugLevel_t> DEBUG_RA("dregalloc", cl::Hidden,
|
||||||
"enable register allocation debugging information",
|
"enable register allocation debugging information",
|
||||||
clEnumValN(RA_DEBUG_None , "n", "disable debug output"),
|
clEnumValN(RA_DEBUG_None , "n", "disable debug output"),
|
||||||
clEnumValN(RA_DEBUG_Normal , "y", "enable debug output"),
|
clEnumValN(RA_DEBUG_Normal , "y", "enable debug output"),
|
||||||
|
Reference in New Issue
Block a user