Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hpvm-release
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
llvm
hpvm-release
Commits
e72e919b
Commit
e72e919b
authored
5 years ago
by
Akash Kothari
Browse files
Options
Downloads
Patches
Plain Diff
Adding const to getters in DFG and nodes classes
parent
2dd797f5
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hpvm/include/SupportVISC/DFGraph.h
+24
-24
24 additions, 24 deletions
hpvm/include/SupportVISC/DFGraph.h
with
24 additions
and
24 deletions
hpvm/include/SupportVISC/DFGraph.h
+
24
−
24
View file @
e72e919b
...
...
@@ -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
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment