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
0696e087
Commit
0696e087
authored
8 years ago
by
Prakalp Srivastava
Browse files
Options
Downloads
Patches
Plain Diff
Changes to intrinsics to allow optimizations for merge
parent
2dee642f
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
llvm/include/llvm/IR/IntrinsicsVISC.td
+9
-9
9 additions, 9 deletions
llvm/include/llvm/IR/IntrinsicsVISC.td
with
9 additions
and
9 deletions
llvm/include/llvm/IR/IntrinsicsVISC.td
+
9
−
9
View file @
0696e087
...
...
@@ -110,17 +110,17 @@ let TargetPrefix = "visc" in {
/* Find associated dataflow node intrinsic -
* i8* llvm.visc.getNode();
*/
def int_visc_getNode : Intrinsic<[llvm_ptr_ty], [], []>;
def int_visc_getNode : Intrinsic<[llvm_ptr_ty], [], [
IntrNoMem
]>;
/* Find parent dataflow node intrinsic -
* i8* llvm.visc.getParentNode(i8*);
*/
def int_visc_getParentNode : Intrinsic<[llvm_ptr_ty], [llvm_ptr_ty], []>;
def int_visc_getParentNode : Intrinsic<[llvm_ptr_ty], [llvm_ptr_ty], [
IntrNoMem
]>;
/* Find the number of dimensions of a dataflow node intrinsic -
* i32 llvm.visc.getNumDims(i8*);
*/
def int_visc_getNumDims : Intrinsic<[llvm_i32_ty], [llvm_ptr_ty], []>;
def int_visc_getNumDims : Intrinsic<[llvm_i32_ty], [llvm_ptr_ty], [
IntrNoMem
]>;
/* Find the unique indentifier of a dataflow node (with respect to his parent
* node) in the specified dimension intrinsic -
...
...
@@ -132,13 +132,13 @@ let TargetPrefix = "visc" in {
/* i32 llvm.visc.getNodeInstanceID.[xyz](i8*);
*/
def int_visc_getNodeInstanceID_x : Intrinsic<[llvm_i32_ty], [llvm_ptr_ty],
[]>;
[
IntrNoMem
]>;
def int_visc_getNodeInstanceID_y : Intrinsic<[llvm_i32_ty], [llvm_ptr_ty],
[]>;
[
IntrNoMem
]>;
def int_visc_getNodeInstanceID_z : Intrinsic<[llvm_i32_ty], [llvm_ptr_ty],
[]>;
[
IntrNoMem
]>;
/* Find the number of instances of a dataflow node in the specified dimension
* intrinsic -
...
...
@@ -150,13 +150,13 @@ let TargetPrefix = "visc" in {
/* i32 llvm.visc.getNumNodeInstances.[xyz](i8*);
*/
def int_visc_getNumNodeInstances_x : Intrinsic<[llvm_i32_ty], [llvm_ptr_ty],
[]>;
[
IntrNoMem
]>;
def int_visc_getNumNodeInstances_y : Intrinsic<[llvm_i32_ty], [llvm_ptr_ty],
[]>;
[
IntrNoMem
]>;
def int_visc_getNumNodeInstances_z : Intrinsic<[llvm_i32_ty], [llvm_ptr_ty],
[]>;
[
IntrNoMem
]>;
/* Local Barrier
* void llvm.visc.barrier();
...
...
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