llvm-6502/lib
Chris Lattner 8b0f7a7d86 Add and commonize encoder support for all immediates.
Stub out some dummy fixups to make things work.

We can now emit fixups like this:
	subl	$20, %esp               ## encoding: [0x83,0xec,A]
                                        ##   fixup A - offset: 2, value: 20, kind: fixup_1byte_imm

Emitting $20 as a single-byte fixup to be later resolved
by the assembler is ridiculous of course (vs just emitting
the byte) but this is a failure of the matcher, which 
should be producing an imm of 20, not an MCExpr of 20.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95860 91177308-0d34-0410-b5e6-96231b3b80d8
2010-02-11 07:06:31 +00:00
..
Analysis Use an AssemblyAnnotatorWriter to clean up IVUsers' debug output. 2010-02-10 20:42:37 +00:00
Archive From PR6228: 2010-02-04 06:19:43 +00:00
AsmParser Reintroduce the InlineHint function attribute. 2010-02-06 01:16:28 +00:00
Bitcode Function-local metadata whose operands had been optimized to no longer refer to function-local IR were not getting written by BitcodeWriter; solution is for these metadata to be enumerated just like global metadata. 2010-02-06 01:21:09 +00:00
CodeGen Fix to get it to compile. 2010-02-11 01:15:27 +00:00
CompilerDriver Better error message. 2010-01-26 14:55:16 +00:00
ExecutionEngine Make it possible to create multiple JIT instances at the same time, by removing 2010-02-11 01:07:39 +00:00
Linker Linker should not remap null operands of metadata 2010-02-06 01:31:55 +00:00
MC MC: Switch MCFixup to just hold an MCExpr pointer instead of index into the 2010-02-10 04:47:08 +00:00
Support Fix "the the" and similar typos. 2010-02-10 16:03:48 +00:00
System Add llvm::Program::ChangeStderrToBinary(). 2010-01-28 06:42:08 +00:00
Target Add and commonize encoder support for all immediates. 2010-02-11 07:06:31 +00:00
Transforms Rename ValueRequiresCast to ShouldOptimizeCast, to better reflect 2010-02-11 06:26:33 +00:00
VMCore Fix some of the memcheck errors found in the JIT unittests. 2010-02-11 06:41:30 +00:00
Makefile