Skip to content
Snippets Groups Projects
Commit e72e919b authored by Akash Kothari's avatar Akash Kothari
Browse files

Adding const to getters in DFG and nodes classes

parent 2dd797f5
No related branches found
No related tags found
No related merge requests found
......@@ -95,19 +95,19 @@ public:
DFEdgeList.push_back(E);
}
DFNode* getEntry() {
DFNode* getEntry() const {
return Entry;
}
DFNode* getExit() {
DFNode* getExit() const {
return Exit;
}
bool isEntry(DFNode* N) {
bool isEntry(DFNode* N) const {
return N == Entry;
}
bool isExit(DFNode* N) {
bool isExit(DFNode* N) const {
return N == Exit;
}
......@@ -155,7 +155,7 @@ public:
//===--------------------------------------------------------------------===//
DFInternalNode* getParent() {
DFInternalNode* getParent() const {
return Parent;
}
......@@ -318,7 +318,7 @@ public:
return II->getCalledFunction()->getName().equals("llvm.visc.launch");
}
StructType* getOutputType() {
StructType* getOutputType() const {
return OutputType;
}
......@@ -336,7 +336,7 @@ public:
OutDFEdges.push_back(E);
}
Function* getFuncPointer() {
Function* getFuncPointer() const {
return FuncPointer;
}
......@@ -344,27 +344,27 @@ public:
FuncPointer = _FuncPointer;
}
IntrinsicInst* getInstruction() {
IntrinsicInst* getInstruction() const {
return II;
}
DFInternalNode* getParent() {
DFInternalNode* getParent() const {
return Parent;
}
unsigned getNumOfDim() {
unsigned getNumOfDim() const {
return NumOfDim;
}
std::vector<Value*> getDimLimits() {
std::vector<Value*> getDimLimits() const {
return DimLimits;
}
int getLevel() {
int getLevel() const {
return Level;
}
int getRank() {
int getRank() const {
return Rank;
}
......@@ -393,7 +393,7 @@ public:
Tag = T;
}
Function* getGenFunc() {
Function* getGenFunc() const {
return GenFunc;
}
......@@ -425,7 +425,7 @@ public:
return;
}
bool hasX86GenFuncForTarget(visc::Target T) {
bool hasX86GenFuncForTarget(visc::Target T) const {
switch (T) {
case visc::CPU_TARGET:
return GenFuncInfo.cpu_hasX86Func;
......@@ -505,7 +505,7 @@ public:
Tag = viscUtils::getUpdatedTag(Tag,T);
}
Function* getGenFuncForTarget(visc::Target T) {
Function* getGenFuncForTarget(visc::Target T) const {
switch (T) {
case visc::CPU_TARGET:
return GenFuncs.CPUGenFunc;
......@@ -644,7 +644,7 @@ public:
void addEdgeToDFGraph(DFEdge* E);
DFGraph* getChildGraph() {
DFGraph* getChildGraph() const {
return childGraph;
}
......@@ -733,7 +733,7 @@ public:
}
DFNode* getSourceDF() {
DFNode* getSourceDF() const {
return SrcDF;
}
......@@ -741,7 +741,7 @@ public:
SrcDF = N;
}
DFNode* getDestDF() {
DFNode* getDestDF() const {
return DestDF;
}
......@@ -749,11 +749,11 @@ public:
DestDF = N;
}
bool getEdgeType() {
bool getEdgeType() const {
return EdgeType;
}
unsigned getSourcePosition() {
unsigned getSourcePosition() const {
return SourcePosition;
}
......@@ -761,7 +761,7 @@ public:
SourcePosition = i;
}
unsigned getDestPosition() {
unsigned getDestPosition() const {
return DestPosition;
}
......@@ -769,11 +769,11 @@ public:
DestPosition = i;
}
Type* getType() {
Type* getType() const {
return ArgType;
}
bool isStreamingEdge() {
bool isStreamingEdge() const {
return isStreaming;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment