aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-01-08 09:30:54 -0700
committerbors-servo <metajack+bors@gmail.com>2015-01-08 09:30:54 -0700
commitec474ae835586c14ec4e1fb72196f2bc211f865f (patch)
tree601ced61240b7acd27820ae29fc721a5bc8554eb
parentdf6a7959df69bf98b397f088fc3cf1fad2cc0aaf (diff)
parent6225bc63095bb79ffd4f316451a81bed00affbd1 (diff)
downloadservo-ec474ae835586c14ec4e1fb72196f2bc211f865f.tar.gz
servo-ec474ae835586c14ec4e1fb72196f2bc211f865f.zip
auto merge of #4541 : Manishearth/servo/ban-stuff, r=jdm
Didn't do the `Vec<Temporary<T>>` banning since we might want to whitelist something there. I'll work on that next.
-rw-r--r--components/plugins/lib.rs1
-rw-r--r--components/plugins/lints/ban.rs39
-rw-r--r--components/plugins/lints/mod.rs1
-rw-r--r--components/script/dom/bindings/DESIGN.md1
4 files changed, 42 insertions, 0 deletions
diff --git a/components/plugins/lib.rs b/components/plugins/lib.rs
index 53995abfab9..5401681f120 100644
--- a/components/plugins/lib.rs
+++ b/components/plugins/lib.rs
@@ -47,6 +47,7 @@ pub fn plugin_registrar(reg: &mut Registry) {
reg.register_lint_pass(box lints::privatize::PrivatizePass as LintPassObject);
reg.register_lint_pass(box lints::inheritance_integrity::InheritancePass as LintPassObject);
reg.register_lint_pass(box lints::str_to_string::StrToStringPass as LintPassObject);
+ reg.register_lint_pass(box lints::ban::BanPass as LintPassObject);
}
diff --git a/components/plugins/lints/ban.rs b/components/plugins/lints/ban.rs
new file mode 100644
index 00000000000..78761c274f4
--- /dev/null
+++ b/components/plugins/lints/ban.rs
@@ -0,0 +1,39 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+use syntax::ast;
+use rustc::lint::{Context, LintPass, LintArray};
+use utils::match_ty_unwrap;
+
+declare_lint!(BANNED_TYPE, Deny,
+ "Ban various unsafe type combinations")
+
+/// Lint for banning various unsafe types
+///
+/// Banned types:
+///
+/// - `Cell<JSVal>`
+/// - `Cell<JS<T>>`
+pub struct BanPass;
+
+impl LintPass for BanPass {
+ fn get_lints(&self) -> LintArray {
+ lint_array!(BANNED_TYPE)
+ }
+
+ fn check_ty(&mut self, cx: &Context, ty: &ast::Ty) {
+ if match_ty_unwrap(ty, &["std","cell","Cell"])
+ .and_then(|t| t.get(0))
+ .and_then(|t| match_ty_unwrap(&**t, &["dom", "bindings", "js", "JS"]))
+ .is_some() {
+ cx.span_lint(BANNED_TYPE, ty.span, "Banned type Cell<JS<T>> detected. Use MutHeap<JS<T>> instead")
+ }
+ if match_ty_unwrap(ty, &["std","cell","Cell"])
+ .and_then(|t| t.get(0))
+ .and_then(|t| match_ty_unwrap(&**t, &["js", "jsval", "JSVal"]))
+ .is_some() {
+ cx.span_lint(BANNED_TYPE, ty.span, "Banned type Cell<JSVal> detected. Use MutHeap<JSVal> instead")
+ }
+ }
+}
diff --git a/components/plugins/lints/mod.rs b/components/plugins/lints/mod.rs
index b40e59e4417..45a3c6a7eda 100644
--- a/components/plugins/lints/mod.rs
+++ b/components/plugins/lints/mod.rs
@@ -2,6 +2,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+pub mod ban;
pub mod inheritance_integrity;
pub mod privatize;
pub mod str_to_string;
diff --git a/components/script/dom/bindings/DESIGN.md b/components/script/dom/bindings/DESIGN.md
index 2dc54c74548..e47d7467609 100644
--- a/components/script/dom/bindings/DESIGN.md
+++ b/components/script/dom/bindings/DESIGN.md
@@ -37,3 +37,4 @@ For supporting SpiderMonkey’s exact GC rooting, we introduce [some types](http
- `Root<T>` contains the pointer to `JSObject` which the represented DOM type has. SpiderMonkey's conservative stack scanner scans it's pointers and marks a pointed `JSObject` as GC root.
- `JSRef` is just a reference to the value rooted by `Root<T>`.
- `RootCollection` is used to dynamically check if rooting satisfies LIFO ordering, because SpiderMonkey's GC requires LIFO order (See also: [Exact Stack Rooting - Storing a GCPointer on the CStack](https://developer.mozilla.org/en-US/docs/Mozilla/Projects/SpiderMonkey/Internals/GC/Exact_Stack_Rooting)).
+ - `MutHeap<T>` is a version of `Cell<T>` that is safe to use for internal mutability of Spidermonkey heap objects like `JSVal` and `JS<T>` \ No newline at end of file