Presentation is loading. Please wait.

Presentation is loading. Please wait.

Automatic Synthesis and Code-Generation of Real- Time Embedded Software 即時嵌入式軟體之自動合成 及程式碼之產生 熊博安 國立中正大學資訊工程學系 民國九十一年四月二十六日.

Similar presentations


Presentation on theme: "Automatic Synthesis and Code-Generation of Real- Time Embedded Software 即時嵌入式軟體之自動合成 及程式碼之產生 熊博安 國立中正大學資訊工程學系 民國九十一年四月二十六日."— Presentation transcript:

1 Automatic Synthesis and Code-Generation of Real- Time Embedded Software 即時嵌入式軟體之自動合成 及程式碼之產生 熊博安 國立中正大學資訊工程學系 民國九十一年四月二十六日

2 2002/04/26 2 What will I talk about ? What is a real-time system? What is an embedded system? Why software? Why synthesis? What is software synthesis & code generation? Real-world applications? Future work?

3 2002/04/26 3 What is a REAL-TIME SYSTEM? Timely Response Predictable Response System Correctness: Timing (period, deadlines, etc.) Function Constraints: Hard (meet ALL deadlines) Soft (miss SOME deadlines)

4 2002/04/26 4 Examples of Real-Time Systems multimedia servers automobiles air crafts telecommunications

5 2002/04/26 5 What is an EMBEDDED SYSTEM? Installed in a larger system Dedicated task Small Memory Space (200~400 KB) Low Processing Power (100~200 MHz ) Unstable Environment (mobile, …) Reactive Real-Time

6 2002/04/26 6 Embedded Systems Example medical instrumentshome appliancesoffice equipments space crafts research lab equipments factory automation

7 2002/04/26 7 Embedded System Architecture

8 2002/04/26 8 Why SOFTWARE? more than 70% software in many real- time embedded systems!!! software is more flexible and easily reconfigurable, hence more errors!!! real-time  need for temporally correct software embedded  need for small, efficient software

9 2002/04/26 9 Why SYNTHESIS? More software  high complexity  need for automatic design (synthesis) Eliminate human and logical errors Relatively immature synthesis techniques for software Code optimizations size efficiency Automatic code generation

10 2002/04/26 10

11 2002/04/26 11

12 2002/04/26 12

13 2002/04/26 13 What is software synthesis & code generation? Model for real-time embedded systems? Set of concurrent tasks with memory and timing constraints! How to feasibly execute in an embedded system? (e.g. a 100MHz CPU, 256 KB RAM) Task scheduling! How to generate code? Map schedules to software code! Code optimizations? Minimize size, maximize efficiency!

14 2002/04/26 14 Synthesis Issues and Solutions 2. Real-Time Constraints 1. Bounded Memory Execution Extended Quasi- Static Scheduling (EQSS) Proposed Solutions: Real-Time Scheduling (RTS) Hard Real-Time Firing Interval Bound Synthesis (FIBS) Soft Real-Time

15 2002/04/26 15 Real-Time Embedded System Model Time Complex-Choice Petri Nets (TCCPN)

