Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add support for the VIA PadLock instructions. | Joerg Sonnenberger | 2011-04-04 | 1 | -0/+2 |
| | | | | llvm-svn: 128826 | ||||
* | Use array_lengthof | Joerg Sonnenberger | 2011-04-04 | 1 | -2/+3 |
| | | | | llvm-svn: 128823 | ||||
* | Change loops to derive the number of tables automatically | Joerg Sonnenberger | 2011-04-04 | 1 | -2/+2 |
| | | | | llvm-svn: 128818 | ||||
* | X86 table-generator and disassembler support for the AVX | Sean Callanan | 2011-03-15 | 1 | -3/+58 |
| | | | | | | | | | instruction set. This code adds support for the VEX prefix and for the YMM registers accessible on AVX-enabled architectures. Instruction table support that enables AVX instructions for the disassembler is in an upcoming patch. llvm-svn: 127644 | ||||
* | Constify another 2 disassembler tables. | Benjamin Kramer | 2010-10-23 | 1 | -2/+3 |
| | | | | llvm-svn: 117208 | ||||
* | Make the disassembler tables const so they end up in read-only memory. | Benjamin Kramer | 2010-10-23 | 1 | -5/+4 |
| | | | | llvm-svn: 117206 | ||||
* | Make some symbols static, move classes into anonymous namespaces. | Benjamin Kramer | 2010-10-22 | 1 | -5/+3 |
| | | | | llvm-svn: 117111 | ||||
* | Fix a bunch of namespace polution. | Dan Gohman | 2010-04-15 | 1 | -2/+2 |
| | | | | llvm-svn: 101376 | ||||
* | Suppress compiler warning. | Daniel Dunbar | 2009-12-23 | 1 | -0/+2 |
| | | | | llvm-svn: 91959 | ||||
* | fix build and while at it remove a redudant include | Nuno Lopes | 2009-12-19 | 1 | -2/+0 |
| | | | | llvm-svn: 91774 | ||||
* | More bzero -> memset that I missed. | Daniel Dunbar | 2009-12-19 | 1 | -1/+1 |
| | | | | llvm-svn: 91757 | ||||
* | Table-driven disassembler for the X86 architecture (16-, 32-, and 64-bit | Sean Callanan | 2009-12-19 | 1 | -0/+603 |
incarnations), integrated into the MC framework. The disassembler is table-driven, using a custom TableGen backend to generate hierarchical tables optimized for fast decode. The disassembler consumes MemoryObjects and produces arrays of MCInsts, adhering to the abstract base class MCDisassembler (llvm/MC/MCDisassembler.h). The disassembler is documented in detail in - lib/Target/X86/Disassembler/X86Disassembler.cpp (disassembler runtime) - utils/TableGen/DisassemblerEmitter.cpp (table emitter) You can test the disassembler by running llvm-mc -disassemble for i386 or x86_64 targets. Please let me know if you encounter any problems with it. llvm-svn: 91749 |