summaryrefslogtreecommitdiff
path: root/include/llvm/CallingConv.h
diff options
context:
space:
mode:
authorWesley Peck <peckw@wesleypeck.com>2010-12-15 20:14:09 +0000
committerWesley Peck <peckw@wesleypeck.com>2010-12-15 20:14:09 +0000
commitd364acd3d7b0dd78bc92e168af268a56ff7141d4 (patch)
tree73550d62bfb4d4a7ff722ab2a810f517e5c714ec /include/llvm/CallingConv.h
parent243712720ad1da144d4376bdd854d81260c1beaa (diff)
downloadllvm-d364acd3d7b0dd78bc92e168af268a56ff7141d4.tar.gz
llvm-d364acd3d7b0dd78bc92e168af268a56ff7141d4.tar.bz2
llvm-d364acd3d7b0dd78bc92e168af268a56ff7141d4.tar.xz
Adding target specific calling conventions to support the MBlaze GCC function
attributes "interrupt_handle" and "save_volatiles". Support for lowering these correctly will be in an upcoming commit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121888 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CallingConv.h')
-rw-r--r--include/llvm/CallingConv.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/include/llvm/CallingConv.h b/include/llvm/CallingConv.h
index 2679cb7139..4c5ee62670 100644
--- a/include/llvm/CallingConv.h
+++ b/include/llvm/CallingConv.h
@@ -87,7 +87,14 @@ namespace CallingConv {
/// PTX_Device - Call to a PTX device function.
/// Passes all arguments in register or parameter space.
- PTX_Device = 72
+ PTX_Device = 72,
+
+ /// MBLAZE_INTR - Calling convention used for MBlaze interrupt routines.
+ MBLAZE_INTR = 73,
+
+ /// MBLAZE_INTR - Calling convention used for MBlaze interrupt support
+ /// routines (i.e. GCC's save_volatiles attribute).
+ MBLAZE_SVOL = 74
};
} // End CallingConv namespace