| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Add asm parsing support w/ testcases for strex/ldrex family of instructions | Bruno Cardoso Lopes | 2011-03-24 | 2 | -1/+7 | |
| | | | | | llvm-svn: 128236 | |||||
| * | We need to pass the TargetMachine object to the InstPrinter if we are printing | Bill Wendling | 2011-03-21 | 1 | -1/+2 | |
| | | | | | | | | | | the alias of an InstAlias instead of the thing being aliased. Because we need to know the features that are valid for an InstAlias. This is part of a work-in-progress. llvm-svn: 127986 | |||||
| * | Fixed the comparison operator for the enhanced | Sean Callanan | 2011-03-12 | 1 | -7/+2 | |
| | | | | | | | disassembler's disassembler map. llvm-svn: 127527 | |||||
| * | Plug some leaks in edis. | Benjamin Kramer | 2011-02-24 | 1 | -0/+4 | |
| | | | | | | | | - Don't leak parsed operands during tokenization. - Don't leak printed insts in llvm-mc. llvm-svn: 126381 | |||||
| * | Fixed a bug in the enhanced disassembler that caused | Sean Callanan | 2011-02-23 | 1 | -3/+17 | |
| | | | | | | | | | it to ignore valid uses of FS and GS as additional base registers in address computations. Added a test case for this. llvm-svn: 126302 | |||||
| * | Fix comparator used for looking up previously instantiated EDDisassemblers. | Shantonu Sen | 2011-02-09 | 1 | -2/+4 | |
| | | | | | | | | | | Now, Syntax is only used as a tie-breaker if the Arch matches. Previously, a request for x86_64 disassembler followed by the i386 disassembler in a single process would return the cached x86_64 disassembler. Fixes <rdar://problem/8958982> llvm-svn: 125215 | |||||
| * | Fixed version of 121434 with no new memory leaks. | Rafael Espindola | 2010-12-10 | 1 | -1/+1 | |
| | | | | | llvm-svn: 121471 | |||||
| * | Revert my previous patch to make the valgrind bots happy. | Rafael Espindola | 2010-12-10 | 1 | -1/+1 | |
| | | | | | llvm-svn: 121461 | |||||
| * | Initial support for the cfi directives. This is just enough to get | Rafael Espindola | 2010-12-09 | 1 | -1/+1 | |
| | | | | | | | | | | | | f: .cfi_startproc nop .cfi_endproc assembled (on ELF). llvm-svn: 121434 | |||||
| * | Merge System into Support. | Michael J. Spencer | 2010-11-29 | 4 | -4/+4 | |
| | | | | | llvm-svn: 120298 | |||||
| * | Make some symbols static, move classes into anonymous namespaces. | Benjamin Kramer | 2010-10-22 | 1 | -13/+10 | |
| | | | | | llvm-svn: 117111 | |||||
| * | Fixed a crash in the enhanced disassembler where | Sean Callanan | 2010-09-23 | 1 | -0/+2 | |
| | | | | | | | | because of the lack of a newline, AsmToken::Eof was being found instead of AsmToken::EndOfStatement. llvm-svn: 114621 | |||||
| * | Revert "CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally." | Michael J. Spencer | 2010-09-13 | 1 | -2/+1 | |
| | | | | | | | | | | | This reverts commit r113632 Conflicts: cmake/modules/AddLLVM.cmake llvm-svn: 113819 | |||||
| * | CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally. | Michael J. Spencer | 2010-09-10 | 1 | -1/+2 | |
| | | | | | llvm-svn: 113632 | |||||
| * | Let's get those buildbots green: #include is needed in the header, not just ↵ | Owen Anderson | 2010-07-20 | 2 | -1/+1 | |
| | | | | | | | the implementation. llvm-svn: 108912 | |||||
| * | apparently also missing an include. | Chris Lattner | 2010-07-20 | 1 | -0/+1 | |
| | | | | | llvm-svn: 108908 | |||||
| * | this is in System | Chris Lattner | 2010-07-20 | 1 | -1/+1 | |
| | | | | | llvm-svn: 108895 | |||||
| * | turn this into a normal header. | Chris Lattner | 2010-07-20 | 1 | -8/+11 | |
| | | | | | llvm-svn: 108891 | |||||
| * | hopefully heal the linux builders | Chris Lattner | 2010-07-20 | 1 | -0/+1 | |
| | | | | | llvm-svn: 108890 | |||||
| * | there is no reason to dynamically generate a static header. | Chris Lattner | 2010-07-20 | 4 | -16/+71 | |
| | | | | | llvm-svn: 108887 | |||||
| * | drop edinfo.inc into the objdir for src!=objdir builds. | Chris Lattner | 2010-07-20 | 1 | -2/+2 | |
| | | | | | llvm-svn: 108886 | |||||
| * | Update header. | Eric Christopher | 2010-07-20 | 1 | -1/+1 | |
| | | | | | llvm-svn: 108883 | |||||
| * | hopefully teach cmake to build the .inc file. | Chris Lattner | 2010-07-20 | 1 | -0/+9 | |
| | | | | | llvm-svn: 108874 | |||||
| * | cmake too | Chris Lattner | 2010-07-20 | 1 | -0/+6 | |
| | | | | | llvm-svn: 108872 | |||||
| * | forgot to add a file | Chris Lattner | 2010-07-20 | 1 | -0/+21 | |
| | | | | | llvm-svn: 108870 | |||||
| * | start straightening out libedis's dependencies and make it fit | Chris Lattner | 2010-07-20 | 8 | -0/+1778 | |
| better in the llvm world. Among other things, this changes: 1. The guts of libedis are now moved into lib/MC/MCDisassembler 2. llvm-mc now depends on lib/MC/MCDisassembler, not tools/edis, so edis and mc don't have to be built in series. 3. lib/MC/MCDisassembler no longer depends on the C api, the C API depends on it. 4. Various code cleanup changes. There is still a lot to be done to make edis fit with the llvm design, but this is an incremental step in the right direction. llvm-svn: 108869 | ||||||

