Skip to content

Commit 7ffb2cb

Browse files
committed
rustc: Name the lint-style check module lint
Issue #1543
1 parent 327a15d commit 7ffb2cb

File tree

7 files changed

+93
-71
lines changed

7 files changed

+93
-71
lines changed

man/rustc.1

+4-2
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,10 @@ Build a test harness.
124124
\fB--warn-unused-imports\fR:
125125
Warn about unnecessary imports.
126126
.TP
127-
\fB--no-check-usage\fR:
128-
Disables various one-off usage analyses.
127+
\fB--no-lint-ctypes\fR:
128+
Disables checking of possibly incorrect usage of Rust int or uint types in
129+
native function declarations, where types defined in libcore::ctypes should be
130+
used instead. Ctypes check emits warnings by default.
129131
.SH "BUGS"
130132
See \fBhttps://github.com/mozilla/rust/issues\fR for a list of known bugs.
131133
.SH "AUTHOR"

src/comp/driver/driver.rs

+10-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import syntax::parse::{parser};
66
import syntax::{ast, codemap};
77
import front::attr;
88
import middle::{trans, resolve, freevars, kind, ty, typeck, fn_usage,
9-
last_use, check_usage};
9+
last_use, lint};
1010
import syntax::print::{pp, pprust};
1111
import util::{ppaux, filesearch};
1212
import back::link;
@@ -203,9 +203,9 @@ fn compile_upto(sess: session, cfg: ast::crate_cfg,
203203
bind last_use::find_last_uses(crate, def_map, ref_map, ty_cx));
204204
time(time_passes, "kind checking",
205205
bind kind::check_crate(ty_cx, method_map, last_uses, crate));
206-
if sess.opts.check_usage {
207-
time(time_passes, "usage analyses",
208-
bind check_usage::check_crate(ty_cx, crate));
206+
if vec::len(sess.opts.lint_opts) > 0u {
207+
let timer = bind time(time_passes, _, _);
208+
lint::check_crate(ty_cx, crate, sess.opts.lint_opts, timer)
209209
}
210210

211211
if upto == cu_no_trans { ret {crate: crate, tcx: some(ty_cx), src: src}; }
@@ -384,6 +384,10 @@ fn build_session_options(match: getopts::match,
384384

385385
let parse_only = opt_present(match, "parse-only");
386386
let no_trans = opt_present(match, "no-trans");
387+
let lint_opts : [lint::option] = [];
388+
if !opt_present(match, "no-lint-ctypes") {
389+
lint_opts += [lint::ctypes];
390+
}
387391

388392
let output_type =
389393
if parse_only || no_trans {
@@ -399,7 +403,6 @@ fn build_session_options(match: getopts::match,
399403
} else { link::output_type_exe };
400404
let libcore = !opt_present(match, "no-core");
401405
let verify = !opt_present(match, "no-verify");
402-
let check_usage = !opt_present(match, "no-usage-check");
403406
let save_temps = opt_present(match, "save-temps");
404407
let extra_debuginfo = opt_present(match, "xg");
405408
let debuginfo = opt_present(match, "g") || extra_debuginfo;
@@ -451,7 +454,7 @@ fn build_session_options(match: getopts::match,
451454
debuginfo: debuginfo,
452455
extra_debuginfo: extra_debuginfo,
453456
verify: verify,
454-
check_usage: check_usage,
457+
lint_opts: lint_opts,
455458
save_temps: save_temps,
456459
stats: stats,
457460
time_passes: time_passes,
@@ -520,7 +523,7 @@ fn opts() -> [getopts::opt] {
520523
optopt("sysroot"), optopt("target"), optflag("stats"),
521524
optflag("time-passes"), optflag("time-llvm-passes"),
522525
optflag("no-verify"),
523-
optflag("no-usage-check"),
526+
optflag("no-lint-ctypes"),
524527
optmulti("cfg"), optflag("test"),
525528
optflag("no-core"),
526529
optflag("lib"), optflag("bin"), optflag("static"), optflag("gc"),

src/comp/driver/rustc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ options:
3838
--ls list the symbols defined by a crate file
3939
-L <path> add a directory to the library search path
4040
--no-verify suppress LLVM verification step (slight speedup)
41-
--no-check-usage suppress various one-off usage analyses
4241
--parse-only parse only; do not compile, assemble, or link
4342
--no-trans run all passes except translation; no output
4443
-g produce debug info
@@ -59,6 +58,7 @@ options:
5958
--gc garbage collect shared data (experimental/temporary)
6059
--warn-unused-imports
6160
warn about unnecessary imports
61+
--no-lint-ctypes suppress lint-style ctypes usage check
6262
6363
");
6464
}

src/comp/driver/session.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import option::{some, none};
88
import syntax::parse::parser::parse_sess;
99
import util::filesearch;
1010
import back::target_strs;
11+
import middle::lint;
1112

1213
tag os { os_win32; os_macos; os_linux; os_freebsd; }
1314

@@ -33,7 +34,7 @@ type options =
3334
debuginfo: bool,
3435
extra_debuginfo: bool,
3536
verify: bool,
36-
check_usage: bool,
37+
lint_opts: [lint::option],
3738
save_temps: bool,
3839
stats: bool,
3940
time_passes: bool,

src/comp/middle/check_usage.rs

-59
This file was deleted.

src/comp/middle/lint.rs

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
import driver::session::session;
2+
import middle::ty::ctxt;
3+
import syntax::{ast, visit};
4+
5+
type crate_ctxt = {tcx: ty::ctxt};
6+
7+
enum option {
8+
ctypes;
9+
}
10+
11+
fn check_crate(tcx: ty::ctxt, crate: @ast::crate,
12+
checks: [option], timer: block(str, fn@())) {
13+
let ccx = @{tcx: tcx};
14+
vec::iter(checks) {|c|
15+
alt c {
16+
ctypes {
17+
timer("ctypes usage checking", bind check_ctypes(ccx, crate))
18+
}
19+
}
20+
}
21+
}
22+
23+
fn check_ctypes(ccx: @crate_ctxt, crate: @ast::crate) {
24+
fn check_native_fn(ccx: @crate_ctxt, decl: ast::fn_decl) {
25+
let tys = vec::map(decl.inputs) {|a| a.ty };
26+
for ty in (tys + [decl.output]) {
27+
alt ty.node {
28+
ast::ty_int(ast::ty_i) {
29+
ccx.tcx.sess.span_warn(
30+
ty.span,
31+
"found rust type `int` in native module, while \
32+
ctypes::c_int or ctypes::long should be used");
33+
}
34+
ast::ty_uint(ast::ty_u) {
35+
ccx.tcx.sess.span_warn(
36+
ty.span,
37+
"found rust type `uint` in native module, while \
38+
ctypes::c_uint or ctypes::ulong should be used");
39+
}
40+
_ { }
41+
}
42+
}
43+
}
44+
45+
fn check_item(ccx: @crate_ctxt, it: @ast::item) {
46+
alt it.node {
47+
ast::item_native_mod(nmod) {
48+
for ni in nmod.items {
49+
alt ni.node {
50+
ast::native_item_fn(decl, tps) {
51+
check_native_fn(ccx, decl);
52+
}
53+
_ { }
54+
}
55+
}
56+
}
57+
_ {/* nothing to do */ }
58+
}
59+
}
60+
61+
let visit = visit::mk_simple_visitor(@{
62+
visit_item: bind check_item(ccx, _)
63+
with *visit::default_simple_visitor()
64+
});
65+
visit::visit_crate(*crate, (), visit);
66+
}
67+
//
68+
// Local Variables:
69+
// mode: rust
70+
// fill-column: 78;
71+
// indent-tabs-mode: nil
72+
// c-basic-offset: 4
73+
// buffer-file-coding-system: utf-8-unix
74+
// End:
75+
//

src/comp/rustc.rc

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ mod middle {
2929
mod fn_usage;
3030
mod check_alt;
3131
mod check_const;
32-
mod check_usage;
32+
mod lint;
3333
mod mut;
3434
mod alias;
3535
mod last_use;

0 commit comments

Comments
 (0)