tiddle
play

Tiddle: A Trace Description Language for Generating Concurrent - PowerPoint PPT Presentation

Tiddle: A Trace Description Language for Generating Concurrent Benchmarks to Test Dynamic Analyses Caitlin Sadowski Jaeheon Yi July 20, 2009 University of California at Santa Cruz Monday, July 20, 2009 1 Some


  1. Tiddle: A Trace Description Language for Generating Concurrent Benchmarks to Test Dynamic Analyses Caitlin Sadowski Jaeheon Yi July 20, 2009 University of California at Santa Cruz Monday, July 20, 2009 1

  2. Some Dynamic Analyses for Concurrency Happens Happens • Data race Eraser Eraser DJIT+ DJIT+ FastTrack FastTrack Goldilocks Goldilocks Before Before Block- SideTrack SideTrack Velodrome Velodrome Based • Atomicity Atom Commit- Atomizer Atomizer Node Fuzzer • Deterministic Parallelism SingleTrack SingleTrack Burnim09 Deadlock • Deadlock GoodLock Pulse Agarwal06 Fuzzer Monday, July 20, 2009 2

  3. RoadRunner JVM events Instrumented bytecode T1: begin_atomic T2: acquire(lock3) T2: read(x,5) T1: write(y,3) T1: end_atomic T2: release(lock3) Atomicity SideTrack RoadRunner violations Instrumenter Java bytecode Monday, July 20, 2009 3

  4. RoadRunner MyTool.java void preWrite(x){ ... Instrumented } Thread 1 Thread 1 ... void postWrite(x){ ... preWrite(x) ... x = 3; x = 3; } ... postWrite(x) ... Monday, July 20, 2009 4

  5. Thread t1 = new Thread(){ Happens-Before (HB) Race void run(){ x = 1; }}; Thread 1 Thread 2 Thread t2 = new Thread(){ void run(){ x = 2; write x }}; static int x; write x public static void main(){ t1.start(); t2.start(); } Monday, July 20, 2009 5

  6. HB Race No HB Race Thread 1 Thread 1 Thread 2 Thread 2 sync m { } sync m { } write x write x sync m { } sync m { } sync m { } write x write x sync m { } sync m { } sync m { } Monday, July 20, 2009 6

  7. What about adding yields? HB Race • ad hoc Thread 1 Thread 2 • no guarantees sync m { } write x • can be complex yield() sync m { } write x • difficult to maintain sync m { } sync m { } ... So how do we write traces to test tools? Monday, July 20, 2009 7

  8. Thinking up Test Cases Monday, July 20, 2009 8

  9. Tiddle: a domain specific language for describing traces trace ::= op* op ::= rd Tid Var (Val) | wr Tid Var (Val) | acq Tid Lock | rel Tid Lock | fork Tid Tid | join Tid Tid | beg Tid Label | end Tid Label Tid ::= Int Var ::= String Val ::= Int Label ::= String Monday, July 20, 2009 9

  10. quick way of testing dynamic analysis • Race condition: //Generated by Tiddle, UC Santa Cruz package feasibleTests; import java.util.concurrent.BrokenBarrierException; import java.util.concurrent.CyclicBarrier; public class RaceCondition { static int x = 0; static CyclicBarrier cb = new CyclicBarrier(2); static CyclicBarrier cc = new CyclicBarrier(2); static int counter = 0; static int numThreads = 2; acq 1 m static public void await(CyclicBarrier c) throws BrokenBarrierException, InterruptedException { c.await(); } static int getCounter() { return counter++; } wr 1 x public static void main(String[] args) { final Thread t2 = new Thread() { public void run() { try { rel 1 m int _z = 0; await(cc); await(cb); await(cc); x = getCounter(); await(cb); } wr 2 x catch (InterruptedException e) { e.printStackTrace(); } catch (BrokenBarrierException e) { e.printStackTrace(); } } }; final Thread t1 = new Thread() { public void run() { try { int _z = 0; await(cc); _z = x; await(cb); await(cc); await(cb); } catch (InterruptedException e) { e.printStackTrace(); } catch (BrokenBarrierException e) { e.printStackTrace(); } } }; t1.start(); t2.start(); } } Monday, July 20, 2009 10

  11. public class SimpleRace { static int x = 0; static Object m = new Object(); static CyclicBarrier cb = new CyclicBarrier(2); static public void await(CyclicBarrier c) throws BrokenBarrierException, InterruptedException { c.await(); } acq 1 m wr 1 x public static void main(String[] args) { rel 1 m final Thread t1 = new Thread() { wr 2 x public void run() { ... } }; final Thread t2 = new Thread() { public void run() { ... } }; t1.start(); t2.start(); } } Monday, July 20, 2009 11

  12. Thread 1 Thread 2 public void run() { public void run() { try { try { synchronized(m) { 1 await(cb); await(cb); 2 x = 1; acq 1 m await(cb); 1 await(cb); 3 wr 1 x } 2 3 rel 1 m await(cb); await(cb); 4 4 wr 2 x x = 0; await(cb); await(cb); } catch (...) { ... } catch (...) { ... } } } } }; }; Monday, July 20, 2009 12

  13. Unit Testing for Dynamic Analysis • Easy to describe test case as a trace • Compile trace to multithreaded test • barriers for determinism • avoid boilerplate and complexity Monday, July 20, 2009 13

  14. Some Dynamic Analyses for Concurrency Happens Happens • Data race Eraser Eraser DJIT+ DJIT+ FastTrack FastTrack Goldilocks Goldilocks Before Before Block- SideTrack SideTrack Velodrome Velodrome Based • Atomicity Atom Commit- Atomizer Atomizer Node Fuzzer • Deterministic Parallelism SingleTrack SingleTrack Burnim09 Deadlock • Deadlock GoodLock Pulse Agarwal06 Fuzzer Monday, July 20, 2009 14

  15. Atomicity The effect of an atomic code block can be considered in isolation from the rest of a running program. • enables sequential reasoning • atomicity violations often represent synchronization errors • most methods are atomic Monday, July 20, 2009 15

  16. Thread 1 Thread 1 Thread 2 atomic{ synchronized(n){ acquire(m) tmp = bal; newVar = 0 } synchronized(n){ begin bal = tmp + 1; acquire(n) } t1 = bal } release(n) acquire(n) Thread 2 bal = t + 1 synchronized(m){ release(n) newVar = 0; end } release(m) Serial Trace: Each atomic block executes contiguously Monday, July 20, 2009 16

  17. Thread 1 Thread 1 Thread 2 atomic{ synchronized(n){ begin tmp = bal; acquire(n) } acquire(m) synchronized(n){ newVar = 0 bal = tmp + 1; } t1 = bal } release(n) release(m) Thread 2 acquire(n) synchronized(m){ bal = t + 1 newVar = 0; release(n) } end Atomicity = Serializability Monday, July 20, 2009 17

  18. Thread 1 Thread 1 Thread 2 atomic{ synchronized(n){ begin tmp = bal; acquire(n) } t1 = bal synchronized(n){ release(n) bal = tmp + 1; } acquire(n) } bal = 0 release(n) Thread 2 acquire(n) synchronized( n ){ bal = t + 1 bal = 0; release(n) } end Monday, July 20, 2009 18

  19. Thread 1 Thread 1 Thread 2 atomic{ synchronized(n){ begin tmp = bal; acquire(n) } t1 = bal synchronized(n){ release(n) bal = tmp + 1; } acquire(n) } bal = 0 release(n) Thread 2 acquire(n) synchronized( n ){ bal = t + 1 bal = 0; release(n) } end Monday, July 20, 2009 19

  20. quick way of testing dynamic analysis • HB Atomicity Violation: //Generated by Tiddle, UC Santa Cruz package feasibleTests; import java.util.concurrent.BrokenBarrierException; import java.util.concurrent.CyclicBarrier; public class AtomicityViolation { static int x = 0; static CyclicBarrier cb = new CyclicBarrier(2); static CyclicBarrier cc = new CyclicBarrier(2); static int counter = 0; static int numThreads = 2; static public void await(CyclicBarrier c) throws BrokenBarrierException, InterruptedException { c.await(); } static int getCounter() { beg 1 b return counter++; } static void b() throws BrokenBarrierException, InterruptedException { await(cb); await(cc); x = getCounter(); wr 1 x await(cb); await(cc); await(cb); await(cc); _z = x; await(cb); await(cc); wr 2 x } public static void main(String[] args) { final Thread t2 = new Thread() { public void run() { try { rd 1 x int _z = 0; await(cc); await(cb); await(cc); await(cb); await(cc); x = getCounter(); end 1 b await(cb); await(cc); await(cb); await(cc); await(cb); } catch (InterruptedException e) { e.printStackTrace(); } catch (BrokenBarrierException e) { e.printStackTrace(); } } }; final Thread t1 = new Thread() { public void run() { try { int _z = 0; await(cc); b(); await(cb); } catch (InterruptedException e) { e.printStackTrace(); } catch (BrokenBarrierException e) { e.printStackTrace(); } } }; t1.start(); t2.start(); } } Monday, July 20, 2009 20

  21. quick way of testing dynamic analysis • HB Atomicity Violation: beg 1 b acq 1 m rel 1 m acq 2 m rel 2 m acq 1 m rel 1 m end 1 b Monday, July 20, 2009 21

  22. quick way of testing dynamic analysis • Serial trace beg 1 b • Feasibly non-serializable acq 1 m rel 1 m acq 1 m rel 1 m end 1 b acq 2 m rel 2 m Monday, July 20, 2009 22

  23. Tiddle Compiler rd 1 x class Foo { wr 2 y ... rd 1 y } Lexer (alex) PrettyPrinters PrettyPrinters Parser Translation PrettyPrinters (HughesPJ) (HughesPJ) (happy) to Java AST (HughesPJ) Monday, July 20, 2009 23

  24. Equivalent Traces • Equivalent modulo happens-before • Different total orderings of same HB partial ordering • Analyses should behave same way • Regression testing for analyses Monday, July 20, 2009 24

  25. Make Tiddle Traces Write Up Work Fix Analysis Rules YES NO NO Proof Checks? Pass Traces? NO YES Develop Lots of Tests? YES Formal Proof Monday, July 20, 2009 25

  26. Next Steps • Support for other Java features • volatiles, wait/notify, etc. • Bug capture • Specification language Monday, July 20, 2009 26

  27. Not a Panacea • Helps you with the known unknowns • This won’t help you find the bugs you’re not expecting • Doesn’t help you with the unknown unknowns Monday, July 20, 2009 27

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