aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/PowerPC/AsmParser/Makefile
diff options
context:
space:
mode:
authorUlrich Weigand <ulrich.weigand@de.ibm.com>2013-05-03 19:49:39 +0000
committerUlrich Weigand <ulrich.weigand@de.ibm.com>2013-05-03 19:49:39 +0000
commit5e220753ff81ac5cbee874e7c00c76c7fbe0d20a (patch)
treed88d5e639841ab47d78e3fb9b0af0f75417723ae /lib/Target/PowerPC/AsmParser/Makefile
parent968d689ec30a0df63d252b8193664e01944edb8b (diff)
downloadexternal_llvm-5e220753ff81ac5cbee874e7c00c76c7fbe0d20a.zip
external_llvm-5e220753ff81ac5cbee874e7c00c76c7fbe0d20a.tar.gz
external_llvm-5e220753ff81ac5cbee874e7c00c76c7fbe0d20a.tar.bz2
[PowerPC] Add assembler parser
This adds assembler parser support to the PowerPC back end. The parser will run for any powerpc-*-* and powerpc64-*-* triples, but was tested only on 64-bit Linux. The supported syntax is intended to be compatible with the GNU assembler. The parser does not yet support all PowerPC instructions, but it does support anything that is generated by LLVM itself. There is no support for testing restricted instruction sets yet, i.e. the parser will always accept any instructions it knows, no matter what feature flags are given. Instruction operands will be checked for validity and errors generated. (Error handling in general could still be improved.) The patch adds a number of test cases to verify instruction and operand encodings. The tests currently cover all instructions from the following PowerPC ISA v2.06 Book I facilities: Branch, Fixed-point, Floating-Point, and Vector. Note that a number of these instructions are not yet supported by the back end; they are marked with FIXME. A number of follow-on check-ins will add extra features. When they are all included, LLVM passes all tests (including bootstrap) when using clang -cc1as as the system assembler. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181050 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/AsmParser/Makefile')
-rw-r--r--lib/Target/PowerPC/AsmParser/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/Target/PowerPC/AsmParser/Makefile b/lib/Target/PowerPC/AsmParser/Makefile
new file mode 100644
index 0000000..c8a8915
--- /dev/null
+++ b/lib/Target/PowerPC/AsmParser/Makefile
@@ -0,0 +1,15 @@
+##===- lib/Target/PowerPC/AsmParser/Makefile ----------------*- Makefile -*-===##
+#
+# The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+#
+##===----------------------------------------------------------------------===##
+LEVEL = ../../../..
+LIBRARYNAME = LLVMPowerPCAsmParser
+
+# Hack: we need to include 'main' PowerPC target directory to grab private headers
+CPP.Flags += -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/..
+
+include $(LEVEL)/Makefile.common