@@ -2068,40 +2068,21 @@ fn parse_pretty(
2068
2068
debugging_opts : & DebuggingOptions ,
2069
2069
efmt : ErrorOutputType ,
2070
2070
) -> Option < PpMode > {
2071
- let pretty = if debugging_opts. unstable_options {
2072
- matches. opt_default ( "pretty" , "normal" ) . map ( |a| {
2073
- // stable pretty-print variants only
2074
- parse_pretty_inner ( efmt, & a, false )
2075
- } )
2076
- } else {
2077
- None
2078
- } ;
2079
-
2080
- return if pretty. is_none ( ) {
2081
- debugging_opts. unpretty . as_ref ( ) . map ( |a| {
2082
- // extended with unstable pretty-print variants
2083
- parse_pretty_inner ( efmt, & a, true )
2084
- } )
2085
- } else {
2086
- pretty
2087
- } ;
2088
-
2089
2071
fn parse_pretty_inner ( efmt : ErrorOutputType , name : & str , extended : bool ) -> PpMode {
2090
2072
use PpMode :: * ;
2091
- use PpSourceMode :: * ;
2092
2073
let first = match ( name, extended) {
2093
- ( "normal" , _) => PpmSource ( PpmNormal ) ,
2094
- ( "identified" , _) => PpmSource ( PpmIdentified ) ,
2095
- ( "everybody_loops" , true ) => PpmSource ( PpmEveryBodyLoops ) ,
2096
- ( "expanded" , _) => PpmSource ( PpmExpanded ) ,
2097
- ( "expanded,identified" , _) => PpmSource ( PpmExpandedIdentified ) ,
2098
- ( "expanded,hygiene" , _) => PpmSource ( PpmExpandedHygiene ) ,
2099
- ( "hir" , true ) => PpmHir ( PpmNormal ) ,
2100
- ( "hir,identified" , true ) => PpmHir ( PpmIdentified ) ,
2101
- ( "hir,typed" , true ) => PpmHir ( PpmTyped ) ,
2102
- ( "hir-tree" , true ) => PpmHirTree ( PpmNormal ) ,
2103
- ( "mir" , true ) => PpmMir ,
2104
- ( "mir-cfg" , true ) => PpmMirCFG ,
2074
+ ( "normal" , _) => Source ( PpSourceMode :: Normal ) ,
2075
+ ( "identified" , _) => Source ( PpSourceMode :: Identified ) ,
2076
+ ( "everybody_loops" , true ) => Source ( PpSourceMode :: EveryBodyLoops ) ,
2077
+ ( "expanded" , _) => Source ( PpSourceMode :: Expanded ) ,
2078
+ ( "expanded,identified" , _) => Source ( PpSourceMode :: ExpandedIdentified ) ,
2079
+ ( "expanded,hygiene" , _) => Source ( PpSourceMode :: ExpandedHygiene ) ,
2080
+ ( "hir" , true ) => Hir ( PpHirMode :: Normal ) ,
2081
+ ( "hir,identified" , true ) => Hir ( PpHirMode :: Identified ) ,
2082
+ ( "hir,typed" , true ) => Hir ( PpHirMode :: Typed ) ,
2083
+ ( "hir-tree" , true ) => HirTree ,
2084
+ ( "mir" , true ) => Mir ,
2085
+ ( "mir-cfg" , true ) => MirCFG ,
2105
2086
_ => {
2106
2087
if extended {
2107
2088
early_error (
@@ -2130,6 +2111,18 @@ fn parse_pretty(
2130
2111
tracing:: debug!( "got unpretty option: {:?}" , first) ;
2131
2112
first
2132
2113
}
2114
+
2115
+ if debugging_opts. unstable_options {
2116
+ if let Some ( a) = matches. opt_default ( "pretty" , "normal" ) {
2117
+ // stable pretty-print variants only
2118
+ return Some ( parse_pretty_inner ( efmt, & a, false ) ) ;
2119
+ }
2120
+ }
2121
+
2122
+ debugging_opts. unpretty . as_ref ( ) . map ( |a| {
2123
+ // extended with unstable pretty-print variants
2124
+ parse_pretty_inner ( efmt, & a, true )
2125
+ } )
2133
2126
}
2134
2127
2135
2128
pub fn make_crate_type_option ( ) -> RustcOptGroup {
@@ -2237,45 +2230,63 @@ impl fmt::Display for CrateType {
2237
2230
2238
2231
#[ derive( Copy , Clone , PartialEq , Debug ) ]
2239
2232
pub enum PpSourceMode {
2240
- PpmNormal ,
2241
- PpmEveryBodyLoops ,
2242
- PpmExpanded ,
2243
- PpmIdentified ,
2244
- PpmExpandedIdentified ,
2245
- PpmExpandedHygiene ,
2246
- PpmTyped ,
2233
+ /// `--pretty=normal`
2234
+ Normal ,
2235
+ /// `-Zunpretty=everybody_loops`
2236
+ EveryBodyLoops ,
2237
+ /// `--pretty=expanded`
2238
+ Expanded ,
2239
+ /// `--pretty=identified`
2240
+ Identified ,
2241
+ /// `--pretty=expanded,identified`
2242
+ ExpandedIdentified ,
2243
+ /// `--pretty=expanded,hygiene`
2244
+ ExpandedHygiene ,
2245
+ }
2246
+
2247
+ #[ derive( Copy , Clone , PartialEq , Debug ) ]
2248
+ pub enum PpHirMode {
2249
+ /// `-Zunpretty=hir`
2250
+ Normal ,
2251
+ /// `-Zunpretty=hir,identified`
2252
+ Identified ,
2253
+ /// `-Zunpretty=hir,typed`
2254
+ Typed ,
2247
2255
}
2248
2256
2249
2257
#[ derive( Copy , Clone , PartialEq , Debug ) ]
2250
2258
pub enum PpMode {
2251
- PpmSource ( PpSourceMode ) ,
2252
- PpmHir ( PpSourceMode ) ,
2253
- PpmHirTree ( PpSourceMode ) ,
2254
- PpmMir ,
2255
- PpmMirCFG ,
2259
+ /// Options that print the source code, i.e.
2260
+ /// `--pretty` and `-Zunpretty=everybody_loops`
2261
+ Source ( PpSourceMode ) ,
2262
+ /// Options that print the HIR, i.e. `-Zunpretty=hir`
2263
+ Hir ( PpHirMode ) ,
2264
+ /// `-Zunpretty=hir-tree`
2265
+ HirTree ,
2266
+ /// `-Zunpretty=mir`
2267
+ Mir ,
2268
+ /// `-Zunpretty=mir-cfg`
2269
+ MirCFG ,
2256
2270
}
2257
2271
2258
2272
impl PpMode {
2259
2273
pub fn needs_ast_map ( & self ) -> bool {
2260
2274
use PpMode :: * ;
2261
2275
use PpSourceMode :: * ;
2262
2276
match * self {
2263
- PpmSource ( PpmNormal | PpmIdentified ) => false ,
2277
+ Source ( Normal | Identified ) => false ,
2264
2278
2265
- PpmSource (
2266
- PpmExpanded | PpmEveryBodyLoops | PpmExpandedIdentified | PpmExpandedHygiene ,
2267
- )
2268
- | PpmHir ( _)
2269
- | PpmHirTree ( _)
2270
- | PpmMir
2271
- | PpmMirCFG => true ,
2272
- PpmSource ( PpmTyped ) => panic ! ( "invalid state" ) ,
2279
+ Source ( Expanded | EveryBodyLoops | ExpandedIdentified | ExpandedHygiene )
2280
+ | Hir ( _)
2281
+ | HirTree
2282
+ | Mir
2283
+ | MirCFG => true ,
2273
2284
}
2274
2285
}
2275
2286
2276
2287
pub fn needs_analysis ( & self ) -> bool {
2277
2288
use PpMode :: * ;
2278
- matches ! ( * self , PpmMir | PpmMirCFG )
2289
+ matches ! ( * self , Mir | MirCFG )
2279
2290
}
2280
2291
}
2281
2292
0 commit comments