@@ -342,6 +342,19 @@ const CSKY_ALLOWED_FEATURES: &[(&str, Option<Symbol>)] = &[
342
342
( "hard-float-abi" , Some ( sym:: csky_target_feature) ) ,
343
343
// tidy-alphabetical-end
344
344
] ;
345
+
346
+ const LOONGARCH_ALLOWED_FEATURES : & [ ( & str , Option < Symbol > ) ] = & [
347
+ // tidy-alphabetical-start
348
+ ( "d" , Some ( sym:: loongarch_target_feature) ) ,
349
+ ( "f" , Some ( sym:: loongarch_target_feature) ) ,
350
+ ( "lasx" , Some ( sym:: loongarch_target_feature) ) ,
351
+ ( "lbt" , Some ( sym:: loongarch_target_feature) ) ,
352
+ ( "lsx" , Some ( sym:: loongarch_target_feature) ) ,
353
+ ( "lvz" , Some ( sym:: loongarch_target_feature) ) ,
354
+ ( "ual" , Some ( sym:: loongarch_target_feature) ) ,
355
+ // tidy-alphabetical-end
356
+ ] ;
357
+
345
358
/// When rustdoc is running, provide a list of all known features so that all their respective
346
359
/// primitives may be documented.
347
360
///
@@ -358,6 +371,7 @@ pub fn all_known_features() -> impl Iterator<Item = (&'static str, Option<Symbol
358
371
. chain ( WASM_ALLOWED_FEATURES . iter ( ) )
359
372
. chain ( BPF_ALLOWED_FEATURES . iter ( ) )
360
373
. chain ( CSKY_ALLOWED_FEATURES )
374
+ . chain ( LOONGARCH_ALLOWED_FEATURES )
361
375
. cloned ( )
362
376
}
363
377
@@ -373,6 +387,7 @@ pub fn supported_target_features(sess: &Session) -> &'static [(&'static str, Opt
373
387
"wasm32" | "wasm64" => WASM_ALLOWED_FEATURES ,
374
388
"bpf" => BPF_ALLOWED_FEATURES ,
375
389
"csky" => CSKY_ALLOWED_FEATURES ,
390
+ "loongarch64" => LOONGARCH_ALLOWED_FEATURES ,
376
391
_ => & [ ] ,
377
392
}
378
393
}
@@ -445,6 +460,7 @@ pub fn from_target_feature(
445
460
Some ( sym:: bpf_target_feature) => rust_features. bpf_target_feature ,
446
461
Some ( sym:: aarch64_ver_target_feature) => rust_features. aarch64_ver_target_feature ,
447
462
Some ( sym:: csky_target_feature) => rust_features. csky_target_feature ,
463
+ Some ( sym:: loongarch_target_feature) => rust_features. loongarch_target_feature ,
448
464
Some ( name) => bug ! ( "unknown target feature gate {}" , name) ,
449
465
None => true ,
450
466
} ;
0 commit comments