pcUserGenerateArray
pcUserGenerateArray(d_mosaic t_masterTag p_port) =>t / nil
Description
A user-defined procedure called by the compiler before it processes any simple arrays (mosaics) in a master Pcell. The procedure is normally used to suppress array generation or to modify arrays.
Arguments
|
Name for the master Pcell of the array that can be used in the generated SKILL code. |
|
Value Returned
|
Compiler does not generate the code to reproduce the array in the submaster Pcell. |
|
|
Compiler generates the code to reproduce the array in the submaster Pcell as if the procedure were not called. |
Examples
procedure( pcUserGenerateArray( mosaic master port )
if( mosaic~>name == \"userSpecial\" t nil)
)
Suppresses code generation for the array named userSpecial.
Return to top