Use the target-lexicon crate.

This switches from a custom list of architectures to use the
target-lexicon crate.

 - "set is_64bit=1; isa x86" is replaced with "target x86_64", and
   similar for other architectures, and the `is_64bit` flag is removed
   entirely.

 - The `is_compressed` flag is removed too; it's no longer being used to
   control REX prefixes on x86-64, ARM and Thumb are separate
   architectures in target-lexicon, and we can figure out how to
   select RISC-V compressed encodings when we're ready.
This commit is contained in:
Dan Gohman
2018-05-25 11:41:14 -07:00
parent 2f3008aa40
commit 4e67e08efd
131 changed files with 487 additions and 499 deletions

View File

@@ -27,6 +27,7 @@ cfg_if! {
mod wasm;
}
}
extern crate target_lexicon;
use cretonne_codegen::{timing, VERSION};
use docopt::Docopt;
@@ -47,8 +48,8 @@ Usage:
cton-util cat <file>...
cton-util filecheck [-v] <file>
cton-util print-cfg <file>...
cton-util compile [-vpT] [--set <set>]... [--isa <isa>] <file>...
cton-util wasm [-ctvpTs] [--set <set>]... [--isa <isa>] <file>...
cton-util compile [-vpT] [--set <set>]... [--target <triple>] <file>...
cton-util wasm [-ctvpTs] [--set <set>]... [--target <triple>] <file>...
cton-util --help | --version
Options:
@@ -64,7 +65,8 @@ Options:
-p, --print print the resulting Cretonne IR
-h, --help print this help message
--set=<set> configure Cretonne settings
--isa=<isa> specify the Cretonne ISA
--target=<triple>
specify the Cretonne target
--version print the Cretonne version
";
@@ -83,7 +85,7 @@ struct Args {
flag_print: bool,
flag_verbose: bool,
flag_set: Vec<String>,
flag_isa: String,
flag_target: String,
flag_time_passes: bool,
flag_print_size: bool,
}
@@ -116,7 +118,7 @@ fn cton_util() -> CommandResult {
args.arg_file,
args.flag_print,
&args.flag_set,
&args.flag_isa,
&args.flag_target,
)
} else if args.cmd_wasm {
#[cfg(feature = "wasm")]
@@ -127,7 +129,7 @@ fn cton_util() -> CommandResult {
args.flag_check_translation,
args.flag_print,
&args.flag_set,
&args.flag_isa,
&args.flag_target,
args.flag_print_size,
);