-
Notifications
You must be signed in to change notification settings - Fork 0
/
publications_pt.html
1483 lines (1446 loc) · 56.6 KB
/
publications_pt.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Publicações</title>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<link href="css/bootstrap.css" rel="stylesheet">
<style>
body {
padding-top: 60px; /* Container on the bottom of topbar. */
}
</style>
<link rel="icon" type="image/png" href="images/favicon.ico">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li class="active"><a href="publications.html">Publications</a></li>
<li><a href="people.html">People</a></li>
<li><a href="http://cuda.dcc.ufmg.br/" target="blank">Tools</a></li>
<li><a href="https://www.youtube.com/@compilerslab" target="blank">Youtube Channel</a></li>
<li><a href="apply.html">Apply</a></li>
</ul>
</div>
</div>
</div>
<button id="scroll-btn" class="scroll-button">Back to Top ↑</button>
<script src="js/button.js"></script>
<div class="container">
<h2>Periódicos</h2>
<h3>2015</h3>
<p>
<TABLE cellpadding="10pt">
<TR>
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/Teixeira15.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Augusto Fernando, Menezes Gustavo, Marcondes Pablo, Fernando Pereira, Chi Hao, Marcos Jose, and Barbosa Leonardo. <b>Defending Internet of Things against Exploits.</b> <em>Revista IEEE América Latina</em>, vol. 13, issue 4, pages 1112-1119, 2015. ISSN 15480992.
<a href="#" type="button" class="btn-toggle" data-element="#pt1">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt1" style="display: none;">
@article{Teixeira15,<br>
author = {Fernando Teixeira and Gustavo Vieira and Pablo Fonseca and Fernando Pereira and Hao Wong and Marcos José Nogueira and Leonardo Oliveira},<br>
journal = {IEEE Latin America Transactions},<br>
title = {Defending Internet of Things against Exploits},<br>
year = {2015},<br>
pages = {1112-1119},<br>
publisher = {IEEE}
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/Maia15.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Neto Antonio, Melo Leandro, Neto Omar, Pereira Fernando, and Barbosa Leonardo. <b>Protecting Programs Against Memory Violation In Hardware.</b> <em>Revista IEEE América Latina</em>, vol. 13, issue 3, pages 885-891, 2015. ISSN 15480992.
<a href="#" type="button" class="btn-toggle" data-element="#pt2">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt2" style="display: none;">
@article{Lemos15,<br>
author = {Antonio Neto and Leandro Melo and Omar Neto and Fernando Pereira and Leonardo Barbosa},<br>
journal = {IEEE Latin America Transactions},<br>
title = {Protecting Programs Against Memory Violation In Hardware},<br>
year = {2015},<br>
pages = {885-891},<br>
publisher = {IEEE}
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/Saggioro15.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Saggioro Felipe, Paisante Vitor, Rodrigues Raphel, Barbosa Leonardo, and Pereira Fernando. <b>Crosschecking Distributed Data to Detect Integer Overflow.</b> <em>Revista IEEE América Latina</em>, vol. 13, issue 4, pages 1083-1089, 2015. ISSN 15480992.
<a href="#" type="button" class="btn-toggle" data-element="#pt3">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt3" style="display: none;">
@article{Lemos15,<br>
author = {Felipe Saggioro and Vitor Paisante and Raphel Rodrigues and Leonardo Barbosa and Fernando Pereira},<br>
journal = {IEEE Latin America Transactions},<br>
title = {Crosschecking Distributed Data to Detect Integer Overflow},<br>
year = {2015},<br>
pages = {1083-1089},<br>
publisher = {IEEE}
}
</div>
</TD>
</tr>
</table>
<h3>2004</h3>
<p>
<TABLE cellpadding="10pt">
<TR>
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/Pereira04RITA.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Fernando Pereira, Marco Valente, Roberto Bigonha, and Mariza Bigonha. <b>Chamada Remota de Métodos na Plataforma J2ME/CLDC.</b> <em>Telecomunicações (Santa Rita do Sapucaí)</em>, vol. 7, pages 21-31, 2004. ISSN 15162338.
<a href="#" type="button" class="btn-toggle" data-element="#pt4">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt4" style="display: none;">
@InProceedings{Pereira03b,<br>
author = "Fernando Pereira and
Marco Valente and
Roberto Bigonha and
Mariza Bigonha",<br>
title = "Chamada Remota de M\'{e}todos na Plataforma {J2ME/CLDC}",<br>
booktitle = "{WCSF} - 5th Brazilian Workshop on Wireless Communication and
Mobile Computation",<br>
publisher = "SBC",<br>
pages = "157 - 168",<br>
year = "2003"<br>
}
</div>
</TD>
</tr>
</table>
<h2>Conferências</h1>
<h3>2022</h3>
<p>
<TABLE cellpadding="10pt">
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/SBLP22Kind.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Cecília Kind, João Coelho, Bruno Kind and
Fernando Magno Quintão Pereira.
<b>Geração Automática de Programas para Compilação Preditiva</b>,
SBLP, 2022.
<a href="#" type="button" class="btn-toggle" data-element="#Kind22">[BIBTEX]</a>
</TD>
<TR>
<td></td>
<TD>
<div class="bib" id="Kind22" style="display: none;">
@inproceedings{Kind22,<br>
author = {Cecilia Kind and Joao Coelho and Bruno Kind and
Fernando Magno Quint\~{a}o Pereira},<br>
title = {Geracao Automatica de Benchmarks para Compilacao Preditiva}<br>
booktitle = {SBLP},<br>
pages = {9--16},<br>
year = {2022},<br>
publisher = {ACM}<br>
}
</div>
</TD>
</TR>
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/SBLP22Damasio.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Thaís Damásio, Michael Canesche, Vinícius Pacheco,
Anderson Faustino and Fernando Magno Quintão Pereira.
<b>Impacto de Ofuscadores e Otimizadores de Código na Acurácia de Classificadores de Programas</b>,
SBLP, 2022.
<a href="#" type="button" class="btn-toggle" data-element="#Damasio22">[BIBTEX]</a>
</TD>
<TR>
<td></td>
<TD>
<div class="bib" id="Damasio22" style="display: none;">
@inproceedings{Damasio22,<br>
author = {Thais Damasio and Michael Canesche and Vinicius Pacheco
and Anderson Faustino and
Fernando Magno Quint\~{a}o Pereira},<br>
title = {Impacto de Ofuscadores e Otimizadores de Codigo na Acuracia de Classificadores de Programas}<br>
booktitle = {SBLP},<br>
pages = {1--8},<br>
year = {2022},<br>
publisher = {ACM}<br>
}
</div>
</TD>
</TR>
</table>
<h3>2020</h3>
<p>
<TABLE cellpadding="10pt">
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/SaffranSBSegTools.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
João Saffran, Haniel Barbosa and
Fernando Magno Quintão Pereira.
<b>Sintetizador de Gramáticas para Obfuscação de Dados em Sistemas de Logs</b>,
SBSeg - Tools, 2020.
<a href="#" type="button" class="btn-toggle" data-element="#Saffran20">[BIBTEX]</a>
</TD>
<TR>
<td></td>
<TD>
<div class="bib" id="Saffran20" style="display: none;">
@inproceedings{Saffran20,<br>
author = {Joao Saffran and Haniel Barbosa and
Fernando Magno Quint\~{a}o Pereira},<br>
title = {Sintetizador de Gram\'{a}ticas para Obfusca\c{c}\~{a}o de Dados em Sistemas de Logs}<br>
booktitle = {SBSeg - Tools},<br>
pages = {1--8},<br>
year = {2020},<br>
publisher = {SBC}<br>
}
</div>
</TD>
</TR>
</table>
<h3>2019</h3>
<p>
<TABLE cellpadding="10pt">
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/RimsaSBLP19.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Andrei Rimsa, José Nelson Amaral and
Fernando Magno Quintão Pereira.
<b>Efficient and Precise Dynamic Construction of Control Flow Graphs</b>,
SBLP, pages 19-26, 2019.
<a href="#" type="button" class="btn-toggle" data-element="#Rimsa19">[BIBTEX]</a>
</TD>
<TR>
<td></td>
<TD>
<div class="bib" id="Rimsa19" style="display: none;">
@inproceedings{Rimsa19,<br>
author = {Andrei \'{A}lvares Rimsa and Jose Nelson Amaral and
Fernando Magno Quint\~{a}o Pereira},<br>
title = {Efficient and Precise Dynamic Construction of Control Flow Graphs}<br>
booktitle = {SBLP},<br>
pages = {19--26},<br>
year = {2019},<br>
publisher = {ACM}<br>
}
</div>
</TD>
</TR>
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/GuimaraesSBLP19.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Breno Ferreira Campos Guimarães, José Wesley Sousa
Magalhães, Anderson Faustino da Silva and
Fernando Magno Quintão Pereira.
<b>Synthesis of Benchmarks for the C Programming Language by Mining Software Repositories</b>,
SBLP, pages 62-69, 2019.
<a href="#" type="button" class="btn-toggle" data-element="#Guimaraes19">[BIBTEX]</a>
<a href="http://www.dcc.ufmg.br/~fernando/publications/presentations/AnghaSBLP_Presentation.pdf" target="blank">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="Guimaraes19" style="display: none;">
@inproceedings{Guimaraes19,<br>
author = {Breno Ferreira Campos Guimar\~{a}es and Jos\'{e} Wesley
Sousa Magalh\~{a}es and Fernando Magno Quint\~{a}o Pereira},<br>
title = {Synthesis of Benchmarks for the C Programming Language by Mining Software Repositories}<br>
booktitle = {SBLP},<br>
pages = {62--69},<br>
year = {2019},<br>
publisher = {ACM}<br>
}
</div>
</TD>
</TR>
</table>
<h3>2018</h3>
<p>
<TABLE cellpadding="10pt">
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/SBLP18_ramos.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Pedro Ramos, Gleison Souza Diniz Mendonça, Guilherme V. Leobas and
Fernando Magno Quintão Pereira.
<b>Taskminer: automatic identification of tasks</b>,
SBLP, pages 11-18, 2018.
<a href="#" type="button" class="btn-toggle" data-element="#Ramos18">[BIBTEX]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="Ramos18" style="display: none;">
@inproceedings{Ramos18,<br>
author = {Pedro Ramos and Gleison Souza Diniz Mendon\c{c}a and
Guilherme V. Leobas and Fernando Magno Quint\~{a}o Pereira},<br>
title = {Taskminer: automatic identification of tasks}<br>
booktitle = {SBLP},<br>
pages = {11-18},<br>
year = {2018},<br>
publisher = {SBC}<br>
}
</div>
</TD>
</TR>
<TD align= "center">
<A HREF="pubs/books/Tymbu_JAI_2018.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Hugo Sousa e Mateus Tumburibá
<b>Análise Dinâmica de Programas Binários</b>,
Jornada de Atualização em Informática, Brasil, 2018.
<a href="#" type="button" class="btn-toggle" data-element="#Tymbu18">[BIBTEX]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="Tymbu18" style="display: none;">
@inproceedings{Tymbu18,<br>
author = {Hugo Sousa and Mateus Tymburiba},<br>
title = {Analise Dinamica de Programas Binarios}<br>
booktitle = {JAI - CSBC},<br>
year = {2018},<br>
publisher = {SBC}<br>
}
</div>
</TD>
</TR>
</table>
<h3>2017</h3>
<p>
<TABLE cellpadding="10pt">
<TR>
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/CapelaoSBSeg17.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Carina Capelão de Oliveira, Glauco Gonçalves Cardoso and
Fernando Magno Quintão Pereira.
<b>Aplicação Dinâmica de Políticas Estáticas
de Fluxo</b>,
Brasília, SBSeg,Brasil, 2017.
<a href="#" type="button" class="btn-toggle" data-element="#Capelao17b">[BIBTEX]</a>
<a HREF="http://www.dcc.ufmg.br/~fernando/publications/presentations/CapelaoSBSeg17_Slides.pdf">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="Capelao17b" style="display: none;">
@inproceedings{Capelao17b,<br>
author = {Carina Capelao de Oliveira and Glauco Goncalves Cardoso
and Fernando Magno Quintao Pereira},<br>
title = {Aplicação Dinâmica de Políticas Estáticas
de Fluxo}<br>
booktitle = {SBSeg},<br>
year = {2017},<br>
publisher = {SBC}<br>
}
</div>
</TD>
</TR>
<TR>
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/CapelaoCBSoft17.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Carina Capelão de Oliveira, Glauco Gonçalves Cardoso and
Fernando Magno Quintão Pereira.
<b>InspectorJ: Uma Ferramenta de Análise Estática para Dectar
Código não Isócrono em Programas Java</b>,
Fortaleza, CBSoft Tools,Brasil, 2017 (<b>Best Paper!</b>).
<a href="#" type="button" class="btn-toggle" data-element="#Capelao17a">[BIBTEX]</a>
<a HREF="http://www.dcc.ufmg.br/~fernando/publications/presentations/CapelaoCBSoft17_Slides.pdf">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="Capelao17a" style="display: none;">
@inproceedings{Capelao17a,<br>
author = {Carina Capelao de Oliveira and Glauco Goncalves Cardoso
and Fernando Magno Quintao Pereira},<br>
title = {InspectorJ: Uma Ferramenta de Análise Estática para Dectar
Código não Isócrono em Programas Java}<br>
booktitle = {Congresso Brasileiro de Software - Sessão de
Ferramentas},<br>
year = {2017},<br>
publisher = {SBC}<br>
}
</div>
</TD>
</TR>
<TR>
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/Marcus17SBLP.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Marcus Rodrigues de Araújo, Leandro Terra Cunha Melo and Fernando Magno
Quintão Pereira. <b>Inferência de Tipos Dependentes em C.</b> <em>Simpósio Brasileiro de Linguagens de Programaçãos</em>, Fortaleza, Brasil, 2017.
<a href="#" type="button" class="btn-toggle" data-element="#Marcus17SBLP">[BIBTEX]</a>
<a HREF="http://www.dcc.ufmg.br/~fernando/publications/presentations/Marcus2017SBLP_Slides.pdf">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="Marcus17SBLP" style="display: none;">
@inproceedings{Marcus17SBLP,<br>
author = {Marcus Rodrigues de Araújo, Leandro Terra Cunha Melo and Fernando Magno
Quintão Pereira},<br>
title = {Inferência de Tipos Dependentes em C.},<br>
booktitle = {Simposio Brasileiro de Linguagens de Programacao – SBLP 2017},<br>
year = {2017},<br>
publisher = {SBC}<br>
}
</div>
</TD>
</TR>
</table>
<h3>2016</h3>
<p>
<table cellpadding="10pt">
<TR>
<TD align= "center">
<A HREF="http://homepages.dcc.ufmg.br/~fernando/publications/papers_pt/Kezia16SBLP.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Kézia Correa Andrade Moreira, Gleison Souza Diniz Mendonça,
Breno Campos Ferreira Guimarães and Fernando Magno
Quintão Pereira
<b>Paralelização Automatica de Codigo com Diretivas
OpenACC</b>
<em>XX Simpósio Brasileiro de Linguagens de Programação.</em>
Maringá, Brasil, 2016.
<a href="#" type="button" class="btn-toggle" data-element="#Andrade16">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="Andrade16" style="display: none;">
@inproceedings{Andrade16,<br>
author = {Kezia Correa Andrade Moreira and Gleison
Souza Diniz Mendonca and Breno Campos Ferreira Guimaraes and
and Pericles Rafael de Oliveira Alves and Fernando Magno
Quintao Pereira},<br>
title = {Paralelizacao Automatica de Codigo com
Diretivas {OpenACC}},<br>
booktitle = {SBLP},<br>
year = {2016},<br>
pages = {32--47},<br>
}
</div>
</TD>
</TR>
<TR>
<TD align= "center">
<A HREF="http://homepages.dcc.ufmg.br/~fernando/publications/papers_pt/Ribeiro16SBLP.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Rodrigo Geraldo Ribeiro, Leandro Terra Cunha Melo, Marcus Rodrigues de
Araújo and Fernando Magno Quintão Pereira
<b>Compilação Parcial de Programas Escritos em C</b>
<em>XX Simpósio Brasileiro de Linguagens de Programação.</em>
Maringá, Brasil, 2016.
<a href="#" type="button" class="btn-toggle" data-element="#Ribeiro16">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="Ribeiro16" style="display: none;">
@inproceedings{Ribeiro16,<br>
author = {Rodrigo Geraldo Ribeiro and Leandro Terra
Cunha Melo and Marcus Rodrigues de Araujo and Fernando Magno
Quintao Pereira},<br>
title = {Compilacao Parcial de Programas Escritos em {C}},<br>
booktitle = {SBLP},<br>
year = {2016},<br>
pages = {16--31},<br>
}
</div>
</TD>
</TR>
<TR>
<TD align= "center">
<A HREF="http://homepages.dcc.ufmg.br/~fernando/publications/papers_pt/Moreira16SBLP.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Rubens Emílio Alves Moreira, Sylvain Collange and Fernando Magno
Quintão Pereira<b>Definição Semântica de
Blocos Everywhere para Programação SIMD</b>
<em>XX Simpósio Brasileiro de Linguagens de Programação.</em>
Maringá, Brasil, 2016.
<a href="#" type="button" class="btn-toggle" data-element="#Moreira16">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="Moreira16" style="display: none;">
@inproceedings{Moreira16,<br>
author = {Rubens Emilio and Sylvain Collange and Fernando Magno Quintao Pereira},<br>
title = {Definicao Semantica de Blocos Everywhere para Programacao {SIMD}},<br>
booktitle = {XX Simpósio Brasileiro de Linguagens de Programação},<br>
year = {2016},<br>
pages = {1--15},<br>
}
</div>
</TD>
</TR>
<TR>
<TD align= "center">
<A HREF="http://homepages.dcc.ufmg.br/~fernando/publications/papers_pt/Breno16Tools.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Breno Campos Ferreira Guimarães,
Gleison Souza Diniz Mendonça and
Fernando Magno Quintão Pereira
<b>DawnCC: a Source-to-Source Automatic Parallelizer of C and C++
Programs.</b>
<em>CBSoft Tools.</em>
Maringá, Brasil, 2016.
<a href="#" type="button" class="btn-toggle" data-element="#Guimaraes16">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="Guimaraes16" style="display: none;">
@inproceedings{Guimaraes16,<br>
author = {Breno Campos Ferreira Guimaraes and
Gleison Souza Diniz Mendonca and
Pericles Rafael de Oliveira Alves and
Fernando Magno Quintao Pereira},<br>
title = {DawnCC: a Source-to-Source Automatic
Parallelizer of C and C++ Programs},<br>
booktitle = {CBSoft Tools},<br>
year = {2016},<br>
pages = {1--8},<br>
}
</div>
</TD>
</TR>
</table>
<h3>2015</h3>
<p>
<TABLE cellpadding="10pt">
<TR>
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/Campos15SBLP.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Campos Victor, Alves Péricles, and Pereira Fernando. <b>Restritificação.</b> <em>Simpósio Brasileiro de Linguagens de Programação</em>, Belo Horizonte, Brasil, 2015.
<a href="#" type="button" class="btn-toggle" data-element="#pt6">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt6" style="display: none;">
@inproceedings{Campos15,<br>
author = {Victor Campos and Péricles Alves and Fernando Pereira},<br>
title = {Restritificação},<br>
year = {2015},<br>
publisher = "SBLP",<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/Couto15SBLP.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Douglas Couto, Kezia Andrade, Gleison Souza, and Fernando Pereira. <b>Etino: Colocação Automática de Computação em Hardware Heterogêneo.</b> <em>Simpósio Brasileiro de Linguagens de Programação</em>, Belo Horizonte, Brasil, 2015.
<a href="#" type="button" class="btn-toggle" data-element="#pt7">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt7" style="display: none;">
@inproceedings{Couto15,<br>
author = {Douglas Couto and Kezia Andrade and Gleison Souza and Fernando Pereira},<br>
title = {Etino: Colocação Automática de Computação em Hardware Heterogêneo},<br>
year = {2015},<br>
publisher = "SBLP",<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/Tymburiba15Tools.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Rubens Emílio, Mateus Tymburibá, and Fernando Pereira. <b>RipRop: A Dynamic Detector of ROP Attacks.</b> <em>CBSoft Tools</em>, pages 9-16, Belo Horizonte, Brasil, 2015.
<a href="#" type="button" class="btn-toggle" data-element="#pt8">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt8" style="display: none;">
@inproceedings{Emílio15,<br>
author = {Rubens Emílio and Mateus Tymburibá and Fernando Pereira},<br>
title = {RipRop: A Dynamic Detector of ROP Attacks},<br>
booktitle = "CBSoft Tools",<br>
year = {2015},<br>
pages = {9-16},<br>
publisher = "SBLP",<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/RodriguesSilva15Tools.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Bruno Silva, Leonardo Ribeiro, and Fernando Pereira. <b>FlowTracker - Detecção de Código Não Isócrono via Análise Estática de Fluxo.</b> <em>CBSoft Tools</em>, pages 97-104, Belo Horizonte, Brasil, 2015.
<a href="#" type="button" class="btn-toggle" data-element="#pt9">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt9" style="display: none;">
@inproceedings{Silva15,<br>
author = {Bruno Silva and Leonardo Ribeiro and Fernando Pereira},<br>
title = {FlowTracker - Detecção de Código Não Isócrono via Análise Estática de Fluxo},<br>
booktitle = "CBSoft Tools",<br>
year = {2015},<br>
pages = {97-104},<br>
publisher = "SBLP",<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/Couto15Tools.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Douglas Couto, Kezia Andrade, Gleison Souza, and Fernando Pereira. <b>Etino: Colocação Automática de Computação em Hardware Heterogêneo.</b> <em>CBSoft Tools</em>, pages 65-72, Belo Horizonte, Brasil, 2015.
<a href="#" type="button" class="btn-toggle" data-element="#pt10">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt10" style="display: none;">
@inproceedings{Couto15b,<br>
author = {Douglas Couto and Kezia Andrade and Gleison Souza, and Fernando Pereira},<br>
title = {Etino: Colocação Automática de Computação em Hardware Heterogêneo},<br>
booktitle = "CBSoft Tools",<br>
year = {2015},<br>
pages = {65-72},<br>
publisher = "SBLP",<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/Campos15Tools.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Victor Campos, Pericles Alves and Fernando Pereira. <b>Restrictifier: a tool to disambiguate pointers at function call sites.</b> <em>CBSoft Tools</em>, pages 89-96, Belo Horizonte, Brasil, 2015.
<a href="#" type="button" class="btn-toggle" data-element="#Campos15Tool">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="Campos15Tool" style="display: none;">
@inproceedings{Campos15,<br>
author = {Victor Campos and Pericles Rafael and Fernando Pereira},<br>
title = {Restrictifier: a tool to disambiguate pointers at function call sites},<br>
booktitle = "CBSoft Tools",<br>
year = {2015},<br>
pages = {89-96},<br>
publisher = "SBLP",<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/Silva15Tools.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Junio Cezar, Francisco Demontie, Mariza Bigonha, and Fernando Pereira. <b>Asymptus - A Tool for Automatic Inference of Loop Complexity.</b> <em>CBSoft Tools</em>, pages 89-96, Belo Horizonte, Brasil, 2015.
<a href="#" type="button" class="btn-toggle" data-element="#Cezar15Tools">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="Cezar15Tools" style="display: none;">
@inproceedings{Cezar15,<br>
author = {Junio Cezar and Francisco Demontie and Mariza Bigonha and Fernando Pereira},<br>
title = {Asymptus - A Tool for Automatic Inference of Loop Complexity},<br>
booktitle = "CBSoft Tools",<br>
year = {2015},<br>
pages = {89-96},<br>
publisher = "SBLP",<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/Tymburiba15SBSeg.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">
Rubens Emilio, Mateus Tymburiba, and Fernando Pereira. <b>Inferênica Estática da Frequência Máxima de Instruções de Retorno para Detecção de Ataques ROP.</b>
<em>XV Simpósio Brasileiro de Segurança da Informação e Sistemas Computacionais</em>, vol. 1, issue 1, pages 2-15, Florianópolis, Brasil, 2015.</li>
<a href="#" type="button" class="btn-toggle" data-element="#pt13">[BIBTEX]</a>
<A HREF="#" type="button" class="btn-toggle">[SLIDES]</a>
</TD>
</TR>
<TR>
<td></td>
<TD>
<div class="bib" id="pt13" style="display: none;">
@inproceedings{Emilio15,<br>
author = {XV Simpósio Brasileiro de Segurança da Informação e Sistemas Computacionais},<br>
title = {XV Simpósio Brasileiro de Segurança da Informação e Sistemas Computacionais},<br>
booktitle = {XV Simpósio Brasileiro em Segurança da Informação e de Sistemas Computacionais — SBSeg 2015},<br>
pages = {2-15},<br>
year = {2015},<br>
publisher = {SBC}<br>
}
</div>
</TD>
</tr>
<TR>
<TD align= "center">
<A HREF="http://www.dcc.ufmg.br/~fernando/publications/papers_pt/RodriguesSilva15SBSeg.pdf"
target="blank">
<img
align= "center"
src ="images/pdf.jpg"
ALT="Download it"
width=45>
</A>
</TD>
<TD align= "left">