This rule checks the indent of variable declarations.
Violation
proc : process () is
variable count : integer;
variable counter : integer;
beginFix
proc : process () is
variable count : integer;
variable counter : integer;
begin|phase_6| |error| |case| |case_keyword|
This rule checks the variable keyword has proper case.
|configuring_uppercase_and_lowercase_rules_link|
Violation
VARIABLE count : integer;Fix
variable count : integer;This rule was deprecated and replaced with rules:
|phase_6| |error| |case| |case_name|
This rule checks the variable name has proper case.
|configuring_uppercase_and_lowercase_rules_link|
Violation
variable COUNT : integer;Fix
variable count : integer;|phase_2| |error| |whitespace|
This rule checks there is a single space after the colon.
|configuring_whitespace_rules_link|
Violation
variable count :integer;
variable counter : integer;Fix
variable count : integer;
variable counter : integer;|phase_2| |error| |whitespace|
This rule checks for at least a single space before the colon.
|configuring_whitespace_rules_link|
Violation
variable count: integer;
variable counter : integer;Fix
variable count : integer;
variable counter : integer;|phase_1| |error| |unfixable| |structure|
This rule checks for default assignments in variable declarations.
Violation
variable count : integer := 32;Fix
variable count : integer;The function of this rule has been superseded by the following rules:
- type_mark_500
- subtype_002
- type_014
This rule checks for consistent capitalization of variable names.
Violation
architecture rtl of entity1 is
shared variable var1 : std_logic;
shared variable var2 : std_logic;
begin
proc_name : process () is
variable var3 : std_logic;
variable var4 : std_logic;
begin
Var1 <= '0';
if (VAR2 = '0') then
vaR3 <= '1';
elsif (var2 = '1') then
VAR4 <= '0';
end if;
end process proc_name;
end architecture rtl;Fix
proc_name : process () is
variable var1 : std_logic;
variable var2 : std_logic;
variable var3 : std_logic;
variable var4 : std_logic;
begin
var1 <= '0';
if (var2 = '0') then
var3 <= '1';
elsif (var2 = '1') then
var4 <= '0';
end if;
end process proc_name;|phase_7| |disabled| |error| |unfixable| |naming|
This rule checks for valid prefixes on variable identifiers. The default variable prefix is v_.
|configuring_prefix_and_suffix_rules_link|
Violation
variable my_var : natural;Fix
variable v_my_var : natural;This rule checks for multiple (shared) variable names defined in a single (shared) variable declaration. By default, this rule will only flag more than two (shared) variable declarations.
|configuring_number_of_variables_in_variable_declaration_link|
Violation
variable var1, var2
var3, var4,
var5
: std_logic;
shared variable var6, var7, var8 : std_logic;Fix
variable var1 : std_logic;
variable var2 : std_logic;
variable var3 : std_logic;
variable var4 : std_logic;
variable var5 : std_logic;
shared variable var6 : std_logic;
shared variable var7 : std_logic;
shared variable var8 : std_logic;This rule checks the structure of variable constraints.
|configuring_multiline_constraint_rules_link|
Note
The indenting of multiline variable constraints is handled by the rule variable_400.
Violation
variable v_element : my_record(element1(7 downto 0), element2(3 downto 0));Fix
variable v_element : my_record(
element1(7 downto 0),
element2(3 downto 0)
);|phase_2| |disabled| |error| |whitespace|
This rule checks for a single space before the identifier.
|configuring_whitespace_rules_link|
Violation
variable size : integer;
variable width : integer;Fix
variable size : integer;
variable width : integer;|phase_2| |error| |whitespace|
This rule checks for a single space after the shared keyword.
|configuring_whitespace_rules_link|
Violation
shared variable size : integer;Fix
shared variable size : integer;|phase_2| |error| |whitespace|
This rule checks for a single space before the assignment.
|configuring_whitespace_rules_link|
Violation
variable size : integer := 32;
variable width : integer:= 256;Fix
variable size : integer := 32;
variable width : integer := 256;|phase_2| |error| |whitespace|
This rule checks for a single space after the assignment.
|configuring_whitespace_rules_link|
Violation
variable size : integer :=32;
variable width : integer := 256;Fix
variable size : integer := 32;
variable width : integer := 256;This rule checks alignment of multiline constraints in variable declarations.
|configuring_multiline_indent_rules_link|
Violation
variable v_element : my_record(
element1(7 downto 0),
element2(3 downto 0)
);Fix
variable v_element : my_record(
element1(7 downto 0),
element2(3 downto 0)
);This rule checks the alignment of assignment keywords in variable declarations.
|configuring_keyword_alignment_rules_link|
Violation
variable v_default_values : t_address_en := (
c_address_control => false,
c_address_data => true,
others => false
);Fix
variable v_default_values : t_address_en := (
c_address_control => false,
c_address_data => true,
others => false
);|phase_6| |error| |case| |case_keyword|
This rule checks that the keyword shared has proper case.
|configuring_uppercase_and_lowercase_rules_link|
Violation
SHARED variable size : integer;Fix
shared variable size : integer;|phase_7| |disabled| |error| |unfixable| |naming|
This rule checks for valid suffix on variable identifiers. The default variable suffix is _v.
|configuring_prefix_and_suffix_rules_link|
Violation
variable my_var : natural;Fix
variable my_var_v : natural;