16 2002/04/26 16 Synthesis Algorithm (Hard RTES) Synthesize_Hard_RTES(S, ,   EQSS = Ext_Quasi_Static_Schedule(S,  if (EQSS == NULL) return MemOverFlow; RTS = Real_Time_Sched(S, QSS,  if (RTS == NULL) return RTS_Error; else Code = Code_Gen(S, QSS, RTS); return Code; 

17 2002/04/26 17 Synthesis Algorithm (Soft RTES) Synthesize_Soft_RTES(S, ,   EQSS = Ext_Quasi_Static_Schedule(S,  if (EQSS == NULL) return MemOverFlow; FIB = Firing_Interv_Synth(S, QSS,  ); if (FIB == NULL) return FIB_Error; else Code = Code_Gen(S, QSS, FIB); return Code; 

18 2002/04/26 18 Quasi-Static Scheduling TFCPN net decomposition Conflict-Free Components Quasi-Static Schedules Finite Complete Cycle Deadlock Free Satisfy Memory Reqts Memory OK!!!

19 2002/04/26 19 Exclusion Set Extended Quasi-Static Scheduling TransitionExclusive Transitions t4 t5 t4, t6 t6 t5, t7 t7 t6 t1 t2 t3 t4 t5 t6 t7 p1 p2 p3 Exclusion Table TCCPN

20 2002/04/26 20 Decomposition of Exclusion Set t4 t5 t6 t7 t4 t5 t6 t7 t4 t5 t6 t7 t4 t5 t6 t7 t4 t5 t6 t7 t1 t2 t3 t4 t5 t6 t7 p1 p2 p3 TransitionExclusive Trans t4 t5 t4, t6 t6 t5, t7 t7 t6

21 2002/04/26 21 Reduction of Decomposed Exclusion Set t4 t5 t6 t7 t4 t5 t6 t7 t4 t5 t6 t7 t4 t5 t6 t7 t4 t5 t6 t7 t4 t5 t6 t7 t4 t5 t6 t7 Reduce

22 2002/04/26 22 EQSS Schedules t1 t4 p1 t2 t3 t6 p2 p3 t1 t2 t5 p1 p2 t3 t7 p3 f(s) = (t1 t2 t3 t4 t6) f(s) = (t1 t2 t3 t5 t5 t7)

23 2002/04/26 23 Real-Time Scheduling Single Processor Worst Case Timing Analysis: Rate Monotonic (RM) fixed priority small period  high priority Earliest Deadline First (EDF) dynamic priority early deadline  high priority

24 2002/04/26 24 Firing Interval Bound Synthesis 2 issues in the synthesis of SOFT real-time embedded systems: Synchronization Wait: (for completion of other tasks) Real-Time Specification: (complete before deadlines) Proposed Solutions: Postpone Release Time:    +  w,  w > 0 Advance Finish Time:      n,  n >0

25 2002/04/26 25 Code Generation generate_code(S, QSS 1, QSS 2, …, QSS n, RTS) { for i = 1, …, n { D i = create_process(QSS i ); for j = 1, …, Indep_Tasks(A i ) { d ij = create_task(QSS i ); generate_task_code(d ij ); add_task(d ij, D i ); } } create_main(); output “ for(i=0, i<length(RTS); i++) { ”; for k = 1, …, RTS output_code(D ik ); output “ } ”; }

26 2002/04/26 26 Optimal Code Hierarchy Main Program Process i Task 1Task 2Task k … TCCPN # Tasks = # Independent Source Transitions

27 2002/04/26 27 Illustration Example S = {F 1, F 2 }

28 2002/04/26 28 Conflict Free Components for F 1 v 12 = (t 11, t 13, t 15, t 15 ) 13   (v 12 )  26 Quasi-Static Scheduling v 11 = (t 11, t 12, t 11, t 12, t 14 ) 11   (v 11 )  22

29 2002/04/26 29 Conflict Free Components for F 2 v 21 = (t 21, t 22, 2t 24, 4t 26, t 28, t 29, t 26 ) 31   (v 21 )  68 v 22 = (t 21, t 23, t 25, 2t 27, t 28, t 29, t 26 ) 15   (v 22 )  36 Quasi-Static Scheduling

30 2002/04/26 30 Real-Time Scheduling TaskPriority ii  max (  1 )  max (  2 ) T1T1 11002648 T2T2 211068 SchedulableYesNo AlgorithmsRM, EDF  1 = {v 11, v 12 }  2 = {v 12, t 11 t 12 k  v 12 t 11 t 12 t 14, k  1}

31 2002/04/26 31 ATM Virtual Private Network Server Example CLASSIFIER CONGESTION CONTROL (MSD) SUPERVISOR WFQ SCHEDULER ATM IN (155 Mbit/s) ATM OUT (155 Mbit/s) DISCARDED CELLS

32 2002/04/26 32 ATM Server Example

33 2002/04/26 33 14 Schedules of MSD in ATM

34 2002/04/26 34 0 MSD 1 CID 2 PTI 3 t1 4 READ_STATE_VCC 7 READ_OUT_QUID 10 t2 11 t3 t4 t5 12 t6 UPDATE_STATE_INIT 13 18 12 READ_MAX_QLEN GTH 15 CHECK_QLENGTH1 18 t7 19 t6 UPDATE_STATE_INIT 12 READ_THRESHOLD 15 CHECK_QLENGTH2 18 t8 19 t10 t9 PU SH COMPUTE_OUT_TIME t12 *SCHEDULE _WFQ t10 t9 PU SH COMPUTE_OUT_TIME t12 *SCHEDULE _WFQ PU SH t11 UPDATE_STATE_REJ PU SH *SCHEDULE _WFQ COMPUTE_OUT_TIME t12 *SCHEDULE _WFQ COMPUTE_OUT_TIME t12 *SCHEDULE _WFQ UPDATE_STA TE_ACC t11 UPDATE_S TATE_REJ t6 UPDATE_STATE_INIT 20 21 21 30 431 52 20 21 26 30 36 46 37 58 25 26 31 35 41 51 42 63 25 26 26 35 4 36 57 Schedule Results: 49 markings 14 schedules 63 instructions 12 Kbytes Memory

35 2002/04/26 35 Master/Slave Role Switch in the Bluetooth Wireless Comm Protocol In Bluetooth protocol: Piconet = 1 master + 7 active slaves Frequently, master and slave switch roles new active slave joining piconet overtaking of master duties creation of a new piconet with old master as slave Model 2 TCCPN for Host A and Host B 2 TCCPN for Host Control / Link Manager

36 2002/04/26 36 TCCPNs for Host A and Host B

37 2002/04/26 37 TCCPN for Host Control / Link Manager of Device A

38 2002/04/26 38 TCCPN for Host Control / Link Manager of Device B

39 2002/04/26 39 Synthesis Results for M/S switch CCPN#T#P#SSchedules Host A752, HC/LM A21156,,,,, Host B752Same as for Host A HC/LM B21156Same as for HC/LM A

40 2002/04/26 40 Mnemonics for Host A Transitions t_0: Initialize, t_1: ACL_Connection, t_2: Send HA2LA_HCI_Switch_Role, t_3: t4, t_4: Receive LA2HA_HCI_Command_status_event, t_5: Receive LA2HA_HCI_Role_change_event, t_6: End.

41 2002/04/26 41 Mnemonics for HC/LM A Transitions t_0: Initialize, t_1: ACL_Connection, t_2: Receive HA2LA_HCI_Switch_Role, t_3: Receive N2LA_LMP_Switch_reg, t_4: Send LA2HA_HCI_Command_States_event, t_5: Receive N2LA_LMP_Slot_offset_sub1, t_6: Checking NetWork, t_7: Send LA2N_LMP_slot_offset_sub2, t_8: Send LA2N_LMP_not_accepted, t_9: Send LA2N_LMP_accepted, t_10: End Checking Network, t_11: Send LA2N_LMP_Switch_req, t_12: Receive N2LA_LMP_not_accepted, t_13: Receive N2LA_LMP_accepted, t_14: End, t_15: Send TDD_SwitchA, t_16: Receive BA2LA_TimeOut1, t_17: Receive BA2LA_Role_SwitchA_Success, t_18: End, t_19: Send LA2HA_HCI_Role_Change_event, t_20: End

42 2002/04/26 42 Conclusions Software needs to be synthesized automatically because it is getting more and more complex! Hard RTES Synthesis Method = EQSS + RTS + Code-Generation Soft RTES Synthesis Method = EQSS + FIBS + Code-Generation ATM VPN Server example shows feasibility of our approach

43 2002/04/26 43 Current and Future Work Integrate Real-Time Scheduling & EQSS A general Petri Net system model Java Implementation: install into embedded systems such as PDA for dynamic code change and management by user (web computing) C Code Generation: for embedding into prototyping systems such as SoC design and verification platform

44 2002/04/26 44 References (EQSS, FIBS, etc.) All papers are downloadable at http://www.cs.ccu.edu.tw/~pahsiung/publications/publications.html F.-S. Su and P.-A. Hsiung, “Extended Quasi-Static Scheduling for Formal Synthesis and Code Generation of Embedded Software,” Proc. of the 10th IEEE/ACM International Symposium on Hardware/Software Codesign, (CODES'02), Colorado, USA, May 6-8, 2002 (accepted for presentation). P.-A. Hsiung, “Formal Synthesis and Control of Soft Embedded Real- Time Systems,” Proc. 21st IFIP WG 6.1 International Conference on Formal Techniques for Networked and Distributed Systems (FORTE'01), (Cheju Island, Korea), pp. 35-50, Kluwer Academic Publishers, August 2001. P.-A. Hsiung, "Formal Synthesis and Code Generation of Embedded Real-Time Software," Proc. ACM/IEEE 9th International Symposium on Hardware/Software Codesign (CODES'01), (Copenhagen, Denmark), pp. 208-213, ACM Press, New York, USA, April 2001.

45 2002/04/26 45 References (Time-Mem Sched.) P.-A. Hsiung and C.-H. Gau, “Formal Synthesis of Real-Time Embedded Software by Time-Memory Scheduling of Colored Time Petri Nets,” Proc. of the Workshop on Theory and Practice of Timed Systems (TPTS'2002, Grenoble, France), April 6-7, 2002. C.-H. Gau and P.-A. Hsiung, “Time-Memory Scheduling and Code Generation of Real-Time Embedded Software,” Proc. of the 8th International Conference on Real-Time Computing Systems and Applications (RTCSA'02, Tokyo, Japan), pp. 19-27, March 18-20, 2002.

46 2002/04/26 46 References (VERTAF) P.-A. Hsiung, T.-Y. Lee, W.-B. See, J.-M. Fu, and S.-J. Chen, "VERTAF: An Object-Oriented Application Framework for Embedded Real-Time Systems," Proc. of the 5th IEEE International Symposium on Object-Oriented Real-Time Distributed Computing (ISORC'2002, Washington, D.C., USA), April 29-May 1, 2002 (accepted for presentation). P.-A. Hsiung, W.-B. See, T.-Y. Lee, J.-M. Fu, and S.-J. Chen, "Formal Verification of Embedded Real-Time Software in Component-Based Application Frameworks," Proc. 8th Asia-Pacific Software Engineering Conference (APSEC'01), (Macau SAR, China), pp. 71-78, IEEE CS Press, December 2001. P.-A. Hsiung, F.-S. Su, C.-H. Gau, S.-Y. Jeng, and Y.-M. Chang, "Verifiable Embedded Real-Time Application Framework," Proc. IEEE International Real-Time Technology and Applications Symposium (RTAS'01), Work-In-Progress Session, (Taipei, Taiwan), pp. 109-110, IEEE Computer Society Press, May 2001.


Download ppt "Automatic Synthesis and Code-Generation of Real- Time Embedded Software 即時嵌入式軟體之自動合成 及程式碼之產生 熊博安 國立中正大學資訊工程學系 民國九十一年四月二十六日."

Similar presentations


Ads by Google