VLSI Sign-Off Flow

Static Timing Analysis
The Science of Timing Correctness

Static Timing Analysis (STA) is the method used in the semiconductor industry to verify that every timing path in a chip meets its required constraints — without running a single simulation. This section covers STA from first principles to advanced sign-off concepts used in real ASIC tape-out flows.

5 Core Topics
Industry Sign-Off Ready
Interactive Simulators
ASIC & FPGA Relevant

What is Static Timing Analysis?

STA is a simulation method that validates the timing performance of a digital circuit by checking all possible timing paths mathematically — without applying input vectors. It verifies that every signal launches from a flip-flop, travels through combinational logic, and arrives at the next flip-flop with enough margin to meet the clock's setup and hold requirements.

Unlike dynamic simulation, STA is exhaustive — it checks every path simultaneously. This makes it the industry-standard sign-off method for chips running at hundreds of megahertz to multiple gigahertz.

Why STA Matters in VLSI

A chip that fails timing will malfunction — wrong data is sampled, computations produce incorrect results, or the system crashes entirely. STA is the last gate before tape-out: no chip ships without meeting all timing constraints across every process, voltage, and temperature (PVT) corner.

Engineers use tools like Synopsys PrimeTime and Cadence Tempus to run STA. Understanding the underlying concepts — setup slack, hold slack, clock skew, OCV, and CPPR — is essential for any physical design or timing closure role.

All Topics

STA Learning Path

Topics are organized from foundational concepts to advanced sign-off methodology. Start from Topic 01 if you are new to timing analysis.

Topic 01
Setup & Hold Time Analysis
The foundational concepts of STA. Covers what setup time and hold time mean physically, how violations occur, how STA math computes setup slack and hold slack for every path, the impact of clock skew and jitter, PVT corners, On-Chip Variation (OCV), CPPR, metastability, and standard engineering strategies for fixing both violation types.
Setup Slack Hold Slack OCV Metastability PVT Corners
Start Learning
⚗ Lab
Setup & Hold Violation Lab INTERACTIVE
Drag sliders and watch setup violations and hold violations appear live on a real timing diagram. Adjust clock period, combinational delay, wire delay, and clock skew — see pass/fail flip in real time.
Live Diagram Setup Slack Hold Slack Clock Skew
Open Lab
🧠 Challenge Quiz
STA MCQ Quiz 10 QUESTIONS
10 tricky MCQs with instant explanations — setup slack calculation, hold violation fixes, OCV derating direction, CPPR, clock skew seesaw, PVT corner selection, and SDC constraints. Each question has one well-hidden trap.
Setup & Hold OCV / CPPR Interview Prep
Start Quiz
Topic 02
Clock Tree Synthesis & Skew
How the clock signal is distributed from a single source to every flip-flop on the chip. Covers clock tree topologies (H-tree, mesh, balanced binary), insertion delay, local vs global skew, useful skew, clock gating cells in CTS, CTS goals and flow, how skew shifts setup and hold margins, and common CTS problems with fixes.
CTS H-Tree Useful Skew Insertion Delay Clock Gating
Start Learning
Topic 04
Timing Paths & Critical Path Analysis
How STA classifies, traces, and reports every timing path in the design. Covers the four path types (R2R, I2R, R2O, I2O), timing graph construction, arrival time and required time computation, slack, reading PrimeTime timing reports, logic depth analysis, critical path fixing techniques ordered by impact, and WNS vs TNS.
Critical Path Timing Report Slack Logic Depth PrimeTime
Start Learning
Topic 03
SDC Constraints & Timing Exceptions
Synopsys Design Constraints (SDC) is the language used to tell STA and synthesis tools your design's timing environment. Covers create_clock, create_generated_clock, set_input_delay, set_output_delay, clock uncertainty, false paths, multicycle paths with the -setup/-hold pairing rule, case analysis, operating conditions, and a complete production SDC template.
SDC False Path Multicycle Path create_clock I/O Delay
Start Learning
Practical Guide
Timing Closure — Fix Setup & Hold
Practical techniques for closing timing in real VLSI designs: logic restructuring, gate sizing, buffering, retiming, pipelining, MCP exceptions for setup — plus delay cell insertion for hold. Covers OCV, CPPR, signoff corners, and common mistakes engineers make.
Setup Fix Hold Fix OCV / CPPR Signoff
Read Guide

The Static Timing Analysis Flow

STA follows a well-defined sequence of steps to verify every timing path in a design.

01

Netlist & Libraries

The synthesized gate-level netlist is loaded along with timing libraries (.lib) containing cell delay models.

02

Apply SDC

Clock definitions, I/O constraints, and timing exceptions are applied via Synopsys Design Constraints.

03

Build Timing Graph

The tool constructs a directed acyclic graph (DAG) of all logic paths between sequential elements.

04

Propagate Delays

Arrival times and required times are propagated forward and backward through every path in the graph.

05

Compute Slack

Slack = Required Time − Arrival Time. Negative slack means a violation that must be fixed before tape-out.

Key Concepts

Essential STA Terminology

Understanding these terms is the prerequisite for reading any STA timing report or holding a timing closure discussion.

Timing

Setup Slack

The margin by which data arrives before the setup requirement deadline. Negative setup slack means the path is too slow for the clock frequency.

Timing

Hold Slack

The margin by which data remains stable after the clock edge. Hold violations are frequency-independent and require physical fixes.

Clock

Clock Skew

The spatial variation in clock arrival time across different flip-flops on a chip. Positive skew helps setup; negative skew helps hold.

Clock

Clock Jitter

