about summary refs log tree commit diff
path: root/compiler/rustc_target/src/asm/bpf.rs
AgeCommit message (Collapse)AuthorLines
2022-02-21Simplify gating of BPF w registers behind the alu32 target featureAmanieu d'Antras-26/+12
This is already handled by supported_types().
2022-02-18asm: Allow the use of r8-r14 as clobbers on Thumb1Amanieu d'Antras-0/+1
Previously these were entirely disallowed, except for r11 which was allowed by accident.
2022-01-17Pass target_features set instead of has_feature closurebjorn3-2/+3
This avoids unnecessary monomorphizations in codegen backends
2022-01-17Use Symbol for target features in asm handlingbjorn3-4/+5
This saves a couple of Symbol::intern calls
2021-05-23Add support for BPF inline assemblyAlessandro Decina-0/+129