program_jun_laplaciano.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. // Aplica o back-end do juninho
  2. @target : mips
  3. // Especifica o tipo de metodo empregado para salvar o resultado da compilação
  4. @export : simulation //MultCoreJun
  5. // Diretorio onde o resultado da compilação será gravado
  6. @outputDirectory : `C:\Users\EUGENIO CARVALHO\Desktop\tmp\laplaciano`
  7. // Quantidade de palavras de um bloco 32 palavras de 4bytes
  8. @cacheBlockSize: `32`
  9. /**
  10. Profile de compilacao do back-end
  11. O formato da string é um json que descreve um array de definições de cada core
  12. {
  13. "stackBaseAddress" : 5888, -> endereço da base da pilha do core em questão
  14. "initFunction": "multiplica(0)", -> define a main de cada core. aceita ate 4 parametros com valores de constantes
  15. "id": "core0" -> label que define o codigo de cada core
  16. },
  17. Se "stackBaseAddress" não for definido o compilador irá inferir o valor iniciando do ultimo endereço da memoria
  18. */
  19. @profile: `[
  20. {
  21. "id" : "core0",
  22. "initFunction" : "multiplica(0)",
  23. "filename" : "%s_core_0.txt"
  24. },
  25. {
  26. "id" : "core1",
  27. "initFunction" : "multiplica(5)",
  28. "filename" : "%s_core_1.txt"
  29. },
  30. {
  31. "id" : "core2",
  32. "initFunction" : "multiplica(10)",
  33. "filename" : "%s_core_2.txt"
  34. },
  35. {
  36. "id" : "core3",
  37. "initFunction" : "multiplica(15)",
  38. "filename" : "%s_core_3.txt"
  39. }
  40. ]`
  41. package main;
  42. const (
  43. LIN = 4
  44. COL = 4
  45. )
  46. var (
  47. origin [LIN][COL]int32
  48. result [LIN][COL]int32
  49. )
  50. func preenche_matriz() {
  51. var (
  52. w = 1
  53. value int32
  54. )
  55. LM1 := LIN - 1
  56. CM1 := COL - 1
  57. for i := 0; i < LIN; i++ {
  58. for j := 0; j < COL; j++ {
  59. switch {
  60. case i == 0, i == LM1: // Primeira e ultima linha
  61. value = 0
  62. case j == 0, j == CM1: // Primeira e ultima coluna
  63. value = 0
  64. default: // Elementos do interior da matriz
  65. value = w
  66. w++
  67. }
  68. origin[i][j] = value
  69. }
  70. }
  71. }
  72. func laplaciano() {
  73. var (
  74. l int32
  75. )
  76. LM1 := LIN - 1
  77. CM1 := COL - 1
  78. for i:= 1; i < LM1; i++ {
  79. for j := 1; j < CM1; j++ {
  80. l = origin[i-1][j]
  81. l += origin[i][j-1]
  82. l += origin[i][j+1]
  83. l += origin[i+1][j]
  84. l -= (4 * origin[i][j])
  85. if l > 255 { l = 255 }
  86. result[i][j] = l
  87. }
  88. }
  89. }
  90. func main() {
  91. preenche_matriz()
  92. laplaciano()
  93. }
  94. /**
  95. main.@preenche_matriz.main.@preenche_matriz.value : _V8
  96. main.@preenche_matriz.@for_0.main.@preenche_matriz.@for_0.i : _V6
  97. main.@preenche_matriz.@for_0.@for_1.COL : 4
  98. main.@preenche_matriz.main.@preenche_matriz.LM1 : _V3
  99. main.@preenche_matriz.@for_0.@for_1.LM1 : _V3
  100. main.main.result : _G90
  101. main.@preenche_matriz.w : _V1
  102. main.@preenche_matriz.@for_0.@for_1.main.@preenche_matriz.@for_0.@for_1.j : _V7
  103. main.@preenche_matriz.@for_0.@for_1.CM1 : _V5
  104. main.@preenche_matriz.@for_0.@for_1.value : _V8
  105. main.@preenche_matriz.@for_0.LIN : 4
  106. _V1 : main.@preenche_matriz.w
  107. _V3 : main.@preenche_matriz.LM1
  108. _V6 : main.@preenche_matriz.@for_0.i
  109. _V5 : main.@preenche_matriz.CM1
  110. main.@preenche_matriz.@for_0.i : _V6
  111. _V8 : main.@preenche_matriz.@for_0.@for_1.value
  112. _V7 : main.@preenche_matriz.@for_0.@for_1.j
  113. _G18 : main.main.origin
  114. main.@preenche_matriz.@for_0.@for_1.i : _V6
  115. main.@preenche_matriz.CM1 : _V5
  116. main.@preenche_matriz.LIN : 4
  117. main.@preenche_matriz.main.@preenche_matriz.CM1 : _V5
  118. main.@preenche_matriz.COL : 4
  119. main.@preenche_matriz.main.@preenche_matriz.w : _V1
  120. main.@preenche_matriz.@for_0.@for_1.origin : _G18
  121. main.main.origin : _G18
  122. _G90 : main.main.result
  123. main.@preenche_matriz.@for_0.@for_1.w : _V1
  124. main.@preenche_matriz.LM1 : _V3
  125. main.@preenche_matriz.@for_0.@for_1.j : _V7
  126. 4 : main.@laplaciano.LIN
  127. main.@laplaciano.LIN : 4
  128. main.@laplaciano.COL : 4
  129. _V22 : main.@laplaciano.CM1
  130. main.@laplaciano.CM1 : _V22
  131. main.@laplaciano.main.@laplaciano.CM1 : _V22
  132. main.@laplaciano.@for_3.@for_4.CM1 : _V22
  133. _V20 : main.@laplaciano.LM1
  134. main.@laplaciano.LM1 : _V20
  135. main.@laplaciano.@for_3.LM1 : _V20
  136. main.@laplaciano.main.@laplaciano.LM1 : _V20
  137. main.@laplaciano.@for_3.i : _V23
  138. _V23 : main.@laplaciano.@for_3.i
  139. main.@laplaciano.@for_3.@for_4.i : _V23
  140. main.@laplaciano.@for_3.main.@laplaciano.@for_3.i : _V23
  141. main.@laplaciano.main.@laplaciano.l : _V36
  142. main.@laplaciano.@for_3.@for_4.l : _V36
  143. _V36 : main.@laplaciano.@for_3.@for_4.l
  144. _V24 : main.@laplaciano.@for_3.@for_4.j
  145. main.@laplaciano.@for_3.@for_4.j : _V24
  146. main.@laplaciano.@for_3.@for_4.main.@laplaciano.@for_3.@for_4.j : _V24
  147. main.@laplaciano.@for_3.@for_4.origin : _G18
  148. main.@laplaciano.@for_3.@for_4.result : _G90
  149. <laplaciano>:
  150. 16c: 0666763244 addiu sp,sp,-20 -- prolog| push stack frame
  151. 170: 0001962017 addu fp,zero,sp -- prolog|copy fp ← sp
  152. 174: 0605028355 addiu s0,zero,3 .0 -- copy _V20 ← 3
  153. 178: 2949644288 sw s0,fp,0 .1 -- store content of s0 in _V20
  154. 17c: 0605093891 addiu s1,zero,3 .2 -- copy _V22 ← 3
  155. 180: 2949709828 sw s1,fp,4 .3 -- store content of s1 in _V22
  156. 184: 0605159425 addiu s2,zero,1 .4 -- copy _V23 ← 1
  157. 188: 2949775368 sw s2,fp,8 .5 -- store content of s2 in _V23
  158. 18c: 0134217947 j 36c <laplaciano+0x200> .6 -- jump to laplaciano+_i20
  159. 190: 0000000000 sll zero,zero,0 .6 -- Nop
  160. 194: 0605224961 addiu s3,zero,1 .7 -- copy _V24 ← 1
  161. 198: 2949840908 sw s3,fp,12 .8 -- store content of s3 in _V24
  162. 19c: 0134217937 j 344 <laplaciano+0x1d8> .9 -- jump to laplaciano+_i24
  163. 1a0: 0000000000 sll zero,zero,0 .9 -- Nop
  164. 1a4: 2413035528 lw s4,fp,8 .10 -- load content from _V23 in s4
  165. 1a8: 0000000000 sll zero,zero,0 .10 -- Nop
  166. 1ac: 0646840319 addiu t5,s4,-1 .11 -- _T26 = _V23 - 1
  167. 1b0: 0000880768 sll t6,t5,2 .12 -- _T27 = _T26 << 2
  168. 1b4: 2413101068 lw s5,fp,12 .13 -- load content from _V24 in s5
  169. 1b8: 0000000000 sll zero,zero,0 .13 -- Nop
  170. 1bc: 0001407009 addu t7,zero,s5 .14 -- copy _T29 ← _V24
  171. 1c0: 0030371873 addu t6,t6,t7 .15 -- _T27 = _T27 + _T29
  172. 1c4: 0000966784 sll t8,t6,2 .16 -- _T33 = _T27 << 2
  173. 1c8: 0060342305 addu t8,gp,t8 .17
  174. 1cc: 2400583680 lw s6,t8,0 .17
  175. 1d0: 0000000000 sll zero,zero,0 .17 -- Nop
  176. 1d4: 0001488929 addu s7,zero,s6 .17 -- copy s7 ← s6
  177. 1d8: 2950103056 sw s7,fp,16 .18 -- store content of s7 in _V36
  178. 1dc: 2413035528 lw s4,fp,8 .19 -- load content from _V23 in s4
  179. 1e0: 0000000000 sll zero,zero,0 .19 -- Nop
  180. 1e4: 0001327137 addu t0,zero,s4 .20 -- copy _T37 ← _V23
  181. 1e8: 0000542848 sll t1,t0,2 .21 -- _T38 = _T37 << 2
  182. 1ec: 2413101068 lw s5,fp,12 .22 -- load content from _V24 in s5
  183. 1f0: 0000000000 sll zero,zero,0 .22 -- Nop
  184. 1f4: 0648806399 addiu t3,s5,-1 .23 -- _T41 = _V24 - 1
  185. 1f8: 0019613729 addu t1,t1,t3 .24 -- _T38 = _T38 + _T41
  186. 1fc: 0000614528 sll t4,t1,2 .25 -- _T45 = _T38 << 2
  187. 200: 0059531297 addu t4,gp,t4 .26
  188. 204: 2374828032 lw t5,t4,0 .26
  189. 208: 2413232144 lw s7,fp,16 .27 -- load content from _V36 in s7
  190. 20c: 0000000000 sll zero,zero,0 .27 -- Nop
  191. 210: 0049133601 addu s7,s7,t5 .28 -- _V36 = _V36 + _T47
  192. 214: 2950103056 sw s7,fp,16 .29 -- store content of s7 in _V36
  193. 218: 2413035528 lw s4,fp,8 .30 -- load content from _V23 in s4
  194. 21c: 0000000000 sll zero,zero,0 .30 -- Nop
  195. 220: 0001341473 addu t7,zero,s4 .31 -- copy _T48 ← _V23
  196. 224: 0001011840 sll t6,t7,2 .32 -- _T49 = _T48 << 2
  197. 228: 2413101068 lw s5,fp,12 .33 -- load content from _V24 in s5
  198. 22c: 0000000000 sll zero,zero,0 .33 -- Nop
  199. 230: 0648544257 addiu t0,s5,1 .34 -- _T52 = _V24 + 1
  200. 234: 0029913121 addu t6,t6,t0 .35 -- _T49 = _T49 + _T52
  201. 238: 0000938112 sll t2,t6,2 .36 -- _T56 = _T49 << 2
  202. 23c: 0059396129 addu t2,gp,t2 .37
  203. 240: 2370502656 lw t3,t2,0 .37
  204. 244: 2413232144 lw s7,fp,16 .38 -- load content from _V36 in s7
  205. 248: 0000000000 sll zero,zero,0 .38 -- Nop
  206. 24c: 0049002529 addu s7,s7,t3 .39 -- _V36 = _V36 + _T58
  207. 250: 2950103056 sw s7,fp,16 .40 -- store content of s7 in _V36
  208. 254: 2413035528 lw s4,fp,8 .41 -- load content from _V23 in s4
  209. 258: 0000000000 sll zero,zero,0 .41 -- Nop
  210. 25c: 0646709249 addiu t4,s4,1 .42 -- _T60 = _V23 + 1
  211. 260: 0000813184 sll t5,t4,2 .43 -- _T61 = _T60 << 2
  212. 264: 2413101068 lw s5,fp,12 .44 -- load content from _V24 in s5
  213. 268: 0000000000 sll zero,zero,0 .44 -- Nop
  214. 26c: 0001407009 addu t7,zero,s5 .45 -- copy _T63 ← _V24
  215. 270: 0028272673 addu t5,t5,t7 .46 -- _T61 = _T61 + _T63
  216. 274: 0000901248 sll t8,t5,2 .47 -- _T67 = _T61 << 2
  217. 278: 0060342305 addu t8,gp,t8 .48
  218. 27c: 2399666176 lw t0,t8,0 .48
  219. 280: 2413232144 lw s7,fp,16 .49 -- load content from _V36 in s7
  220. 284: 0000000000 sll zero,zero,0 .49 -- Nop
  221. 288: 0048805921 addu s7,s7,t0 .50 -- _V36 = _V36 + _T69
  222. 28c: 2950103056 sw s7,fp,16 .51 -- store content of s7 in _V36
  223. 290: 2413035528 lw s4,fp,8 .52 -- load content from _V23 in s4
  224. 294: 0000000000 sll zero,zero,0 .52 -- Nop
  225. 298: 0001339425 addu t6,zero,s4 .53 -- copy _T70 ← _V23
  226. 29c: 0000938112 sll t2,t6,2 .54 -- _T71 = _T70 << 2
  227. 2a0: 2413101068 lw s5,fp,12 .55 -- load content from _V24 in s5
  228. 2a4: 0000000000 sll zero,zero,0 .55 -- Nop
  229. 2a8: 0001398817 addu t3,zero,s5 .56 -- copy _T73 ← _V24
  230. 2ac: 0021712929 addu t2,t2,t3 .57 -- _T71 = _T71 + _T73
  231. 2b0: 0000673920 sll t1,t2,2 .58 -- _T77 = _T71 << 2
  232. 2b4: 0059328545 addu t1,gp,t1 .59
  233. 2b8: 2368929792 lw s3,t1,0 .59
  234. 2bc: 0000000000 sll zero,zero,0 .59 -- Nop
  235. 2c0: 0001269793 addu t4,zero,s3 .59 -- copy t4 ← s3
  236. 2c4: 0604962820 addiu t7,zero,4 .60
  237. 2c8: 0026175512 mult t4,t7 .60 -- _T80 = _T79 * 4
  238. 2cc: 0000026642 mflo t5 .60
  239. 2d0: 2413232144 lw s7,fp,16 .61 -- load content from _V36 in s7
  240. 2d4: 0000000000 sll zero,zero,0 .61 -- Nop
  241. 2d8: 0049133603 subu s7,s7,t5 .62 -- _V36 = _V36 - _T80
  242. 2dc: 2950103056 sw s7,fp,16 .63 -- store content of s7 in _V36
  243. 2e0: 2413232144 lw s7,fp,16 .64 -- load content from _V36 in s7
  244. 2e4: 0000000000 sll zero,zero,0 .64 -- Nop
  245. 2e8: 0605552895 addiu t8,zero,255 .65
  246. 2ec: 0049811491 subu v0,s7,t8 .65
  247. 2f0: 0406847491 blez v0,300 <laplaciano+0x194> .65 -- branch if register <= 0
  248. 2f4: 0000000000 sll zero,zero,0 .65 -- Nop
  249. 2f8: 0605421823 addiu s6,zero,255 .66 -- copy _V36 ← 255
  250. 2fc: 2950037520 sw s6,fp,16 .67 -- store content of s6 in _V36
  251. 300: 2412773384 lw s0,fp,8 .68 -- load content from _V23 in s0
  252. 304: 0000000000 sll zero,zero,0 .68 -- Nop
  253. 308: 0001077281 addu t6,zero,s0 .69 -- copy _T81 ← _V23
  254. 30c: 0000940160 sll t3,t6,2 .70 -- _T82 = _T81 << 2
  255. 310: 2412838924 lw s1,fp,12 .71 -- load content from _V24 in s1
  256. 314: 0000000000 sll zero,zero,0 .71 -- Nop
  257. 318: 0001134625 addu t2,zero,s1 .72 -- copy _T84 ← _V24
  258. 31c: 0023746593 addu t3,t3,t2 .73 -- _T82 = _T82 + _T84
  259. 320: 0000739456 sll t1,t3,2 .74 -- _T88 = _T82 << 2
  260. 324: 2412904464 lw s2,fp,16 .75 -- load content from _V36 in s2
  261. 328: 0000000000 sll zero,zero,0 .75 -- Nop
  262. 32c: 0059328545 addu t1,gp,t1 .76
  263. 330: 2905735232 sw s2,t1,64 .76 -- store content of t1 in _G90[_T88]
  264. 334: 2413101068 lw s5,fp,12 .77 -- load content from _V24 in s5
  265. 338: 0000000000 sll zero,zero,0 .77 -- Nop
  266. 33c: 0649396225 addiu s5,s5,1 .78 -- _V24 = _V24 + 1
  267. 340: 2949971980 sw s5,fp,12 .79 -- store content of s5 in _V24
  268. 344: 2412969996 lw s3,fp,12 .80 -- load content from _V24 in s3
  269. 348: 2413232132 lw s7,fp,4 .81 -- load content from _V22 in s7
  270. 34c: 0000000000 sll zero,zero,0 .81 -- Nop
  271. 350: 0041357347 subu v0,s3,s7 .82
  272. 354: 0071368595 bltz v0,1a4 <laplaciano+0x38> .82 -- branch if register < 0
  273. 358: 0000000000 sll zero,zero,0 .82 -- Nop
  274. 35c: 2413166600 lw s6,fp,8 .83 -- load content from _V23 in s6
  275. 360: 0000000000 sll zero,zero,0 .83 -- Nop
  276. 364: 0651558913 addiu s6,s6,1 .84 -- _V23 = _V23 + 1
  277. 368: 2950037512 sw s6,fp,8 .85 -- store content of s6 in _V23
  278. 36c: 2412773384 lw s0,fp,8 .86 -- load content from _V23 in s0
  279. 370: 2412838912 lw s1,fp,0 .87 -- load content from _V20 in s1
  280. 374: 0000000000 sll zero,zero,0 .87 -- Nop
  281. 378: 0034672675 subu v0,s0,s1 .88
  282. 37c: 0071368581 bltz v0,194 <laplaciano+0x28> .88 -- branch if register < 0
  283. 380: 0000000000 sll zero,zero,0 .88 -- Nop
  284. 384: 0666697748 addiu sp,sp,20 -- epilog| pop stack frame
  285. 388: 0001962017 addu fp,zero,sp -- epilog| pop stack frame
  286. 38c: 0065011720 jr ra -- epilog| return
  287. */