The temporal uncertainty of when a clock edge actually arrives, caused by power supply noise and thermal effects. Always reduces setup margin.

Variation

OCV (On-Chip Variation)

Accounts for transistor behavior differences across the same die due to local manufacturing imperfections. Addressed with derating factors in STA.

Variation

PVT Corners

Process (slow/fast), Voltage (low/high), Temperature (hot/cold) combinations that define the worst-case and best-case operating conditions for timing.

Advanced

CPPR

Common Path Pessimism Removal. Eliminates impossible pessimism where shared clock buffers are simultaneously modeled as both fast and slow.

Advanced

False Path

A timing path that exists in the netlist but is never logically sensitized during operation. Marked via SDC so the tool does not waste resources fixing it.

In Depth

How Static Timing Analysis Actually Works

Understanding the mechanics behind STA — not just the pass/fail result — is what separates engineers who can fix timing violations from those who just report them.

The Setup Check: What Exactly Gets Computed

A setup check asks: does the data signal arrive at the flip-flop input early enough before the capturing clock edge? The STA tool computes the data arrival time — starting from the launch flip-flop's clock edge, adding the clock network delay to that flip-flop's clock pin, adding the flip-flop's clock-to-Q delay, then adding every gate delay on the combinational path to the capture flip-flop's D input.

The tool then computes the required arrival time — the capturing clock edge time minus the setup time of the capture flip-flop, minus any hold margin uncertainty. Setup slack = required time − arrival time. Positive slack means you have margin. Negative slack means the data arrives too late — a violation.

The Hold Check: The Opposite Problem

A hold check asks: does the data stay stable long enough after the capturing clock edge? A hold violation occurs when the new data from the same (or next) launch edge arrives too quickly and corrupts the value the flip-flop just captured. The hold check uses the minimum path delay (best-case data) and maximum clock skew (capture clock arrives earliest, giving data less time to be valid).

This is why hold violations are fixed by inserting delay cells (buffers) on the data path — making the minimum data path longer — never by changing the clock period. Fixing hold with frequency changes does not work because both launch and capture edges move together.

PVT Corners, OCV, and Why STA Runs Multiple Analyses

A single STA run at nominal conditions tells you nothing about whether the chip will work in the field. In production, chips experience a range of Process (fast/slow silicon), Voltage (low/high supply), and Temperature (hot/cold) variations. Each combination creates a different timing scenario. The slow-slow corner (slow silicon, low voltage, high temperature) is the worst case for setup time — gates are slowest, so data paths take longest. The fast-fast corner (fast silicon, high voltage, low temperature) is the worst case for hold — gates switch fastest, so data can arrive so early it corrupts the previous value before the flip-flop's hold time window closes.

On-Chip Variation (OCV) accounts for the fact that even within a single chip, different parts of the silicon can be faster or slower due to manufacturing variation. STA tools apply derating factors — making the launch path pessimistically slower and the capture path pessimistically faster (for setup) — to guard against this. CPPR (Common Path Pessimism Removal) then removes the artificial pessimism on clock path segments that are shared by both launch and capture paths, since those segments cannot simultaneously be slow AND fast.

SDC Constraints: Why Incorrect Constraints Are Worse Than No Constraints

STA is only as good as the constraints given to it. The SDC (Synopsys Design Constraints) file tells the timing tool what the clocks are, what the relationships between clocks are, and what timing paths should be analyzed or excluded. A missing create_clock means paths through that domain are not checked. An incorrect set_multicycle_path that assumes a synchronous relationship between two asynchronous clocks will make STA report a passing result for paths that will fail in silicon every time the phase relationship is wrong.

The correct constraint for paths between truly asynchronous clocks is set_clock_groups -asynchronous — this tells STA to not analyze timing between those domains, because the relationship is non-deterministic and must be handled by a synchronizer, not by timing analysis. Every SDC file should be reviewed with the same rigor as RTL code, because an SDC error that disables a timing check is as dangerous as an RTL bug.

Why Every VLSI Engineer Must Know STA

Static Timing Analysis is the final verification step that stands between a chip design and silicon fabrication. A design that fails STA sign-off cannot be taped out — no matter how functionally correct the RTL is. This makes STA knowledge essential for every engineer working in digital design, physical design, or design verification.

Unlike simulation, which checks a design for specific input patterns, STA exhaustively checks every timing path simultaneously. This makes it both faster and more thorough. The tradeoff is that STA requires correct constraints — an improperly constrained design may appear to pass timing while hiding real violations.

This section of EcrioniX builds STA knowledge from the ground up — starting with the physical intuition behind setup and hold time, progressing through clock distribution, SDC constraints, and path analysis, and culminating in the timing closure techniques used in real tape-out flows.

Topics Covered in This Section

  • Setup Time & Hold Time — Physics & Intuition
  • Setup Slack & Hold Slack Computation
  • STA Math — Arrival Time & Required Time
  • Clock Skew — Positive, Negative & Useful Skew
  • Clock Jitter & Its Impact on Timing Margin
  • PVT Corners — SS, FF, TT and Corner Coverage
  • On-Chip Variation (OCV) & Derating Factors
  • CPPR — Common Path Pessimism Removal
  • Metastability & Synchronizer Design
  • SDC Constraints — create_clock, set_input_delay
  • False Paths & Multicycle Path Exceptions
  • Timing Path Types & Critical Path Analysis
  • Fixing Setup Violations — Pipelining, Gate Sizing
  • Fixing Hold Violations — Buffer Insertion, CTS
  • Timing Sign-off & Tape-out Readiness