verifying a commercial microprocessor design at the rtl level ken mcmillan cadence berkeley labs...

37
Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs [email protected]

Upload: hortense-crawford

Post on 16-Jan-2016

218 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Verifying a Commercial Microprocessor Design at the

RTL levelKen McMillan

Cadence Berkeley [email protected]

Page 2: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

We will consider some of the problems involved inverifying the actual RTL code of a commercial processordesign, as opposed to an architectural model.

This is a work in progress...

Page 3: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Outline• Methodology• The PicoJava design• Verification Strategy• Problems

Page 4: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Proof Methodology

property

decomposition

model checking

abstraction

parameterization

“circular” assume/guarantee proof•divide into “units of work”

temporal “case splitting”•identify resources used

abstract interpretation•reduce to finite state

Page 5: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

q pp q

Gp Gq

“Circular” assume/guarantee

• Let p q stand for “if p up to time t-1, then q at t”

• Equivalent in LTL of (p U q)

• Now we can reason as follows:

That is, if neither p nor q is the first to befalse, then both are always true.

Page 6: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Using a reference model

Ref. Model

A

B

q p

q pp q

Gp Gq

e.g., programmer’s model

A and B each perform a “unit of work”

refinement relations(temporal properties)

“circular” proof:

Page 7: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Temporal case splitting

p1 p2 p3 p4 p5

v1

...

Idea:parameterize on mostrecent writer w attime t.

: I'm O.K. attime t.

i: G((w=i) )G

Page 8: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Abstract interpretation

• Problem: variables range over unbounded set U

• Solution: reduce U to finite set Û by a parameterized abstraction, e.g.,

where U\i represents all the values in U except i.

• Need a sound abstract interpretation, such that:if is valid in the abstraction, then, for all

parameter valuations, is valid in the original.

Û = {{i}, U\i}

Page 9: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Data type abstractions in SMV

• Examples:– Equality

– Function symbol application

= {i} U\i

{i}

U\i

1

0

0

^

^

x

f(x) f(i)

{i} U\i

Unbounded array reduced to one fixed element!

Note: truth value under abstraction may be

represents“no information”

Page 10: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Applying abstraction

pi

v1

...

: I'm O.K. attime t.

((w=i) )

abstractedelements

i.e, if pi is the most recent to modify v1, then v1

is correct.

Must verify by model checking:

Page 11: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Review

• By a sequence of three steps:– “circular” assume/guarantee reasoning

(restricts to one “unit of work”)

– case splitting (adding parameters)(identifies resources used in that unit of work)

– abstraction interpretation(abstracts away everything else)

...we reduce the verification of an unbounded system of processes to a finite state problem.

Page 12: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

PicoJava

• Stack machine architecture• Implements Java bytecode interpreter in

hardware

I$

D$

Fold

Integer pipe

Stack$

Bus

Intf

Mem

u-Code

Page 13: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Instruction path

• We will concentrate on I$ and Fold units.

Decode

Queue

0

15I$

Align

Bus

Intf

Mem

8

4

PC PC

Fold

bytes insts

Page 14: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Specification strategy

• Since implementation is very large and complex, we need a specification strategy that allows a fine-grain decomposition of the proof.

• Topics:– Reference Model– Histories– Tags and Refinement Relations– Dealing with Exceptions

Page 15: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Reference Model

• Programmer’s view of Java machine (ISA)– contains only programmer visible state

Mem

PC

SP

PSR

Page 16: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Relating Impl to Ref Model

• Specify Impl w.r.t. reference model history

Mem

PC

SP

PSR

Ref Model

...

History

Complete state

Implementation

Refinement relation

Interleave

Page 17: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Correctness criterion

• Correctness is defined as follows:– There exists some interleaving of Impl and Ref,

such that the given relation holds between Impl and history.

• Must choose a witness interleaving– Any interleaving that ensures reference model

“stays ahead of” the implementation.

We use this approach because one step of implementationmay correspond to many steps of reference model.

Page 18: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Multiple histories

• Instructions are a variable number of bytes• Some parts of Impl deal with bytes, some

with instructions.• Keep two histories:

– Byte level history (stream of instruction bytes)– Inst level history (stream of instructions)

We could also record history at coarser granularity if needed...

Page 19: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Tags and refinement relations

• Tags are auxiliary state information• Tags are pointers into a history (byte or

inst)• Tags flow with data• Refinement relations

– Are temporal specifications of data correctness– Use tags to locate correct value of data in

history

Note, we sometimes have to prove equality of tags to show correct data flow

Page 20: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Tags for instruction path

Decode

Queue

0

15I$

Align

Bus

Intf

Mem

8

4

PC PC

Fold

bytes insts

byte history tag

inst history tag

equality proof

++ +

