summaryrefslogtreecommitdiff
path: root/libcuda/cuobjdump.l
AgeCommit message (Collapse)Author
2019-05-29Move SectionList to contextMengchi Zhang
Signed-off-by: Mengchi Zhang <[email protected]>
2019-05-28Merge branch 'dev' of https://github.com/echoedit/gpgpu-sim_distribution ↵Mengchi Zhang
into dev
2019-05-27Move some cuobjdump parser variablesMengchi Zhang
Signed-off-by: Mengchi Zhang <[email protected]>
2019-04-21Add yyerror definitionMengchi Zhang
Signed-off-by: Mengchi Zhang <[email protected]>
2019-04-21Move cuobjdump parser to reentrantMengchi Zhang
Signed-off-by: Mengchi Zhang <[email protected]>
2018-09-20libcuda: removed comment from cuobjdump.lMatteo Maria Fusi
This comment made the build fail in ubuntu 18.04 due to a flex error. This error is probably produced by a flex bug.
2018-03-26Don't directly pass strings to printf (beacuse they wouldn't be escapped). ↵Nathan Conrad
Clang gives warnings about this.
2016-05-13getting the parsing compatible with previous version - tested on 4.2, 5.5 ↵Ahmed ElTantawy
and 7.5
2016-05-12initial support for cuda 7.5 parsingElTantawy
2015-03-04initial support for CUDA 5.0, 5.5, 6.0 to get template from SDK runningAhmed ElTantawy
2014-08-14On demand loading of fatbinsAndrew M. B. Boktor
Experimental library support (diff abstract_hardware_model.cc) (currently broken because of undocumented cudaGetExportTable function in the cuda rt api) [git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 13793]
2014-08-14Adding a less brittle support for associating the fatbins to sections in the ↵Andrew M. B. Boktor
output of cuobjdump This is how to get to the filename given a fatCubin void* void * s1 = *((void**)(fatCubin+8)); void * s2 = (s1+72); char * filename = (char *)s2; [git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 13728]
2014-08-14Removing warningsAndrew M. B. Boktor
A bit of cleanup [git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 12627]
2014-08-14Adding copyright notices and updating CHANGESAndrew M. B. Boktor
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 12552]
2014-08-14Moving things where they belongAndrew M. B. Boktor
cubojdump.l/.y are used to parse the output of cuobjdump, and thus should be part of libcuda not cuobjdump_to_ptxplus Included are also modifications to Makefiles [git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 12255]