summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMichael Ilseman <milseman@apple.com>2012-09-18 22:02:40 +0000
committerMichael Ilseman <milseman@apple.com>2012-09-18 22:02:40 +0000
commitd2014649e0fc3c630c7530f6da060618c789d78d (patch)
tree418a0f86a38d92b73298a5f0826b272a00827b11 /include
parentb37b6ca4bb9a46bdf3788e7a45454e1cdeca17bd (diff)
downloadllvm-d2014649e0fc3c630c7530f6da060618c789d78d.tar.gz
llvm-d2014649e0fc3c630c7530f6da060618c789d78d.tar.bz2
llvm-d2014649e0fc3c630c7530f6da060618c789d78d.tar.xz
New utility for expanding integer division for targets that don't support it.
Implementation derived from compiler-rt's implementation of signed and unsigned integer division. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164173 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Transforms/Utils/IntegerDivision.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/include/llvm/Transforms/Utils/IntegerDivision.h b/include/llvm/Transforms/Utils/IntegerDivision.h
new file mode 100644
index 0000000000..531ef139dc
--- /dev/null
+++ b/include/llvm/Transforms/Utils/IntegerDivision.h
@@ -0,0 +1,26 @@
+//===- llvm/Transforms/Utils/IntegerDivision.h ------------------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file contains an implementation of 32bit integer division for targets
+// that don't have native support. It's largely derived from compiler-rt's
+// implementation of __udivsi3, but hand-tuned for targets that prefer less
+// control flow.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef TRANSFORMS_UTILS_INTEGERDIVISION_H
+#define TRANSFORMS_UTILS_INTEGERDIVISION_H
+
+namespace llvm {
+
+ bool expandDivision(BinaryOperator* Div);
+
+} // End llvm namespace
+
+#endif