today s goal
play

Todays Goal See whats inside Airac V Airac V s Design Overview - PowerPoint PPT Presentation

Airac V s Design 1 Jaeho Shin netj@ropas.snu.ac.kr ROPAS Show&Tell 2005-12-02 1 Many design choices originate from heavy discussions with Jaehwang Kim. Airac V s Design Todays Goal See whats inside Airac V Airac V s


  1. Airac V ’s Design 1 Jaeho Shin � netj@ropas.snu.ac.kr � ROPAS Show&Tell 2005-12-02 1 Many design choices originate from heavy discussions with Jaehwang Kim.

  2. Airac V ’s Design Today’s Goal ◮ See what’s inside Airac V

  3. Airac V ’s Design Overview Program as Graph Control Flow Graph Commands Concrete World Concrete Domain Concrete Semantics Abstract World Abstract Domain Trace Abstraction Data State Abstraction Partitioning Abstract Semantics

  4. Airac V ’s Design Program as Graph Now, Program as Graph Control Flow Graph Commands Concrete World Concrete Domain Concrete Semantics Abstract World Abstract Domain Trace Abstraction Data State Abstraction Partitioning Abstract Semantics

  5. Airac V ’s Design Program as Graph Control Flow Graph Control Flow Graph ◮ A directed, connected graph ◮ Node = basic block ◮ Flow edge ◮ Return edge

  6. Airac V ’s Design Program as Graph Control Flow Graph Why CFG? ◮ Inevitable due to goto s (need to know the target of them anyway) ◮ Natural to treat programs as graphs

  7. Airac V ’s Design Program as Graph Control Flow Graph Node ◮ Three types n : Node = n | ENTRY | EXIT n ◮ Has associated basic block blkof : Node → Block

  8. Airac V ’s Design Program as Graph Control Flow Graph Flow Edges ◮ Successors = set of nodes control flow to Node → 2 Node succ : ◮ Predecessors = set of nodes control flow from Node → 2 Node pred :

  9. Airac V ’s Design Program as Graph Control Flow Graph Basic Block ◮ Two types: call or commands blk : Block CALL | cmd ∗ ::= blk

  10. Airac V ’s Design Program as Graph Control Flow Graph ENTRY and EXIT ◮ One CFG for each procedure ◮ Single ENTRY and single EXIT for a CFG ◮ ENTRY = where procedure begins ◮ EXIT = where procedure ends ◮ C program = set of CFGs

  11. Airac V ’s Design Program as Graph Control Flow Graph Calls and Returns ◮ Call node = whose basic block is CALL ◮ Two edges for a procedure call ◮ call node to procedure’s ENTRY ◮ procedure’s EXIT to return node ◮ Return edge = return node for a call : Node → Node rtrn

  12. Airac V ’s Design Program as Graph Commands Now, Program as Graph Control Flow Graph Commands Concrete World Concrete Domain Concrete Semantics Abstract World Abstract Domain Trace Abstraction Data State Abstraction Partitioning Abstract Semantics

  13. Airac V ’s Design Program as Graph Commands Commands cmd ∗ | CALL block blk ::= ::= command cmd SET( lv , e ) | ALLOC( lv , a ) | ASSERT( r ) | ESCAPE( e )

  14. Airac V ’s Design Program as Graph Commands Expressesions e ::= n | e + e | lv | & lv expression x | * e | e [ e ] | e . x lvalue lv ::= [ e ] | { x ∗ } a ::= allocation e = e | e < e | ! r relation r ::=

  15. Airac V ’s Design Concrete World Now, Program as Graph Control Flow Graph Commands Concrete World Concrete Domain Concrete Semantics Abstract World Abstract Domain Trace Abstraction Data State Abstraction Partitioning Abstract Semantics

  16. Airac V ’s Design Concrete World Concrete Domain State = Pos × Mem × Alloc State

  17. Airac V ’s Design Concrete World Concrete Domain Control State = Ctx × Node Pos ( ProcId × RtPos × EscAddr ) ∗ Ctx = = RtPos Pos EscAddr = Addr

  18. Airac V ’s Design Concrete World Concrete Domain Data State Addr fin Mem = → Val = Region × SubAddr + Ctx × Var Addr SubAddr = Index + FieldName Val = Num + Addr + Proc ProcId × Var ∗ Proc =

  19. Airac V ’s Design Concrete World Concrete Domain Allocation State Region fin = → Info Alloc Region = Ctx × History × AllocSite Pos ∗ History = AllocSite = Pos Size + FieldName ∗ Info = = Size Z

  20. Airac V ’s Design Concrete World Concrete Semantics Now, Program as Graph Control Flow Graph Commands Concrete World Concrete Domain Concrete Semantics Abstract World Abstract Domain Trace Abstraction Data State Abstraction Partitioning Abstract Semantics

  21. Airac V ’s Design Concrete World Concrete Semantics Semantics as Trace ◮ Standard semantics State ∗ = Trace ◮ Collecting semantics 2 Trace

  22. Airac V ’s Design Concrete World Concrete Semantics Transition State after a single transition by � : Trace τ σ, σ ′ : State σ ′ τσ � · · · ◮ Transition depends on the Node of Pos ◮ Node of block is either cmd ∗ or CALL

  23. Airac V ’s Design Concrete World Concrete Semantics Reaction R cmd ∗ ( Mem × Alloc ) → ( Mem × Alloc ) : · · ·

  24. Airac V ’s Design Concrete World Concrete Semantics Values V e : Mem → Val V n m = n V e 1 + e 2 m = ( V e 1 m + V e 2 m ) V lv m m ( L lv m ) = V & lv m = L lv m

  25. Airac V ’s Design Concrete World Concrete Semantics Addresses L lv Mem → Addr : L x m = ( ctx , x ) L * e m = V e m L e 1 [ e 2 ] m = ( a, i + ( V e 2 m )) where ( a, i ) = V e 1 m L e . x m = ( a, x ) where ( a, 0) = V e m

  26. Airac V ’s Design Concrete World Concrete Semantics Relations P r Mem → { true , false } : · · ·

  27. Airac V ’s Design Abstract World Now, Program as Graph Control Flow Graph Commands Concrete World Concrete Domain Concrete Semantics Abstract World Abstract Domain Trace Abstraction Data State Abstraction Partitioning Abstract Semantics

  28. Airac V ’s Design Abstract World Abstract Domain Control State 2 ˆ Pos × ˆ ˆ Pos Graph = ˆ ˆ Pos = Ctx × Node ˆ = Ctx ProcId 2 Trace → ˆ : α Flow Graph Pos → ˆ pp : Pos Ctx → ˆ cp : Ctx

  29. Airac V ’s Design Abstract World Abstract Domain Data State Pos fin ˆ ˆ ˆ Table = → Mem Addr fin ˆ ˆ → ˆ Mem = Val 2 Trace → ˆ α Data : Table 2 Mem → ˆ : Mem α Mem

  30. Airac V ’s Design Abstract World Abstract Domain Abstract Values ˆ ˆ ˆ ˆ Z × Addr × Val = Proc ˆ SubAddr + ˆ ˆ ˆ Region × Ctx × Var = 2 Addr ˆ ˆ SubAddr = Index + FieldName ˆ 2 Proc Proc = 2 Val → ˆ : Val α Val 2 Addr → ˆ : α Addr Addr 2 Num → ˆ α Num : Z

  31. Airac V ’s Design Abstract World Abstract Domain Allocation State ˆ Region fin ˆ ˆ = → Alloc Info ˆ Size × 2 FieldName ∗ ˆ Info = ˆ ˆ Region = Ctx × AllocSite 2 Trace → ˆ : Alloc α Alloc 2 Info → ˆ : α Info Info

  32. Airac V ’s Design Abstract World Abstract Domain Escape Addresses Ctx fin ˆ ˆ ˆ Dump = → Addr 2 Trace → ˆ : Dump α Dump

  33. Airac V ’s Design Abstract World Trace Abstraction Now, Program as Graph Control Flow Graph Commands Concrete World Concrete Domain Concrete Semantics Abstract World Abstract Domain Trace Abstraction Data State Abstraction Partitioning Abstract Semantics

  34. Airac V ’s Design Abstract World Trace Abstraction Trace Abstraction Four components of abstract semantics ˆ ˆ ˆ ˆ Graph × Table × Alloc × ( Dump ) 2 Trace → ( ˆ ˆ ˆ ˆ Graph × Table × Alloc × α : Dump ) = � α Flow , α Data , α Alloc , α Dump � α

  35. Airac V ’s Design Abstract World Trace Abstraction Control State Abstraction 2 Trace → ˆ : α Flow Graph = { (( cp c 1 , n 1 ) , ( cp c 2 , n 2 )) | α Flow T ( · · · , ( p 1 , m 1 , a 1 ) , ( p 2 , m 2 , a 2 ) , · · · ) ∈ T, ( c 1 , n 1 ) = p 1 , ( c 2 , n 2 ) = p 2 }

  36. � � � Airac V ’s Design Abstract World Trace Abstraction Slicing Traces 2 Trace → 2 Pos × Mem × Alloc states : id � 2 State ∗ 2 Trace S ◦{ slices } states 2 Pos × Mem × Alloc 2 State id

  37. � � � � Airac V ’s Design Abstract World Trace Abstraction Allocation State Abstraction 2 Trace → ˆ α Alloc : Alloc { π 3 }◦ states � 2 Alloc id � 2 Region → Info 2 Trace merge Region → 2 Info α Alloc α → ( rp ,α Info ) ˆ ˆ ˆ Region → Info Alloc id

  38. � � � � Airac V ’s Design Abstract World Trace Abstraction Allocation Info Abstraction 2 Info → ˆ : Alloc α Info id � 2 Size + FieldName ∗ 2 Info split 2 Size × 2 FieldName ∗ α Info � � α Num , id � � ˆ ˆ Size × 2 FieldName ∗ Alloc id

  39. � � � � � � Airac V ’s Design Abstract World Trace Abstraction Dump Abstraction 2 Trace → ˆ : α Dump Dump { π 1 }◦ states id � 2 Pos � 2 Ctx × Node 2 Trace { π 1 } 2 Ctx × Ctx 2 Ctx { π 1 , 1 } index α Dump Ctx → 2 Ctx α → ( cp ,α EscAddr ◦ S ) ˆ ˆ ˆ Dump Ctx → Addr id

  40. � � � � Airac V ’s Design Abstract World Trace Abstraction Escape Address Abstraction id � 2 ( ProcId × RtPos × EscAddr ) ∗ 2 Ctx S ◦{ slices } 2 ProcId × RtPos × EscAddr α EscAddr { π 3 } ˆ 2 EscAddr Addr α Addr

  41. Airac V ’s Design Abstract World Data State Abstraction Now, Program as Graph Control Flow Graph Commands Concrete World Concrete Domain Concrete Semantics Abstract World Abstract Domain Trace Abstraction Data State Abstraction Partitioning Abstract Semantics

  42. � � � � Airac V ’s Design Abstract World Data State Abstraction Data State Abstraction 2 Trace → ˆ α Data : Table { π 1 , 2 }◦ states � 2 Pos × Mem 2 Trace index Pos → 2 Mem α Data α → ( pp ,α Mem ◦ S ) ˆ ˆ ˆ Table Pos → Mem id

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend