summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2013-05-05 02:14:27 +0200
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2014-04-13 01:56:54 +0200
commit41834bdd6016de69273aaa510ea47be660f28f10 (patch)
tree5919d04ad82f39c2378e344ad5371a348fb5c9e1 /include
parentaf84995d06bb792e77e84f9a04361e8b0268e800 (diff)
downloadllvm-41834bdd6016de69273aaa510ea47be660f28f10.tar.gz
llvm-41834bdd6016de69273aaa510ea47be660f28f10.tar.bz2
llvm-41834bdd6016de69273aaa510ea47be660f28f10.tar.xz
[Embtk] Give ability to specify default float abi to use at configure time
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Config/config.h.cmake3
-rw-r--r--include/llvm/Config/config.h.in3
-rw-r--r--include/llvm/Config/llvm-config.h.cmake3
-rw-r--r--include/llvm/Config/llvm-config.h.in3
-rw-r--r--include/llvm/Support/Host.h9
5 files changed, 21 insertions, 0 deletions
diff --git a/include/llvm/Config/config.h.cmake b/include/llvm/Config/config.h.cmake
index d91022829f..2e724af328 100644
--- a/include/llvm/Config/config.h.cmake
+++ b/include/llvm/Config/config.h.cmake
@@ -504,6 +504,9 @@
/* Installation directory for data files */
#cmakedefine LLVM_DATADIR "${LLVM_DATADIR}"
+/* Default float abi to use to all compiler invocations. */
+#cmakedefine LLVM_DEFAULT_TARGET_FLOAT "${LLVM_DEFAULT_TARGET_FLOAT}"
+
/* Default cpu (-mcpu=cpu) to use to all compiler invocations. */
#cmakedefine LLVM_DEFAULT_TARGET_MCPU "${LLVM_DEFAULT_TARGET_MCPU}"
diff --git a/include/llvm/Config/config.h.in b/include/llvm/Config/config.h.in
index f147abbb5d..e262e6ca32 100644
--- a/include/llvm/Config/config.h.in
+++ b/include/llvm/Config/config.h.in
@@ -539,6 +539,9 @@
/* Installation directory for data files */
#undef LLVM_DATADIR
+/* Default float abi to use to all compiler invocations. */
+#undef LLVM_DEFAULT_TARGET_FLOAT
+
/* Default cpu (-mcpu=cpu) to use to all compiler invocations. */
#undef LLVM_DEFAULT_TARGET_MCPU
diff --git a/include/llvm/Config/llvm-config.h.cmake b/include/llvm/Config/llvm-config.h.cmake
index be6338c40c..8a30abf8a7 100644
--- a/include/llvm/Config/llvm-config.h.cmake
+++ b/include/llvm/Config/llvm-config.h.cmake
@@ -25,6 +25,9 @@
/* Installation directory for data files */
#cmakedefine LLVM_DATADIR "${LLVM_DATADIR}"
+/* Default float abi to use to all compiler invocations. */
+#cmakedefine LLVM_DEFAULT_TARGET_FLOAT "${LLVM_DEFAULT_TARGET_FLOAT}"
+
/* Default cpu (-mcpu=cpu) to use to all compiler invocations. */
#cmakedefine LLVM_DEFAULT_TARGET_MCPU "${LLVM_DEFAULT_TARGET_MCPU}"
diff --git a/include/llvm/Config/llvm-config.h.in b/include/llvm/Config/llvm-config.h.in
index 18fdf3fe84..4e066e8421 100644
--- a/include/llvm/Config/llvm-config.h.in
+++ b/include/llvm/Config/llvm-config.h.in
@@ -25,6 +25,9 @@
/* Installation directory for data files */
#undef LLVM_DATADIR
+/* Default float abi to use to all compiler invocations. */
+#undef LLVM_DEFAULT_TARGET_FLOAT
+
/* Default cpu (-mcpu=cpu) to use to all compiler invocations. */
#undef LLVM_DEFAULT_TARGET_MCPU
diff --git a/include/llvm/Support/Host.h b/include/llvm/Support/Host.h
index 192fbd4d64..9a17fb89e6 100644
--- a/include/llvm/Support/Host.h
+++ b/include/llvm/Support/Host.h
@@ -54,6 +54,15 @@ namespace sys {
/// generate by default code for a given target cpu and false otherwise.
bool hasDefaultTargetCpu();
+ /// getDefaultTargetFloat() - Return the default target float abi for which
+ /// the compiler is configured to generate code for, or "" if empty.
+ std::string getDefaultTargetFloat();
+
+ /// hasDefaultTargetFloat() - Return true if the compiler was configured to
+ /// generate by default code for a given floating point abi and false
+ /// otherwise.
+ bool hasDefaultTargetFloat();
+
/// getProcessTriple() - Return an appropriate target triple for generating
/// code to be loaded into the current process, e.g. when using the JIT.
std::string getProcessTriple();