nvic.c.071i.devirt 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. Symbol table:
  2. NVIC_SetPriority/3 (NVIC_SetPriority) @06177620
  3. Type: function definition analyzed
  4. Visibility: externally_visible public
  5. References:
  6. Referring:
  7. Availability: available
  8. Function flags: count:1073741824 (estimated locally) body optimize_size
  9. Called by:
  10. Calls:
  11. NVIC_DisableIRQ/2 (NVIC_DisableIRQ) @06177d20
  12. Type: function definition analyzed
  13. Visibility: externally_visible public
  14. References:
  15. Referring:
  16. Availability: available
  17. Function flags: count:1073741824 (estimated locally) body optimize_size
  18. Called by:
  19. Calls:
  20. NVIC_EnableIRQ/1 (NVIC_EnableIRQ) @06177a80
  21. Type: function definition analyzed
  22. Visibility: externally_visible public
  23. References:
  24. Referring:
  25. Availability: available
  26. Function flags: count:1073741824 (estimated locally) body optimize_size
  27. Called by:
  28. Calls:
  29. NVIC_SetPriorityGrouping/0 (NVIC_SetPriorityGrouping) @061777e0
  30. Type: function definition analyzed
  31. Visibility: externally_visible public
  32. References:
  33. Referring:
  34. Availability: available
  35. Function flags: count:1073741824 (estimated locally) body optimize_size
  36. Called by:
  37. Calls:
  38. NVIC_SetPriority (uint8 IRQn, uint8 priority)
  39. {
  40. long unsigned int _1;
  41. long unsigned int _2;
  42. long unsigned int _3;
  43. unsigned char _4;
  44. <bb 2> [local count: 1073741824]:
  45. # DEBUG BEGIN_STMT
  46. # DEBUG shift => 4
  47. # DEBUG BEGIN_STMT
  48. _1 = (long unsigned int) priority_5(D);
  49. _2 = _1 << 4;
  50. _3 = (long unsigned int) IRQn_6(D);
  51. _4 = (unsigned char) _2;
  52. MEM[(struct S32_NVIC_Type *)3758153984B].IP[_3] ={v} _4;
  53. return;
  54. }
  55. NVIC_DisableIRQ (uint8 IRQn)
  56. {
  57. long unsigned int _1;
  58. unsigned char _2;
  59. unsigned char _3;
  60. long unsigned int _4;
  61. long unsigned int _5;
  62. <bb 2> [local count: 1073741824]:
  63. # DEBUG BEGIN_STMT
  64. _2 = IRQn_6(D) & 31;
  65. _1 = (long unsigned int) _2;
  66. _3 = IRQn_6(D) >> 5;
  67. _4 = (long unsigned int) _3;
  68. _5 = 1 << _1;
  69. MEM[(struct S32_NVIC_Type *)3758153984B].ICER[_4] ={v} _5;
  70. return;
  71. }
  72. NVIC_EnableIRQ (uint8 IRQn)
  73. {
  74. long unsigned int _1;
  75. unsigned char _2;
  76. unsigned char _3;
  77. long unsigned int _4;
  78. long unsigned int _5;
  79. <bb 2> [local count: 1073741824]:
  80. # DEBUG BEGIN_STMT
  81. _2 = IRQn_6(D) & 31;
  82. _1 = (long unsigned int) _2;
  83. _3 = IRQn_6(D) >> 5;
  84. _4 = (long unsigned int) _3;
  85. _5 = 1 << _1;
  86. MEM[(struct S32_NVIC_Type *)3758153984B].ISER[_4] ={v} _5;
  87. return;
  88. }
  89. NVIC_SetPriorityGrouping (uint32 PriorityGroup)
  90. {
  91. long unsigned int _1;
  92. long unsigned int _2;
  93. long unsigned int _3;
  94. <bb 2> [local count: 1073741824]:
  95. # DEBUG BEGIN_STMT
  96. _1 ={v} MEM[(struct S32_SCB_Type *)3758153728B].AIRCR;
  97. _2 = _1 & 4294965503;
  98. _3 = _2 | PriorityGroup_5(D);
  99. MEM[(struct S32_SCB_Type *)3758153728B].AIRCR ={v} _3;
  100. return;
  101. }