diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-04-02 22:27:38 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-04-02 22:27:38 +0000 |
commit | b68a3ee82a8a34f7bae1d68d76f574e76a5535ef (patch) | |
tree | e2d497f6b8dc8c2f031afbc3d5dd3ff4c7649dd3 /Makefile.rules | |
parent | 762647673379dbcff6bbba6167b0b1b0d658ba9d (diff) |
Second try of initial ARM/Thumb disassembler check-in. It consists of a tablgen
backend (ARMDecoderEmitter) which emits the decoder functions for ARM and Thumb,
and the disassembler core which invokes the decoder function and builds up the
MCInst based on the decoded Opcode.
Reviewed by Chris Latter and Bob Wilson.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100233 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.rules')
-rw-r--r-- | Makefile.rules | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.rules b/Makefile.rules index 7f298a9954..9a6280bf7f 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -1612,6 +1612,11 @@ $(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir $(Echo) "Building $(<F) intrinsics information with tblgen" $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $< +$(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir + $(Echo) "Building $(<F) decoder tables with tblgen" + $(Verb) $(TableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $< + + clean-local:: -$(Verb) $(RM) -f $(INCFiles) |