|  | Commit message (Collapse) | Author | Age | Files | Lines | 
|---|
| | 
| 
| 
| 
| 
| | handling to llvm-mc. Reviewed by Owen Anderson.
llvm-svn: 139237 | 
| | 
| 
| 
| 
| 
| | MCTargetAsmLexer; rename createAsmLexer to createMCAsmLexer and createAsmParser to createMCAsmParser.
llvm-svn: 136027 | 
| | 
| 
| 
| 
| 
| | TargetMachine's anymore.
llvm-svn: 135963 | 
| | 
| 
| 
| 
| 
| 
| 
| 
| | to MCRegisterInfo. Also initialize the mapping at construction time.
This patch eliminate TargetRegisterInfo from TargetAsmInfo. It's another step
towards fixing the layering violation.
llvm-svn: 135424 | 
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| | - Each target asm parser now creates its own MCSubtatgetInfo (if needed).
- Changed AssemblerPredicate to take subtarget features which tablegen uses
  to generate asm matcher subtarget feature queries. e.g.
  "ModeThumb,FeatureThumb2" is translated to
  "(Bits & ModeThumb) != 0 && (Bits & FeatureThumb2) != 0".
llvm-svn: 134678 | 
| | 
| 
| 
| 
| 
| | disassembler's disassembler map.
llvm-svn: 127527 | 
| | 
| 
| 
| 
| 
| 
| 
| 
| | 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 | 
| | 
| 
| 
| | llvm-svn: 120298 | 
| | 
| 
| 
| | llvm-svn: 108887 | 
|  | 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 |