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
268019cc
Commit
268019cc
authored
5 years ago
by
Akash Kothari
Browse files
Options
Downloads
Patches
Plain Diff
Properly Handling CloneFunction with Additional Args -- Partially tested to work
parent
eda0ea1c
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/DFG2LLVM.h
+12
-4
12 additions, 4 deletions
hpvm/include/SupportVISC/DFG2LLVM.h
with
12 additions
and
4 deletions
hpvm/include/SupportVISC/DFG2LLVM.h
+
12
−
4
View file @
268019cc
...
...
@@ -324,11 +324,16 @@ Value* CodeGenTraversal::getStringPointer(const Twine& S, Instruction* IB, const
// F->mutateType(PTy);
//}
void
renameNewArgument
(
Function
*
newF
,
const
Twine
&
argName
){
// Get Last argument in Function Arg List and rename it to given name
Argument
*
lastArg
=
&*
(
newF
->
arg_end
()
-
1
);
lastArg
->
setName
(
argName
);
}
// Creates a function with an additional argument of the specified type and
// name. The previous function is not deleted.
Function
*
CodeGenTraversal
::
addArgument
(
Function
*
F
,
Type
*
Ty
,
const
Twine
&
name
)
{
// Add the argument to argument list
new
Argument
(
Ty
,
name
,
F
);
Argument
*
new_arg
=
new
Argument
(
Ty
,
name
);
// Create the argument type list with added argument types
std
::
vector
<
Type
*>
ArgTypes
;
...
...
@@ -340,8 +345,11 @@ Function *CodeGenTraversal::addArgument(Function* F, Type* Ty, const Twine& name
// function type. We need to change the type of this function to reflect the
// added arguments. So, we create a clone of this function with the correct
// type.
FunctionType
*
FTy
=
FunctionType
::
get
(
F
->
getReturnType
(),
ArgTypes
,
F
->
isVarArg
());
Function
*
newF
=
viscUtils
::
cloneFunction
(
F
,
FTy
,
false
);
FunctionType
*
FTy
=
FunctionType
::
get
(
F
->
getReturnType
(),
ArgTypes
,
F
->
isVarArg
());
Function
*
newF
=
Function
::
Create
(
FTy
,
F
->
getLinkage
(),
F
->
getName
()
+
"_cloned"
,
F
->
getParent
());
renameNewArgument
(
newF
,
name
);
newF
=
viscUtils
::
cloneFunction
(
F
,
newF
,
false
);
// Check if the function is used by a metadata node
if
(
F
->
isUsedByMetadata
())
{
...
...
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