Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
config:mangling [2025/03/25 10:34] – created rajitconfig:mangling [2025/03/25 10:40] (current) rajit
Line 11: Line 11:
  
 The ''mangle_chars'' string defines the following map: The ''mangle_chars'' string defines the following map:
-   * ''.'' maps to ''0'' +   The first character ''.'' maps to ''0'' 
-   * '':'' maps to ''1'' +   The second character '':'' maps to ''1'' 
-   * ''('' maps to ''2''+   The third character ''('' maps to ''2''
    * etc.    * etc.
 The first ten characters map to ''0'' to ''9'', and the following characters use ''a'' through ''z'' permitting up to 36 characters to be mangled. The first ten characters map to ''0'' to ''9'', and the following characters use ''a'' through ''z'' permitting up to 36 characters to be mangled.
  
 +The ACT name ''x.y'' would get mangled to:
 +<code>
 +x_0y
 +</code>
 +since ''_'' is the prefix used for name mangling. A name like ''x._y'' would get translated to:
 +<code>
 +x_0__y
 +</code>
 +(The character used as the prefix for name mangling is repeated.) 
  
 +A process name ''foo<6,4>'' would be mangled to
 +<code>
 +foo_46_84_5
 +</code>
 +
 +The main reason for name mangling is that some commercial or third-party tools (e.g. SPICE simulators) have restrictions on characters used for signal names, identifiers, etc. Using name mangling is a systematic way to specify restrictions on the output format generated by certain ACT tools.