blob: 6ab67788e3e300acc5a5cbd12d6956af29a685a0 (
plain)
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
|
#ifndef __cuobjdump_h__
#define __cuobjdump_h__
#include <string>
#include <list>
#include <iostream>
typedef void * yyscan_t;
struct cuobjdump_parser {
yyscan_t scanner;
int elfserial;
int ptxserial;
FILE *ptxfile;
FILE *elffile;
FILE *sassfile;
char filename [1024];
};
class cuobjdumpSection {
public:
//Constructor
cuobjdumpSection() {
arch = 0;
identifier = "";
}
virtual ~cuobjdumpSection() {}
unsigned getArch() {return arch;}
void setArch(unsigned a) {arch = a;}
std::string getIdentifier() {return identifier;}
void setIdentifier(std::string i) {identifier = i;}
virtual void print(){std::cout << "cuobjdump Section: unknown type" << std::endl;}
private:
unsigned arch;
std::string identifier;
};
class cuobjdumpELFSection : public cuobjdumpSection
{
public:
cuobjdumpELFSection() {}
virtual ~cuobjdumpELFSection() {
elffilename = "";
sassfilename = "";
}
std::string getELFfilename() {return elffilename;}
void setELFfilename(std::string f) {elffilename = f;}
std::string getSASSfilename() {return sassfilename;}
void setSASSfilename(std::string f) {sassfilename = f;}
virtual void print() {
std::cout << "ELF Section:" << std::endl;
std::cout << "arch: sm_" << getArch() << std::endl;
std::cout << "identifier: " << getIdentifier() << std::endl;
std::cout << "elf filename: " << getELFfilename() << std::endl;
std::cout << "sass filename: " << getSASSfilename() << std::endl;
std::cout << std::endl;
}
private:
std::string elffilename;
std::string sassfilename;
};
class cuobjdumpPTXSection : public cuobjdumpSection
{
public:
cuobjdumpPTXSection(){
ptxfilename = "";
}
std::string getPTXfilename() {return ptxfilename;}
void setPTXfilename(std::string f) {ptxfilename = f;}
virtual void print() {
std::cout << "PTX Section:" << std::endl;
std::cout << "arch: sm_" << getArch() << std::endl;
std::cout << "identifier: " << getIdentifier() << std::endl;
std::cout << "ptx filename: " << getPTXfilename() << std::endl;
std::cout << std::endl;
}
private:
std::string ptxfilename;
};
#endif /* __cuobjdump_h__ */
|