-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #272 from DaveMcEwan/newrule209
New rule: `package_item_not_in_package`
- Loading branch information
Showing
5 changed files
with
105 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Some tools support items, like variables, nets, `task`, `function`, `class`, | ||
`localparam`, `covergroup`, etc. to be defined outside of a `package`, | ||
`module`, `program`, `interface` etc. which can lead to namespace issues. | ||
|
||
The most relevant clauses of IEEE1800-2017 are: | ||
- A.1.11 Package items |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
use crate::config::ConfigOption; | ||
use crate::linter::{SyntaxRule, SyntaxRuleResult}; | ||
use sv_parser::{NodeEvent, PackageItem, RefNode, SyntaxTree}; | ||
|
||
#[derive(Default)] | ||
pub struct PackageItemNotUnderPackage { | ||
under_package_declaration: bool, | ||
} | ||
|
||
impl SyntaxRule for PackageItemNotUnderPackage { | ||
fn check( | ||
&mut self, | ||
_syntax_tree: &SyntaxTree, | ||
event: &NodeEvent, | ||
_option: &ConfigOption, | ||
) -> SyntaxRuleResult { | ||
let node = match event { | ||
NodeEvent::Enter(x) => { | ||
match x { | ||
RefNode::PackageDeclaration(_) => { | ||
self.under_package_declaration = true; | ||
} | ||
_ => () | ||
} | ||
x | ||
} | ||
NodeEvent::Leave(x) => { | ||
match x { | ||
RefNode::PackageDeclaration(_) => { | ||
self.under_package_declaration = false; | ||
} | ||
_ => () | ||
} | ||
return SyntaxRuleResult::Pass; | ||
} | ||
}; | ||
|
||
if self.under_package_declaration { | ||
SyntaxRuleResult::Pass | ||
} else { | ||
match node { | ||
RefNode::PackageItem(PackageItem::PackageOrGenerateItemDeclaration(_)) | | ||
RefNode::PackageItem(PackageItem::PackageExportDeclaration(_)) => SyntaxRuleResult::Fail, | ||
_ => SyntaxRuleResult::Pass | ||
} | ||
} | ||
} | ||
|
||
fn name(&self) -> String { | ||
String::from("package_item_not_in_package") | ||
} | ||
|
||
fn hint(&self, _option: &ConfigOption) -> String { | ||
String::from("Place item into a package, module, interface, program, udp, or config.") | ||
} | ||
|
||
fn reason(&self) -> String { | ||
String::from("Globally-scoped items are not supported by some tools.") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
localparam int A = 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
package P; | ||
localparam int A = 1; | ||
endpackage |