+ incremented tagderived tag

==

=

Page 21: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Alignment between histories

• Comparing tags into byte and inst histories– record byte history position of each inst

...

Inst history

...

Byte history

Page 22: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Dealing with Exceptions

• Exceptions (e.g., branch mispredictions)– pipeline may be executing incorrect instructions– incorrect instructions must be flushed

• Specification strategy– Define tag “max”

• latest instruction correctly fetched

– Data with tag after “max” is unspecified

...

History

maxdata correct data unspecified

Page 23: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Summary of approach

• Strategy– Reference model/ Histories/ Tags

• Localization of verification– Model checking can be localized to very small

scale.– State explosion is not a problem.

Page 24: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Problems

Page 25: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Accidents happen to words

• Verification depends strongly on abstraction of data types.– Use uninterpreted types and functions.– 32-bit word might be abstracted to:

{ a, b, ~ }

where a and b are parameters of a property.

• Problem:– In RTL descriptions, words are often arbitrarily

broken into bits and reassembled.

Page 26: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Example accident

• 8-bit register implemented in cells:module reg8(clk,inp,out); input clk, inp[7:0]; output out[7:0]; reg1 cell0(clk,inp[0],out[0]); ... reg1 cell7(clk,inp[7],out[7]);endmodule

The state is actually held in bits. How do we abstract the state?

Page 27: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Example Accident

• Verilog can’t make 2-D arrays!module foo(bits,...); input bits[63:0]; byte0 = bits[7:0]; ... byte7 = bits[63:56];...

Instead of an array of bytes, we get 64 bits!

Page 28: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

A pragmatic approach

• If possible, verify property at bit level– Words must not index large arrays– Can use “bit slicing”

• Else, use two-level approach– Make intermediate model at word level– Verify properties using abstractions– Verify intermediate model at bit level

This avoids re-modeling the entire design usinguninterpreted types and functions.

Page 29: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Bit-field abstractions• Words are often divided into fields

• Typical abstraction– property has parameters t ($ Tag) and a ($ Addr)

031

$Tag $ Addr $ Off

414

031

{t,~} {a,~} {0..15}

414

Page 30: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

But accidents happen...

• Adresses of many different bit lengths occur

31$Tag $ Addr

414Cache line

031$Tag $ Addr $ Off

414

331$Tag $ Addr

414Half cache line

231$Tag $ Addr

414Word

Byte

$ Addr414

Cache location

Since types are not structured, how does a tool know howto divide and abstract these bit vectors?

Page 31: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Manual approach

• Re-model using structured types– i.e., instead of a bit vector, use:struct { tag : $TAG; addr : $ADDR; offset : array 3..0 of boolean;}

• Prove model correct at bit level• Prove property using type-based

abstractions– examples: cache contents correctness, aligner

output, etc...

Page 32: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Mapping between representations

• Sometimes need to translate between representations with uninterpreted functions– example:

031

$Tag $ Addr $ Off

414

031

$Address

ftfa fo finv

(Must manually instantiate injectiveness axiom)

Page 33: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

What’s needed?

• Ability to abstract any bit-field of a word– conceptually straightforward

• Some heuristic method of grouping bits together and assigning them types?– less obvious

Essentially, we need to be able to reverse-engineera bit-level design into a structured design.

Page 34: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Incoherence

• Few processors implement ISA precisely– makes writing a specification difficult

• Example: three incoherent caches in PicoJava– Instruction (I)– Data (D)– Stack (S)

• How to handle mismatch between ISA and Impl?

Page 35: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Solution (?)

• Mark every address as valid/invalid for I,D,S

• Example:– I becomes valid when I$ line explicitly flushed– I becomes invalid when location written as data

• Assume program never reads invalid addresses

PC

SP

PSRMem

IDS

Problem: Pipe delay means address is readable unknownnumber of clock cycles after flush instruction (???)

Page 36: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Accidental correctness

• Example:– decode not one-hot until

first queue load (!)– but, in PSR, Fold unit not

enabled at reset– one instruction required

to enable Fold unit– hence one-hot when Fold

unit enabled!

Queue

0

15

PC

Fold

bytes insts

Decode must beone-hot here

Note, local property (one-hotness) depends on far away logic(PSR, integer unit, etc...). This is not written anywherebecause no one actually knows why circuit works!

Page 37: Verifying a Commercial Microprocessor Design at the RTL level Ken McMillan Cadence Berkeley Labs mcmillan@cadence.com

Conclusions (?)

• Compositional verification of real processors at RTL level is possible.– Reference model/ Histories/ Tags

• Several aspects of typical RTL descriptions make it much more difficult:– Bit-level representation of words– Lack of structured data types– Accidental correctness

Design for formal verification could largely correctthese problems.