summaryrefslogtreecommitdiffstats
path: root/llvm/lib/VMCore/Function.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-05-08 03:47:33 +0000
committerChris Lattner <sabre@nondot.org>2003-05-08 03:47:33 +0000
commitbb346d07b53d56806fbd17f036046a50f4dd58ca (patch)
tree97e97fe209b68ed89bed2ccb0c6fda4f6942ef1c /llvm/lib/VMCore/Function.cpp
parentff32eea8f2f3afd68215062144834c18604dafbe (diff)
downloadbcm5719-llvm-bb346d07b53d56806fbd17f036046a50f4dd58ca.tar.gz
bcm5719-llvm-bb346d07b53d56806fbd17f036046a50f4dd58ca.zip
Add more support for intrinsic functions and for varargs stuff
llvm-svn: 6035
Diffstat (limited to 'llvm/lib/VMCore/Function.cpp')
-rw-r--r--llvm/lib/VMCore/Function.cpp36
1 files changed, 36 insertions, 0 deletions
diff --git a/llvm/lib/VMCore/Function.cpp b/llvm/lib/VMCore/Function.cpp
index 3324565654b..0d5f90b45df 100644
--- a/llvm/lib/VMCore/Function.cpp
+++ b/llvm/lib/VMCore/Function.cpp
@@ -8,6 +8,7 @@
#include "llvm/Module.h"
#include "llvm/DerivedTypes.h"
#include "llvm/iOther.h"
+#include "llvm/Intrinsics.h"
#include "Support/LeakDetector.h"
#include "SymbolTableListTraitsImpl.h"
@@ -150,6 +151,41 @@ void Function::dropAllReferences() {
I->dropAllReferences();
}
+/// getIntrinsicID - This method returns the ID number of the specified
+/// function, or LLVMIntrinsic::not_intrinsic if the function is not an
+/// instrinsic, or if the pointer is null. This value is always defined to be
+/// zero to allow easy checking for whether a function is intrinsic or not. The
+/// particular intrinsic functions which correspond to this value are defined in
+/// llvm/Intrinsics.h.
+///
+unsigned Function::getIntrinsicID() const {
+ if (getName().size() <= 5 || getName()[4] != '.' || getName()[0] != 'l' ||
+ getName()[1] != 'l' || getName()[2] != 'v' || getName()[3] != 'm')
+ return 0; // All intrinsics start with 'llvm.'
+
+ switch (getName()[5]) {
+ case 'v':
+ if (getName().size() >= 9) {
+ switch (getName()[8]) {
+ case 's':
+ if (getName() == "llvm.va_start") return LLVMIntrinsic::va_start;
+ break;
+ case 'e':
+ if (getName() == "llvm.va_end") return LLVMIntrinsic::va_end;
+ break;
+ case 'c':
+ if (getName() == "llvm.va_copy") return LLVMIntrinsic::va_copy;
+ break;
+ }
+ }
+ break;
+ }
+ // The "llvm." namespace is reserved!
+ assert(0 && "Unknown LLVM intrinsic function!");
+ return 0;
+}
+
+
//===----------------------------------------------------------------------===//
// GlobalVariable Implementation
//===----------------------------------------------------------------------===//
OpenPOWER on IntegriCloud