SpyGlass LibraryCompiler UserGuide
SpyGlass LibraryCompiler UserGuide
User Guide
Version L-2016.06, June 2016
Copyright Notice and Proprietary Information
©2016 Synopsys, Inc. All rights reserved. This Synopsys software and all associated
documentation are proprietary to Synopsys, Inc. and may only be used pursuant to the
terms and conditions of a written license agreement with Synopsys, Inc. All other use,
reproduction, modification, or distribution of the Synopsys software or the associated
documentation is strictly prohibited.
Disclaimer
SYNOPSYS, INC., AND ITS LICENSORS MAKE NO WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, WITH REGARD TO THIS MATERIAL, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.
Trademarks
Synopsys and certain Synopsys product names are trademarks of Synopsys, as set forth
at http://www.synopsys.com/Company/Pages/Trademarks.aspx.
All other product or company names may be trademarks of their respective owners.
Third-Party Links
Any links to third-party websites included in this document are for your convenience
only. Synopsys does not endorse and is not responsible for such websites and their
practices, including privacy practices, availability, and content.
Synopsys, Inc.
690 E. Middlefield Road
Mountain View, CA 94043
www.synopsys.com
Report an Error
The SpyGlass Technical Publications team welcomes your feedback and suggestions on
this publication. Please provide specific feedback and, if possible, attach a snapshot.
Send your feedback to [email protected].
Contents
Preface..........................................................................................9
About This Book ...................................................................................... 9
Contents of This Book ........................................................................... 10
Typographical Conventions ................................................................... 11
v
Synopsys, Inc.
LatchGroup............................................................................................ 56
LatchBankGroup .................................................................................... 57
SeqGroup .............................................................................................. 58
SeqBankGroup....................................................................................... 59
StateGroup ............................................................................................ 60
StatetableGroup .................................................................................... 61
TestCellGroup........................................................................................ 62
GeneratedClockGroup............................................................................ 63
TimingGroup ......................................................................................... 64
PinData ................................................................................................. 69
TimingData............................................................................................ 73
ScalingFactorData ................................................................................. 74
DomainGroup ........................................................................................ 78
ScaledCellGroup .................................................................................... 79
ModelGroup ........................................................................................... 81
CellDegradationGroup ........................................................................... 83
CellFallGroup ......................................................................................... 84
CellRiseGroup......................................................................................84
DefaultData ........................................................................................... 85
ElectroMigrationGroup .......................................................................... 87
EmLutTemplateGroup ............................................................................ 88
EmMaxToggleRateGroup ....................................................................... 89
FallConstraintGroup .............................................................................. 90
FallNetDelayGroup ................................................................................ 91
FallPowerGroup..................................................................................... 92
FallPropagationGroup............................................................................ 93
FallTransitionDegradationGroup............................................................ 94
FallTransitionGroup ............................................................................... 95
InputVoltageGroup................................................................................ 96
InterconnectDelayGroup ....................................................................... 97
InternalPowerGroup.............................................................................. 98
LeakagePowerGroup ........................................................................... 100
LuTableTemplateGroup ....................................................................... 101
LutGroup ............................................................................................. 102
MemoryGroup...................................................................................... 103
vi
Synopsys, Inc.
MemoryReadGroup...............................................................................104
MemoryWriteGroup ..............................................................................105
MinimumPeriodGroup...........................................................................106
MinPulseWidthGroup............................................................................107
ModeDefinitionGroup ...........................................................................108
OperatingConditionsGroup ...................................................................109
OutputVoltageGroup ............................................................................110
PolyTemplateGroup..............................................................................111
PowerGroup .........................................................................................112
PowerLutTemplateGroup......................................................................113
PowerPolyTemplateGroup ....................................................................114
PowerSupplyGroup ..............................................................................115
RetainFallSlewGroup ............................................................................116
RetainingFallGroup ..............................................................................117
RetainingRiseGroup .............................................................................118
RetainRiseSlewGroup ...........................................................................119
RiseConstraintGroup ............................................................................120
RiseNetDelayGroup ..............................................................................121
RisePowerGroup ..................................................................................122
RisePropagationGroup .........................................................................123
RiseTransitionDegradationGroup .........................................................124
RiseTransitionGroup.............................................................................125
RoutingTrackGroup ..............................................................................126
ScalingFactorGroup ..............................................................................127
TimingRangeGroup...............................................................................128
TLatchGroup.........................................................................................129
TypeGroup ...........................................................................................130
WireLoadGroup ....................................................................................131
WireLoadSelectionGroup ......................................................................132
WireLoadTableGroup............................................................................133
Appendix_IA ........................................................................................134
Appendix_IG ........................................................................................141
vii
Synopsys, Inc.
viii
Synopsys, Inc.
Preface
9
Synopsys, Inc.
Preface
Section Description
Statements in a Liberty File Describes different statements in a liberty file
Compiling Libraries using SpyGlass Library Describes the purpose of SpyGlass Library
Compiler Compiler
Parsing Library-File Statements by SpyGlass Describes how SpyGlass Library Compiler parses
Library Compiler statements in a library file
Interpreting Library-Attributes by SpyGlass Describes how SpyGlass Library Compiler
Library Compiler interprets different attribute types in a library file
10
Synopsys, Inc.
Preface
Typographical Conventions
Typographical Conventions
This document uses the following typographical conventions:
Syntax Description
[ ] (Square brackets) An optional entry
{ } (Curly braces) An entry that can be specified once or multiple
times
| (Vertical bar) A list of choices out of which you can choose
one
... (Horizontal Other options that you can specify
ellipsis)
11
Synopsys, Inc.
Preface
Typographical Conventions
12
Synopsys, Inc.
Statements in a Liberty
File
13
Synopsys, Inc.
Statements in a Liberty File
}
Where,
<keyword> is the group that is defined.
Examples of groups are library, cell, pin, and timing.
<group_name> is the name of the group.
This is a string value. For groups, such as, timing and memory, this
is optional. For other groups, such as, pin and timing, this is a list
of strings.
NOTE: In a third type of statement, the attribute value is specified inside parenthesis. The
syntax of this statement is as follows:
index_1(float list) , values(list of float list)
14
Synopsys, Inc.
Compiling Libraries
using SpyGlass Library
Compiler
Use the spyglass_lc utility to compile .lib files to .sglib files. For
example, the following command compiles the a.lib and b.lib files:
spyglass_lc -gateslib a.lib b.lib -verilog des.v
15
Synopsys, Inc.
Compiling Libraries using SpyGlass Library Compiler
Command Description
-physical Enables the library compilation feature in SpyGlass
physical.
-physical_target Specifies one or more target library names to be
compiled.
-physical_lib_config_file Specifies the path of a configuration file.
This file is used to extend library compilation for
advanced capabilities.
16
Synopsys, Inc.
Compiling Libraries using SpyGlass Library Compiler
NO_LEF: The library is compiled in the NO_LEF mode when the lef data
is not available. In this mode, SpyGlass Physical uses some default
values to approximate the lef data and you can only do the logical
analysis of your design. You can not do the physical analysis of design
including floorplan, placement, and routing.
In the presence of the LEF and LIB technology views, SpyGlass Physical
allows complete pre-floorplan and post-floorplan analysis of a design. You
17
Synopsys, Inc.
Compiling Libraries using SpyGlass Library Compiler
can use a library compiled in the NO_LEF or TECH_LEF modes only for the
pre-floorplan design analysis in SpyGlass Physical.
18
Synopsys, Inc.
Compiling Libraries using SpyGlass Library Compiler
-lef ./raw_data/lefs/tech_lef.lef
-lef ./raw_data/lefs/lef1.lef
-lef ./raw_data/lefs/lef2.lef
-lef ./raw_data/lefs/lef3.lef
-physical
-physical_target typical
3. For using any of the advanced features of library compilation, create a
lib configuration file. These advanced features include compiling the
library in the TECH_LEF mode or the DIRTY_INPUT mode, compiling
multi-vt libraries, and using the ARCT flow. The lib configuration file
needs to be provided to spyglass_lc using the -physical_lib_config_file
option. The syntax of the configuration file is given below:
[ALL]
version=5.1
vendor_name=<string e.g. vendor1 or none>
lib_name=<string e.g. lib1>
lib_config_name=<string e.g. demo_typ>
vt_cmd_file=<path of vt file>
lib_prep_mode=<lib prep mode>
ARCT_PATH=<ARCT file path>
For more information on arguments details of the configuration file, see
Configuration File Used during Library Compilation in SpyGlass Physical section.
4. In addition to the libcompile.f file containing the lib and lef source data,
the lib configuration file needs to be provided to spyglass_lc using the -
physical_lib_config_file option as shown below:
spyglass_lc -f libcompile.f
-physical_lib_config_file <libconfig file>
Alternatively, you can specify the libconfig file in the libcompile.f file
using the -physical_lib_config_file option.
5. By default, the lib compilation output is generated in the current
working directory. If you want to re-direct the output to some other
location, you can use the -wdir option to specify the path of compiled
library data. You can specify relative or absolute paths as input to this
argument.
19
Synopsys, Inc.
Compiling Libraries using SpyGlass Library Compiler
6. After compiling the libraries, check the Technology Library path, which
points to the directory containing the technology information, and
provide the same in the design run.
Depending on whether the -wdir option was specified or not, the
technology library data is created in the wdir or the current working
directory. The sgp_tech sub-directory is created in the above path that
contains the technology data.
SpyGlass Physical Library preparation requires that Technology LEF file is
specified prior to any other LEF source file, as shown in the following
examples:
-lef <tech_header.lef> \
-lef <lib1_noTech.lef> \
-lef <lib2_noTech.lef> \
-lef <lib3_noTech.lef> \
However, SpyGlass Physical does support LEF input where Technology LEF
header is repeated in a subsequent LEF source file. Therefore, ensure that
if Technology LEF data is repeated in multiple LEF files, it is consistent with
the Technology LEF header in the first LEF file.
20
Synopsys, Inc.
Compiling Libraries using SpyGlass Library Compiler
21
Synopsys, Inc.
Compiling Libraries using SpyGlass Library Compiler
22
Synopsys, Inc.
Parsing Library-File
Statements by SpyGlass
Library Compiler
23
Synopsys, Inc.
Parsing Library-File Statements by SpyGlass Library Compiler
24
Synopsys, Inc.
Parsing Library-File Statements by SpyGlass Library
25
Synopsys, Inc.
Parsing Library-File Statements by SpyGlass Library Compiler
26
Synopsys, Inc.
Parsing Library-File Statements by SpyGlass Library
27
Synopsys, Inc.
Parsing Library-File Statements by SpyGlass Library Compiler
28
Synopsys, Inc.
Interpreting Library-
Attributes by SpyGlass
Library Compiler
29
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
output_threshold_pct_rise : float ;
................
CellGroup
ScalingFactorData
EmLutTemplateGroup
.........
}
* Cell Group contains *
cell( complex_string ) {
...............
PinGroup
...............
}
As mentioned in the Categorizing Attributes by SpyGlass Library Compiler
section, there are four different categories of attributes/groups. All the
attributes/groups falling in Category 1 and 2 are described in this
document. Attributes/groups of category 3 are captured separately as part
of each attribute/group description and in the appendix. Please note that
the attributes and sub-groups of the ignored group are also ignored. These
attributes and sub-groups are not mentioned in this document.
30
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
Legend Table
Legend Table
The following table describes the attribute types and their values:
Attribute Value
float Integer and floating-point numbers.
31
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
Legend Table
Attribute Value
complex_string String with the following properties:
• Cannot start with /*
• Cannot contain the following characters:
[(){}=\;"<>,]
• Every keyboard character can be specified within
quotes.
However, specifying spaces in case of pin/bus/bundle
names or cell names will cause errors in further
processing.
complex_string_list List of complex_string
NOTE: Groups for which group names are optional are given in square [ ] brackets.
32
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
LibraryGroup
LibraryGroup
library ( complex_string ) {
default_cell_failure_rate : float;
input_threshold_pct_fall : float;
output_threshold_pct_fall : float;
input_threshold_pct_rise : float;
output_threshold_pct_rise : float;
slew_lower_threshold_pct_fall : float;
slew_upper_threshold_pct_fall : float;
slew_lower_threshold_pct_rise : float;
slew_upper_threshold_pct_rise : float;
slew_derate_from_library : float;
technology( enum_string );
bus_naming_style : complex_string;
comment : complex_string;
current_unit : unit ;
date : "complex_string";
default_leakage_power_density : float;
delay_model : enum_string;
power_model : enum_string;
in_place_swap_mode : enum_string;
key_bit : float;
key_feature : complex_string;
key_file : complex_string;
key_seed : float;
key_version : float;
leakage_power_unit : unit;
lsi_pad_fall : float;
lsi_pad_rise : float;
lsi_rounding_cutoff : float;
lsi_rounding_digit : float;
33
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
LibraryGroup
nom_process : float;
nom_temperature : float;
nom_voltage : float;
nom_calc_mode : complex_string;
piece_type : enum_string;
preferred_output_pad_slew_rate_control : enum_string;
preferred_output_pad_voltage : complex_string;
pulling_resistance_unit : unit;
reference_capacitance : float;
revision : "complex_string";
simulation : Boolean;
time_unit : unit;
timing_report : Boolean;
voltage_unit : unit ;
capacitive_load_unit( float, simple_string );
define_cell_area( simple_string, enum_string );
library_features( complex_string_list );
piece_define( float_list );
routing_layers( complex_string_list );
voltage_map( complex_string , float );
DefaultData
ScalingFactorData
EmLutTemplateGroup
CellGroup
FallNetDelayGroup
FallTransitionDegradationGroup
InputVoltageGroup
LuTableTemplateGroup
ModelGroup
OperatingConditionsGroup
PowerSupplyGroup
OutputVoltageGroup
PolyTemplateGroup
34
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
LibraryGroup
PowerPolyTemplateGroup
PowerLutTemplateGroup
RiseNetDelayGroup
RiseTransitionDegradationGroup
ScaledCellGroup
ScalingFactorGroup
TimingRangeGroup
TypeGroup
WireLoadGroup
WireLoadSelectionGroup
WireLoadTableGroup
35
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
LibraryGroup
Refer to the Legend Table for the attribute types and their values.
36
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
LibraryGroup
37
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
LibraryGroup
38
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
CellGroup
CellGroup
cell( complex_string ){
timing_model_type : simple_string;
user_function_class : simple_string;
retention_cell : simple_string ;
is_macro_cell : Boolean
CellData
PinGroup
BusGroup
BundleGroup
PGPinGroup
FFGroup
FFBankGroup
LatchGroup
LatchBankGroup
SeqGroup
SeqBankGroup
StateGroup
StatetableGroup
TestCellGroup
GeneratedClockGroup
InternalPowerGroup
LeakagePowerGroup
LutGroup
MemoryGroup
ModeDefinitionGroup
RoutingTrackGroup
TypeGroup
}
Refer to the Legend Table for the attribute types and their values.
39
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
CellGroup
40
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
CellGroup
41
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
CellGroup
42
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
CellData
CellData
area : float;
auxiliary_pad_cell : Boolean;
bus_naming_style : complex_string;
switch_cell_type : enum_string;
cell_footprint : complex_string;
cell_leakage_power : double;
contention_condition : boolexpr;
dont_fault : enum_string;
dont_touch : Boolean;
clock_gating_integrated_cell : enum_string;
dont_use : Boolean;
geometry_print : complex_string;
power_gating_cell : complex_string;
handle_negative_constraint : Boolean;
ignore_verify_icg_type : Boolean;
interface_timing : Boolean;
is_clock_gating_cell : Boolean;
map_only : Boolean;
mpm_libname : complex_string;
mpm_name : complex_string;
observe_node : complex_string;
pad_cell : Boolean;
io_slots : float;
bond_pads : float;
pad_drivers : float;
io_pads : float;
pad_type : complex_string; // clock
type is only supported
preferred : Boolean;
rail_connection( simple_string, simple_string );
43
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
CellData
version : "complex_string";
scaling_factors : complex_string;
scan_group : simple_string;
set_node : complex_string;
use_for_size_only : Boolean;
vhdl_name : “simple_string”;
pin_equal( simple_string_list );
pin_opposite( simple_string, simple_string );
single_bit_degenerate : complex_string;
threshold_voltage_group : complex_string;
is_isolation_cell : Boolean;
is_level_shifter : Boolean;
level_shifter_type : enum_string;
input_voltage_range( float, float );
output_voltage_range( float, float );
input_threshold_pct_fall : float;
input_threshold_pct_rise : float;
output_threshold_pct_fall : float;
output_threshold_pct_rise : float;
slew_lower_threshold_pct_fall : float;
slew_lower_threshold_pct_rise : float;
slew_upper_threshold_pct_fall : float;
slew_upper_threshold_pct_rise : float;
Refer to the Legend Table for the attribute types and their values.
44
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
PinGroup
PinGroup
pin( complex_string_list ) {
always_on : Boolean;
has_builtin_pad : Boolean;
max_input_noise_width : float;
min_input_noise_width : float;
is_isolated : Boolean;
isolation_enable_condition : boolexpr
fall_capacitance_range : ( float , float );
rise_capacitance_range : ( float , float );
rise_capacitance : float
fall_capacitance : float
PinData
ElectroMigrationGroup
EmMaxToggleRateGroup
InternalPowerGroup
MemoryReadGroup
MemoryWriteGroup
MinPulseWidthGroup
MinimumPeriodGroup
TimingGroup
TLatchGroup
45
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
PinGroup
Refer to the Legend Table for the attribute types and their values.
46
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
PinGroup
47
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
PinGroup
48
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
BusGroup
BusGroup
bus( complex_string ){
}
Refer to the Legend Table for the attribute types and their values.
49
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
BusGroup
50
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
BundleGroup
BundleGroup
bundle( complex_string ){
}
Refer to the Legend Table for the attribute types and their values.
51
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
BundleGroup
52
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
PGPinGroup
PGPinGroup
pg_pin( complex_string ){
pg_type : enum_string;
user_pg_type : complex_string;
pg_function : boolexpr;
direction : enum_string;
voltage_name : complex_string;
switch_function : boolexpr;
std_cell_main_rail : Boolean;
}
Refer to the Legend Table for the attribute types and their values.
53
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
FFGroup
FFGroup
ff( simple_string, simple_string ){
clocked_on : boolexpr;
next_state : boolexpr;
clear : boolexpr;
preset : boolexpr;
clear_preset_var1 : enum_string;
clear_preset_var2 : enum_string;
clocked_on_also : boolexpr;
}
Refer to the Legend Table for the attribute types and their values.
54
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
FFBankGroup
FFBankGroup
ff_bank( simple_string, simple_string, float ){
clocked_on : boolexpr;
next_state : boolexpr;
clear : boolexpr;
preset : boolexpr;
clear_preset_var1 : enum_string;
clear_preset_var2 : enum_string;
clocked_on_also : boolexpr;
}
Refer to the Legend Table for the attribute types and their values.
55
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
LatchGroup
LatchGroup
latch( simple_string, simple_string ){
enable : boolexpr;
enable_also : boolexpr;
data_in : boolexpr;
clear : boolexpr;
preset : boolexpr;
clear_preset_var1 : enum_string;
clear_preset_var2 : enum_string ;
}
Refer to the Legend Table for the attribute types and their values.
56
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
LatchBankGroup
LatchBankGroup
latch_bank( simple_string, simple_string, float ){
enable : boolexpr;
enable_also : boolexpr;
data_in : boolexpr;
clear : boolexpr;
preset : boolexpr;
clear_preset_var1 : enum_string;
clear_preset_var2 : enum_string ;
}
Refer to the Legend Table for the attribute types and their values.
57
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
SeqGroup
SeqGroup
seq( simple_string, simple_string ){
clear : boolexpr;
clear_preset_var1 : enum_string;
clear_preset_var2 : enum_string;
clocked_on : boolexpr;
clocked_on_also : boolexpr;
data_in : boolexpr;
enable : boolexpr;
enable_also : boolexpr;
next_state : boolexpr;
preset : boolexpr;
}
Refer to the Legend Table for the attribute types and their values.
58
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
SeqBankGroup
SeqBankGroup
seq_bank( simple_string, simple_string, complex_string ){
clear : boolexpr;
clear_preset_var1 : enum_string;
clear_preset_var2 : enum_string;
clocked_on : boolexpr;
clocked_on_also : boolexpr;
data_in : boolexpr;
enable : boolexpr;
enable_also : boolexpr;
next_state : boolexpr;
preset : boolexpr;
}
Refer to the Legend Table for the attribute types and their values.
59
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
StateGroup
StateGroup
state( complex_string, complex_string ){
clocked_on : boolexpr;
clocked_on_also : boolexpr;
data_in : boolexpr;
force_00 : boolexpr;
force_01 : boolexpr;
force_10 : boolexpr;
force_11 : boolexpr;
next_state : boolexpr;
}
Refer to the Legend Table for the attribute types and their values.
60
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
StatetableGroup
StatetableGroup
statetable( simple_string, simple_string ){
table:
}
Refer to the Legend Table for the attribute types and their values.
61
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
TestCellGroup
TestCellGroup
test_cell( [ complex_string ] ){
bus_naming_style : complex_string ;
BusGroup
BundleGroup
FFGroup
FFBankGroup
GeneratedClockGroup
InternalPowerGroup
LatchGroup
LatchBankGroup
LeakagePowerGroup
LuTableTemplateGroup
MemoryGroup
ModeDefinitionGroup
PinGroup
PGPinGroup
RoutingTrackGroup
SeqGroup
SeqBankGroup
StateGroup
StatetableGroup
TypeGroup
}
Refer to the Legend Table for the attribute types and their values.
62
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
GeneratedClockGroup
GeneratedClockGroup
generated_clock( complex_string ){
clock_pin : simple_string_list;
divided_by : float;
duty_cycle : float;
invert : Boolean;
master_pin : complex_string;
multiplied_by : float;
edges( float, float, float );
shifts( float, float, float );
}
Refer to the Legend Table for the attribute types and their values.
63
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
TimingGroup
TimingGroup
timing( [complex_string_list ] ){
default_timing : Boolean ;
edge_rate_sensitivity_f0 : float ;
edge_rate_sensitivity_f1 : float ;
edge_rate_sensitivity_r0 : float ;
edge_rate_sensitivity_r1 : float ;
fall_resistance : float ;
hold_coefficient : float ;
intrinsic_fall : float ;
intrinsic_rise : float ;
mode( simple_string, simple_string_list );
related_bus_equivalent : simple_string_list ;
related_pin : simple_string_list ;
related_bus_pins : simple_string_list ;
related_output_pin : complex_string ;
rise_resistance : float ;
sdf_cond : complex_string ;
sdf_cond_end : complex_string ;
sdf_cond_start : complex_string ;
sdf_edges : complex_string ;
setup_coefficient : float ;
slope_fall : float ;
slope_rise : float ;
steady_state_resistance_float_max : float ;
steady_state_resistance_float_min : float ;
steady_state_resistance_high_max : float ;
steady_state_resistance_high_min : float ;
steady_state_resistance_low_max : float ;
steady_state_resistance_low_min : float ;
timing_type : enum_string ;
64
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
TimingGroup
timing_sense : enum_string ;
when : boolexpr ;
when_end : boolexpr ;
when_start : boolexpr ;
fall_delay_intercept( float, float );
fall_pin_resistance( float, float );
rise_delay_intercept( float, float );
rise_pin_resistance( float, float );
clock_gating_flag : Boolean ;
CellDegradationGroup
CellFallGroup
CellRiseGroup
DomainGroup
FallPropagationGroup
RisePropagationGroup
FallTransitionGroup
RetainingRiseGroup
RetainingFallGroup
RetainRiseSlewGroup
RetainFallSlewGroup
RiseTransitionGroup
FallConstraintGroup
RiseConstraintGroup
}
Refer to the Legend Table for the attribute types and their values.
65
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
TimingGroup
66
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
TimingGroup
67
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
TimingGroup
68
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
PinData
PinData
bit_width : float ;
capacitance : float ;
clock_gate_clock_pin : Boolean ;
clock_gate_enable_pin : Boolean ;
clock_gate_test_pin : Boolean ;
clock_gate_obs_pin : Boolean ;
clock_gate_out_pin : Boolean ;
fault_model : complex_string ;
complementary_pin : simple_string ;
dcm_timing : Boolean ;
clock : Boolean ;
connection_class : simple_string_list ;
direction : enum_string ;
dont_fault : enum_string ;
drive_current : float ;
driver_type : enum_string
or
"enum_string enum_string" ;
edge_rate_breakpoint_f0 : float ;
edge_rate_breakpoint_f1 : float ;
edge_rate_breakpoint_r0 : float ;
edge_rate_breakpoint_r1 : float ;
edge_rate_fall : float ;
edge_rate_load_fall : float ;
edge_rate_load_rise : float ;
edge_rate_rise : float ;
fall_capacitance : float ;
fall_current_slope_after_threshold : float ;
fall_current_slope_before_threshold : float ;
fall_time_after_threshold : float ;
fall_time_before_threshold : float ;
69
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
PinData
fanout_load : float ;
fsim_map : complex_string ;
function : boolexpr ;
hysteresis : Boolean ;
input_map : “simple_string_list” ;
input_signal_level : complex_string ;
input_signal_level_low : float ;
input_signal_level_high : float ;
output_signal_level_low : float ;
output_signal_level_high : float ;
input_voltage : complex_string ;
internal_node : simple_string ;
inverted_output : Boolean ;
is_pad : Boolean ;
isolation_cell_data_pin : Boolean ;
level_shifter_data_pin : Boolean ;
level_shifter_enable_pin : Boolean ;
isolation_cell_enable_pin : Boolean ;
lsi_pad : Boolean ;
max_time_borrow : float ;
max_capacitance : float ;
max_fanout : float ;
max_transition : float ;
min_capacitance : float ;
min_fanout : float ;
min_period : float ;
min_transition : float ;
min_pulse_width_high : float ;
min_pulse_width_low : float ;
multicell_pad_pin : Boolean ;
nextstate_type : enum_string ;
output_signal_level : complex_string ;
output_voltage : complex_string ;
70
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
PinData
pin_func_type : enum_string ;
prefer_tied : float ;
primary_output : Boolean ;
pulling_current : float ;
pulling_resistance : float ;
reference_capacitance : float ;
rise_capacitance : float ;
rise_current_slope_after_threshold : float ;
rise_current_slope_before_threshold : float ;
rise_time_after_threshold : float ;
rise_time_before_threshold : float ;
signal_type : enum_string ;
slew_control : enum_string ;
state_function : boolexpr ;
test_output_only : Boolean ;
three_state : boolexpr ;
vhdl_name : “simple_string” ;
related_power_pin : complex_string ;
related_ground_pin : complex_string ;
switch_pin : Boolean ;
retention_pin( enum_string, float );
map_to_logic : complex_string ;
x_function : boolexpr ;
input_threshold_pct_fall : float ;
input_threshold_pct_rise : float ;
output_threshold_pct_fall : float ;
output_threshold_pct_rise : float ;
slew_lower_threshold_pct_fall : float ;
slew_upper_threshold_pct_fall : float ;
slew_lower_threshold_pct_rise : float ;
slew_upper_threshold_pct_rise : float ;
power_down_function : boolexpr ;
71
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
PinData
Refer to the Legend Table for the attribute types and their values.
72
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
TimingData
TimingData
index_1( float_list );
index_2( float_list );
index_3( float_list );
intermediate_values( float_iter );
values( float_iter );
orders( float_list );
coefs ( float_list )
variable_1_range( float, float );
variable_2_range( float, float );
variable_3_range( float, float );
variable_4_range( float, float );
variable_5_range( float, float );
variable_6_range( float, float );
variable_7_range( float, float );
DomainGroup
Refer to the Legend Table for the attribute types and their values.
73
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
ScalingFactorData
ScalingFactorData
k_process_cell_degradation : float ;
k_process_cell_fall : float ;
k_process_cell_leakage_power : float ;
k_process_cell_rise : float ;
k_process_drive_current : float ;
k_process_drive_fall : float ;
k_process_drive_rise : float ;
k_process_fall_delay_intercept : float ;
k_process_fall_pin_resistance : float ;
k_process_fall_propagation : float ;
k_process_fall_transition : float ;
k_process_hold_fall : float ;
k_process_hold_rise : float ;
k_process_internal_power : float ;
k_process_intrinsic_fall : float ;
k_process_intrinsic_rise : float ;
k_process_min_period : float ;
k_process_min_pulse_width_high : float ;
k_process_min_pulse_width_low : float ;
k_process_nochange_fall : float ;
k_process_nochange_rise : float ;
k_process_pin_cap : float ;
k_process_pin_fall_cap : float ;
k_process_pin_rise_cap : float ;
k_process_recovery_fall : float ;
k_process_recovery_rise : float ;
k_process_removal_fall : float ;
k_process_removal_rise : float ;
k_process_rise_delay_intercept : float ;
k_process_rise_pin_resistance : float ;
74
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
ScalingFactorData
k_process_rise_propagation : float ;
k_process_rise_transition : float ;
k_process_setup_fall : float ;
k_process_setup_rise : float ;
k_process_skew_fall : float ;
k_process_slope_rise : float ;
k_temp_cell_degradation : float ;
k_temp_cell_fall : float ;
k_temp_cell_leakage_power : float ;
k_temp_cell_rise : float ;
k_temp_drive_current : float ;
k_temp_drive_fall : float ;
k_temp_drive_rise : float ;
k_temp_fall_delay_intercept : float ;
k_temp_fall_pin_resistance : float ;
k_temp_fall_propagation : float ;
k_temp_fall_transition : float ;
k_temp_hold_fall : float ;
k_temp_hold_rise : float ;
k_temp_internal_power : float ;
k_temp_intrinsic_fall : float ;
k_temp_intrinsic_rise : float ;
k_temp_min_period : float ;
k_temp_min_pulse_width_high : float ;
k_temp_min_pulse_width_low : float ;
k_temp_nochange_fall : float ;
k_temp_nochange_rise : float ;
k_temp_pin_cap : float ;
k_temp_recovery_fall : float ;
k_temp_recovery_rise : float ;
k_temp_removal_fall : float ;
k_temp_removal_rise : float ;
k_temp_rise_delay_intercept : float ;
75
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
ScalingFactorData
k_temp_rise_pin_resistance : float ;
k_temp_rise_propagation : float ;
k_temp_rise_transition : float ;
k_temp_setup_fall : float ;
k_temp_setup_rise : float ;
k_temp_skew_fall : float ;
k_temp_skew_rise : float ;
k_temp_slope_fall : float ;
k_temp_slope_rise : float ;
k_volt_cell_degradation : float ;
k_volt_cell_fall : float ;
k_volt_cell_leakage_power : float ;
k_volt_cell_rise : float ;
k_volt_drive_current : float ;
k_volt_drive_fall : float ;
k_volt_drive_rise : float ;
k_volt_fall_delay_intercept : float ;
k_volt_fall_pin_resistance : float ;
k_volt_fall_propagation : float ;
k_volt_fall_transition : float ;
k_volt_hold_fall : float ;
k_volt_hold_rise : float ;
k_volt_internal_power : float ;
k_volt_intrinsic_fall : float ;
k_volt_intrinsic_rise : float ;
k_volt_min_period : float ;
k_volt_min_pulse_width_high : float ;
k_volt_min_pulse_width_low : float ;
k_volt_nochange_fall : float ;
k_volt_nochange_rise : float ;
k_volt_pin_cap : float ;
k_volt_recovery_fall : float ;
k_volt_recovery_rise : float ;
76
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
ScalingFactorData
k_volt_removal_fall : float ;
k_volt_removal_rise : float ;
k_volt_rise_delay_intercept : float ;
k_volt_rise_pin_resistance : float ;
k_volt_rise_propagation : float ;
k_volt_rise_transition : float ;
k_volt_setup_fall : float ;
k_volt_setup_rise : float ;
k_volt_skew_fall : float ;
k_volt_skew_rise : float ;
k_volt_slope_fall : float ;
k_volt_slope_rise : float ;
k_volt_wire_cap : float ;
k_volt_wire_res : float ;
Refer to the Legend Table for the attribute types and their values.
77
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
DomainGroup
DomainGroup
domain( complex_string ){
calc_mode : complex_string ;
variables( complex_string_list );
mapping( simple_string, simple_string );
variable_1_range( float, float );
variable_2_range( float, float );
variable_3_range( float, float );
variable_4_range( float, float );
variable_5_range( float, float );
variable_6_range( float, float );
variable_7_range( float, float );
coefs ( float_list ) ;
orders ( float_list ) ;
}
Refer to the Legend Table for the attribute types and their values.
78
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
ScaledCellGroup
ScaledCellGroup
scaled_cell( simple_string, simple_string ){
timing_model_type : simple_string ;
user_function_class : simple_string ;
retention_cell : simple_string ;
CellData
BusGroup
BundleGroup
FFGroup
FFBankGroup
GeneratedClockGroup
InternalPowerGroup
LatchGroup
LatchBankGroup
LeakagePowerGroup
LuTableTemplateGroup
MemoryGroup
ModeDefinitionGroup
PinGroup
PGPinGroup
RoutingTrackGroup
SeqGroup
SeqBankGroup
StateGroup
StatetableGroup
TestCellGroup
TypeGroup
}
Refer to the Legend Table for the attribute types and their values.
79
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
ScaledCellGroup
80
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
ModelGroup
ModelGroup
model( complex_string ){
cell_name : complex_string ;
short( complex_string_list );
CellData
BusGroup
BundleGroup
FFGroup
FFBankGroup
GeneratedClockGroup
InternalPowerGroup
LatchGroup
LatchBankGroup
LeakagePowerGroup
LutGroup
MemoryGroup
ModeDefinitionGroup
PinGroup
PGPinGroup
RoutingTrackGroup
SeqGroup
SeqBankGroup
StateGroup
StatetableGroup
TestCellGroup
TypeGroup
}
Refer to the Legend Table for the attribute types and their values.
81
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
ModelGroup
82
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
CellDegradationGroup
CellDegradationGroup
cell_degradation( complex_string ){
TimingData
}
83
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
CellFallGroup
CellFallGroup
cell_fall( complex_string ){
TimingData
}
CellRiseGroup
cell_fall( complex_string ){
TimingData
}
84
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
DefaultData
DefaultData
default_cell_leakage_power : float ;
default_connection_class : simple_string_list ;
default_edge_rate_breakpoint_f0 : float ;
default_edge_rate_breakpoint_f1 : float ;
default_edge_rate_breakpoint_r0 : float ;
default_edge_rate_breakpoint_r1 : float ;
default_fall_delay_intercept : float ;
default_fall_pin_resistance : float ;
default_fanout_load : float ;
default_hold_coefficient : float ;
default_inout_pin_cap : float ;
default_inout_pin_fall_res : float ;
default_inout_pin_rise_res : float ;
default_input_pin_cap : float ;
default_intrinsic_fall : float ;
default_intrinsic_rise : float ;
default_leakage_power_density : float ;
default_max_capacitance : float ;
default_max_fanout : float ;
default_max_transition : float ;
default_max_utilization : float ;
default_min_porosity : float ;
default_operating_conditions : complex_string ;
default_output_pin_cap : float ;
default_output_pin_fall_res : float ;
default_output_pin_rise_res : float ;
default_rc_fall_coefficient : float ;
default_rc_rise_coefficient : float ;
default_reference_capacitance : float ;
default_rise_delay_intercept : float ;
85
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
DefaultData
default_rise_pin_resistance : float ;
default_setup_coefficient : float ;
default_slope_fall : float ;
default_slope_rise : float ;
default_wire_load : complex_string ;
default_wire_load_area : float ;
default_wire_load_capacitance : float ;
default_wire_load_mode : enum_string ;
default_wire_load_resistance : float ;
default_wire_load_selection : complex_string ;
em_temp_degradation_factor : float ;
default_threshold_voltage_group : complex_string ;
Refer to the Legend Table for the attribute types and their values.
86
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
ElectroMigrationGroup
ElectroMigrationGroup
electromigration( [ complex_string ] ) {
related_pin : simple_string_list ;
related_bus_pins : simple_string_list ;
EmMaxToggleRateGroup
}
Refer to the Legend Table for the attribute types and their values.
87
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
EmLutTemplateGroup
EmLutTemplateGroup
em_lut_template( complex_string ) {
variable_1 : enum_string ;
variable_2 : enum_string ;
index_1( float_list );
index_2( float_list );
}
Refer to the Legend Table for the attribute types and their values.
88
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
EmMaxToggleRateGroup
EmMaxToggleRateGroup
em_max_toggle_rate( complex_string ){
TimingData
}
89
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
FallConstraintGroup
FallConstraintGroup
fall_constraint( complex_string ){
TimingData
}
90
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
FallNetDelayGroup
FallNetDelayGroup
fall_net_delay( complex_string ){
TimingData
}
91
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
FallPowerGroup
FallPowerGroup
fall_power( complex_string ){
TimingData
}
92
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
FallPropagationGroup
FallPropagationGroup
fall_propagation( complex_string ){
TimingData
}
93
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
FallTransitionDegradationGroup
FallTransitionDegradationGroup
fall_transition_degradation( complex_string ){
TimingData
}
94
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
FallTransitionGroup
FallTransitionGroup
fall_transition( complex_string ){
TimingData
}
95
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
InputVoltageGroup
InputVoltageGroup
input_voltage ( complex_string ){
vih : float ;
vil : float ;
vimax : float ;
vimin : float ;
: float ;
}
Refer to the Legend Table for the attribute types and their values.
96
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
InterconnectDelayGroup
InterconnectDelayGroup
interconnect_delay( complex_string ){
TimingData
}
97
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
InternalPowerGroup
InternalPowerGroup
internal_power ( [ complex_string ] ){
equal_or_opposite_output : simple_string_list ;
related_pin : simple_string_list ;
related_bus_pins : simple_string_list ;
when : boolexpr ;
related_falling_pin : simple_string_list ;
related_rising_pin : simple_string_list ;
related_inputs : simple_string_list ;
related_outputs : simple_string_list ;
falling_together_group : simple_string_list ;
rising_together_group : simple_string_list ;
switching_together_group : simple_string_list ;
switching_interval : float ;
values( float_iter );
index_1( float_list );
index_2( float_list );
index_3( float_list );
power_level : complex_string ;
related_pg_pin : simple_string_list ;
FallPowerGroup
PowerGroup
RisePowerGroup
98
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
InternalPowerGroup
Refer to the Legend Table for the attribute types and their values.
99
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
LeakagePowerGroup
LeakagePowerGroup
leakage_power ( [ complex_string ] ){
when : boolexpr ;
value : double ;
power_level : complex_string ;
related_pg_pin : simple_string_list ;
PowerGroup
}
Refer to the Legend Table for the attribute types and their values.
100
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
LuTableTemplateGroup
LuTableTemplateGroup
lu_table_template( complex_string ){
variable_1 : enum_string ;
variable_2 : enum_string ;
variable_3 : enum_string ;
index_1( float_list );
index_2( float_list );
index_3( float_list );
Refer to the Legend Table for the attribute types and their values.
101
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
LutGroup
LutGroup
lut( complex_string ){
input_pins : boolexpr ;
}
Refer to the Legend Table for the attribute types and their values.
102
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
MemoryGroup
MemoryGroup
memory( [ complex_string ] ){
address_width : float ;
column_address : "list of int or int:int"
row_address : "list of int or int:int"
type : enum_string ;
word_width : float ;
}
Refer to the Legend Table for the attribute types and their values.
103
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
MemoryReadGroup
MemoryReadGroup
memory_read( [ complex_string ] ){
address : simple_string_list ;
}
Refer to the Legend Table for the attribute types and their values.
104
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
MemoryWriteGroup
MemoryWriteGroup
memory_write( [ complex_string ] ){
address : simple_string_list ;
clocked_on : boolexpr ;
enable : boolexpr ;
}
Refer to the Legend Table for the attribute types and their values.
105
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
MinimumPeriodGroup
MinimumPeriodGroup
minimum_period( [ complex_string ] ){
constraint : float ;
sdf_cond : complex_string ;
when : boolexpr ;
}
Refer to the Legend Table for the attribute types and their values.
106
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
MinPulseWidthGroup
MinPulseWidthGroup
min_pulse_width( [ complex_string ] ){
constraint_high : float ;
constraint_low : float ;
sdf_cond : complex_string ;
when : boolexpr ;
}
Refer to the Legend Table for the attribute types and their values.
107
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
ModeDefinitionGroup
ModeDefinitionGroup
mode_definition( complex_string ){
mode_value( complex_string ) {
when : boolexpr ;
sdf_cond : complex_string ;
}
}
Refer to the Legend Table for the attribute types and their values.
108
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
OperatingConditionsGroup
OperatingConditionsGroup
operating_conditions( complex_string ){
process : float ;
temperature : float ;
tree_type : enum_string ;
voltage : float ;
power_rail( complex_string, float );
calc_mode : complex_string ;
Refer to the Legend Table for the attribute types and their values.
109
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
OutputVoltageGroup
OutputVoltageGroup
output_voltage( complex_string ){
vol : float ;
voh : float ;
vomin : float ;
vomax : float ;
}
Refer to the Legend Table for the attribute types and their values.
110
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
PolyTemplateGroup
PolyTemplateGroup
poly_template( complex_string ){
variables( enum_string_list );
mapping( simple_string, simple_string );
variable_1_range( float, float );
variable_2_range( float, float );
variable_3_range( float, float );
variable_4_range( float, float );
variable_5_range( float, float );
variable_6_range( float, float );
variable_7_range( float, float );
DomainGroup
Refer to the Legend Table for the attribute types and their values.
111
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
PowerGroup
PowerGroup
power( complex_string ){
related_pin : simple_string_list ;
when : boolexpr ;
TimingData
Refer to the Legend Table for the attribute types and their values.
112
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
PowerLutTemplateGroup
PowerLutTemplateGroup
power_lut_template( complex_string ){
variable_1 : complex_string ;
variable_2 : complex_string ;
variable_3 : complex_string ;
index_1( float_list );
index_2( float_list );
index_3( float_list );
Refer to the Legend Table for the attribute types and their values.
113
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
PowerPolyTemplateGroup
PowerPolyTemplateGroup
power_poly_template( complex_string ){
variables( enum_string_list );
mapping( simple_string, simple_string );
variable_1_range( float, float );
variable_2_range( float, float );
variable_3_range( float, float );
variable_4_range( float, float );
variable_5_range( float, float );
variable_6_range( float, float );
variable_7_range( float, float );
DomainGroup
Refer to the Legend Table for the attribute types and their values.
114
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
PowerSupplyGroup
PowerSupplyGroup
power_supply( [ complex_string ] ){
default_power_rail : complex_string ;
power_rail( complex_string, float );
}
Refer to the Legend Table for the attribute types and their values.
115
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
RetainFallSlewGroup
RetainFallSlewGroup
retain_fall_slew ( complex_string ){
TimingData
}
116
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
RetainingFallGroup
RetainingFallGroup
retaining_fall ( complex_string ){
TimingData
}
117
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
RetainingRiseGroup
RetainingRiseGroup
retaining_rise ( complex_string ){
TimingData
}
118
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
RetainRiseSlewGroup
RetainRiseSlewGroup
retain_rise_slew ( complex_string ){
TimingData
}
119
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
RiseConstraintGroup
RiseConstraintGroup
rise_constraint ( complex_string ){
TimingData
}
120
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
RiseNetDelayGroup
RiseNetDelayGroup
rise_net_delay ( complex_string ){
TimingData
}
121
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
RisePowerGroup
RisePowerGroup
rise_power ( complex_string ){
TimingData
}
122
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
RisePropagationGroup
RisePropagationGroup
rise_propagation ( complex_string ){
TimingData
}
123
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
RiseTransitionDegradationGroup
RiseTransitionDegradationGroup
rise_transition_degradation ( complex_string ){
TimingData
}
124
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
RiseTransitionGroup
RiseTransitionGroup
rise_transition ( complex_string ){
TimingData
}
125
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
RoutingTrackGroup
RoutingTrackGroup
routing_track ( complex_string ){
tracks : float ;
total_track_area : float ;
Refer to the Legend Table for the attribute types and their values.
126
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
ScalingFactorGroup
ScalingFactorGroup
scaling_factors ( complex_string ){
ScalingFactorData
}
127
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
TimingRangeGroup
TimingRangeGroup
tming_range ( complex_string ){
faster_factor : float ;
slower_factor : float ;
}
Refer to the Legend Table for the attribute types and their values.
128
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
TLatchGroup
TLatchGroup
tlatch ( complex_string ){
edge_type : enum_string ;
tdisable : Boolean ;
}
Refer to the Legend Table for the attribute types and their values.
129
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
TypeGroup
TypeGroup
type ( complex_string ){
}
Refer to the Legend Table for the attribute types and their values.
130
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
WireLoadGroup
WireLoadGroup
wire_load ( complex_string ){
area : float ;
capacitance : float ;
resistance : float ;
slope : float ;
fanout_length (float, float, float, float, float) ;
or
fanout_length (float, float) ;
InterconnectDelayGroup
}
Refer to the Legend Table for the attribute types and their values.
131
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
WireLoadSelectionGroup
WireLoadSelectionGroup
wire_load_selection ( [ complex_string ] ){
}
Refer to the Legend Table for the attribute types and their values.
132
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
WireLoadTableGroup
WireLoadTableGroup
wire_load_table ( complex_string ){
}
Refer to the Legend Table for the attribute types and their values.
133
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
Appendix_IA
Appendix_IA
The following table displays the list of attributes that are ignored by the
SpyGlass Library Compiler:
134
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
Appendix_IA
ElectroMigrationGroup when
index_1
index_2
values
EmLutTemplateGroup variable_3
EmMaxToggleRateGroup poly_convert
threshold
FallPowerGroup poly_convert
InterconnectDelayGroup poly_convert
InternalPowerGroup equal_or_opposite_output_net_capacitance
related_input
LibraryGroup preferred_input_pad_voltage
resistance_unit
base_curve_type
capacitance_conversion_factor
curve_x
curve_y
default_fpga_isd
default_ocv_derate_distance_group
default_ocv_derate_group
default_part
define_group
dist_con_factor
dist_conversion_factor
distance_unit
fpga_domain_style
fpga_isd
fpga_technology
k_temp_rise_propogation
k_temp_rise_wire_resistance
ocv_arc_depth
ocv_derate
scan_group
va_parameters
LuTableTemplateGroup index_4
variable_4
135
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
Appendix_IA
ModelGroup em_temp_degradation_factor
failure_rate
timing_model_type
auxiliary_pad_cell
base_name
drive_type
fpga_cell_type
io_type
power_cell_type
resource_usage
scan_group
slew_type
OperatingConditionsGroup parameter
PGPinGroup bias_connection
bus_hold_function
has_pass_gate
open_drain_function
open_source_function
physical_connection
pull_down_function
pull_up_function
resistive_0_function
resistive_1_function
resistive_function
136
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
Appendix_IA
PinGroup bus_hold_function
is_three_state
open_drain_function
open_source_function
power_gating_pin
pull_down_function
pull_up_function
resistive_0_function
resistive_1_function
resistive_function
alive_during_partial_power_down
antenna_diode_related_ground_pins
antenna_diode_related_power_pins
bias_connection
data_in_type
has_pass_gate
is_pll_feedback_pin
is_pll_output_pin
is_pll_reference_pin
is_unbuffered
physical_connection
pulse_clock
PolyTemplateGroup orders
input_noise_height
input_noise_width
input_peak_time_ratio
variable_1_range
variable_n_range
PowerPolyTemplateGroup variable_n_range
PowerGroup poly_convert
ScaledCellGroup failure_rate
TimingGroup interdependence_id
pin_name_map
sensitization_master
steady_state_resistance_above_high
steady_state_resistance_below_low
steady_state_resistance_high
steady_state_resistance_low
tied_off
wave_fall
wave_rise
cv_arc_depth
137
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
Appendix_IA
RoutingTrackGroup short
ScaledCellGroup scan_group
ScalingFactorData k_temp_rise_propogation
k_temp_rise_wire_resistance
capacitance coefs
orders
fall_capacitance coefs
orders
fpga_condition_value fpga_arc_condition
fpga_isd drivepability
io_type
slew
hyperbolic_noise_above_high area_coefficient
height_coefficient
width_coefficient
area_coefficient
height_coefficient
width_coefficient
area_coefficient
height_coefficient
width_coefficient
area_coefficient
height_coefficient
width_coefficient
iv_lut_template index_1
variable_1
lower coefs
orders
variable_1_range
variable_2_range
variable_n_range
max_trans coefs
orders
variable_1_range
variable_2_range
variable_n_range
maxcap_lut_template index_1
index_2
variable_1
variable_2
138
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
Appendix_IA
maxtrans_lut_template index_1
index_2
index_3
variable_1
variable_2
variable_3
noise_lut_template index_1
index_2
variable_1
variable_2
output_current_template index_1
index_2
index_3
variable_1
variable_2
variable_3
part default_step_level
max_count
num_blockrams
num_cols
num_ffs
num_luts
num_rows
pin_count
valid_speed_grade
valid_step_levels
propagation_lut_template index_1
index_2
index_3
variable_1
variable_2
variable_3
receiver_capacitance1_fall index_1
ndex_2
values
receiver_capacitance1_rise index_1
index_2
values
receiver_capacitance2_fall index_1
index_2
values
139
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
Appendix_IA
receiver_capacitance2_rise index_1
index_2
values
rise_capacitance coefs
orders
speed_grade fpga_isd
step_level
upper coefs
orders
variable_1_range
variable_2_range
variable_n_range
user_parameters parameteri
vector index_1
index_2
index_3
reference_time
values
140
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
Appendix_IG
Appendix_IG
The following table displays the list of groups that are ignored by the
SpyGlass Library Compiler:
141
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
Appendix_IG
LibraryGroup base_curves
ccs_lu_table_template
ccs_timing_base_curve
ccs_timing_base_curve_template
compact_lut_template
iv_lut_template
maxcap_lut_template
maxtrans_lut_template
noise_lut_template
normalized_driver_waveform
output_current_template
pg_current_template
propagation_lut_template
sensitization
user_parameters
cont_layer
critical_area_lut_template
dc_current_template
device_layer
faults_lut_template
model
ocv_table_template
output_current
part
pg_current_template
poly_layer
routing_layer
timing
LuTableTemplateGroup domain
142
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
Appendix_IG
PinGroup ccsn_first_stage
ccsn_last_stage
fall_capacitance_range
hyperbolic_noise_above_high
hyperbolic_noise_below_low
hyperbolic_noise_high
hyperbolic_noise_low
input_signal_swing
max_cap
max_trans
output_signal_swing
pin_based_variation
pin_capacitance
receiver_capacitance
rise_capacitance_range
electromigration
pin_based_variation
PowerLutTemplateGroup domain
143
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
Appendix_IG
TimingGroup cell_fall_to_pct
cell_rise_to_pct
compact_ccs_fall
compact_ccs_rise
compressed_ccs_timing_rise
noise_immunity_above_high
noise_immunity_below_low
noise_immunity_high
noise_immunity_low
output_current_fall
output_current_rise
propagated_noise_height_above_high
propagated_noise_height_below_low
propagated_noise_height_high
propagated_noise_height_low
propagated_noise_peak_time_ratio_above_high
propagated_noise_peak_time_ratio_below_low
propagated_noise_peak_time_ratio_high
propagated_noise_peak_time_ratio_low
propagated_noise_width_above_high
propagated_noise_width_below_low
propagated_noise_width_high
propagated_noise_width_low
receiver_capacitance1_fall
receiver_capacitance1_rise
receiver_capacitance2_fall
receiver_capacitance2_rise
steady_state_current_high
steady_state_current_low
steady_state_current_tristate
timing_based_variation
compact_ccs_retain_fall
compact_ccs_retain_rise
compact_ccs_rise
ocv_sigma_cell_fall
ocv_sigma_cell_rise
ModelGroup edif_name
fpga_condition
fpga_domain_style
fpga_isd
fall_capacitance_range lower
upper
fpga_condition fpga_condition_value
144
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Com-
Appendix_IG
output_current_fall vector
output_current_rise vector
part fpga_isd
speed_grade
pin_capacitance capacitance
fall_capacitance
fall_capacitance_range
rise_capacitance
rise_capacitance_range
receiver_capacitance receiver_capacitance1_fall
receiver_capacitance1_rise
receiver_capacitance2_fall
receiver_capacitance2_rise
rise_capacitance_range lower
upper
145
Synopsys, Inc.
Interpreting Library-Attributes by SpyGlass Library Compiler
Appendix_IG
146
Synopsys, Inc.
List of Topics
147
Synopsys, Inc.
Library Compilation Modes in SpyGlass Physical ................................................ 16
LibraryGroup................................................................................................ 33
LuTableTemplateGroup................................................................................ 101
LutGroup ................................................................................................... 102
MemoryGroup ............................................................................................ 103
MemoryReadGroup ..................................................................................... 104
MemoryWriteGroup..................................................................................... 105
MinimumPeriodGroup .................................................................................. 106
MinPulseWidthGroup ................................................................................... 107
ModeDefinitionGroup................................................................................... 108
ModelGroup ................................................................................................. 81
OperatingConditionsGroup ........................................................................... 109
OutputVoltageGroup ................................................................................... 110
Parsing of Attribute Statements ...................................................................... 25
Parsing of Comment Statements..................................................................... 24
Parsing of Group Statements.......................................................................... 27
PGPinGroup ................................................................................................. 53
PinData ....................................................................................................... 69
PinGroup ..................................................................................................... 45
PolyTemplateGroup..................................................................................... 111
PowerGroup ............................................................................................... 112
PowerLutTemplateGroup.............................................................................. 113
PowerPolyTemplateGroup ............................................................................ 114
PowerSupplyGroup ..................................................................................... 115
RetainFallSlewGroup ................................................................................... 116
RetainingFallGroup ..................................................................................... 117
RetainingRiseGroup .................................................................................... 118
RetainRiseSlewGroup .................................................................................. 119
RiseConstraintGroup ................................................................................... 120
RiseNetDelayGroup ..................................................................................... 121
RisePowerGroup ......................................................................................... 122
RisePropagationGroup ................................................................................. 123
RiseTransitionDegradationGroup ................................................................... 124
RiseTransitionGroup.................................................................................... 125
RoutingTrackGroup ..................................................................................... 126
Running the Library Compilation Modes in SpyGlass Physical .............................. 17
ScaledCellGroup ........................................................................................... 79
ScalingFactorData......................................................................................... 74
ScalingFactorGroup..................................................................................... 127
SeqBankGroup ............................................................................................. 59
SeqGroup .................................................................................................... 58
148
Synopsys, Inc.
StateGroup.................................................................................................. 60
StatetableGroup ........................................................................................... 61
Steps to Compile Libraries in SpyGlass Physical ................................................ 18
TestCellGroup .............................................................................................. 62
TimingData.................................................................................................. 73
TimingGroup................................................................................................ 64
TimingRangeGroup ..................................................................................... 128
TLatchGroup .............................................................................................. 129
TypeGroup ................................................................................................ 130
Typographical Conventions ............................................................................ 11
WireLoadGroup .......................................................................................... 131
WireLoadSelectionGroup.............................................................................. 132
WireLoadTableGroup................................................................................... 133
149
Synopsys, Inc.
150
Synopsys, Inc.