- Jul 20, 2010
-
-
Chris Lattner authored
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
-
- Jan 24, 2010
-
-
Chris Lattner authored
llvm-svn: 94378
-
- Jan 22, 2010
-
-
Chris Lattner authored
missing ones are libsupport, libsystem and libvmcore. libvmcore is currently blocked on bugpoint, which uses EH. Once it stops using EH, we can switch it off. This #if 0's out 3 unit tests, because gtest requires RTTI information. Suggestions welcome on how to fix this. llvm-svn: 94164
-
Chris Lattner authored
llvm-svn: 94129
-
- Jun 24, 2009
-
-
Daniel Dunbar authored
- Lives inside new library lib/MC (LLVMMC.a) llvm-svn: 74013
-
- Jan 09, 2009
-
-
Misha Brukman authored
llvm-svn: 61991
-
- Dec 29, 2007
-
-
Chris Lattner authored
llvm-svn: 45415
-
- Oct 24, 2005
-
-
Chris Lattner authored
llvm-svn: 23940
-
- Nov 14, 2004
-
-
Reid Spencer authored
llvm-svn: 17773
-
- Nov 12, 2004
-
-
Reid Spencer authored
llvm-svn: 17695
-
- Oct 28, 2004
-
-
Reid Spencer authored
llvm-svn: 17286
-
- Aug 29, 2004
-
-
Reid Spencer authored
independence of the tool. llvm-svn: 16092
-
- Jul 02, 2004
-
-
Reid Spencer authored
llvm-svn: 14555
-
- Jun 30, 2004
-
-
Reid Spencer authored
is no more. llvm-svn: 14498
-
- Jun 07, 2004
-
-
Reid Spencer authored
will (eventually) provide statistical analysis of bytecode files as well as the ability to dump them in a low level format (slot numbers not resolved). The purpose of this is to aid in the Type!=Value change of bug 122. With this initial release, llvm-abcd merely dumps out the bytecode. However, the infrastructure for separating bytecode parsing from handling the parsing events is in place. The style chosen is similar to SAX XML parsing where a handler object is called to handlign the parsing events. This probably isn't useful to anyone but me right now as there is no analysis yet, and the dumper doesn't work on every bytecode file. It will probably be useful by the end of this week. Note that there is some duplication of code from the bytecode reader. This was done to eliminate errors from being introduced in the reader and to minimize the impact to other LLVM developers. At some point, the Analyzer and the Reader will be integrated to use the same infrastructure. Also, sorry for the minor change to Instruction.h but I just couldn't bring myself to write code that depends on Instruction internals. llvm-svn: 14048
-