aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/ARM/ARMCodeEmitter.cpp
AgeCommit message (Expand)Author
2008-12-10Fix MachineCodeEmitter to use uintptr_t instead of intptr_t. This avoids some...Evan Cheng
2008-11-20Fix a thinko. MO is getOperand(i-1) so we don't have to adjust e.Evan Cheng
2008-11-19Eliminate a compile time warning.Evan Cheng
2008-11-14Fix MOVrx, MOVsrl_flag, and MOVsra_flag encodings.Evan Cheng
2008-11-13Handle the rest of pseudo instructions.Evan Cheng
2008-11-13Don't forget to emit stubs for function GV's emitted in CONSTPOOL_ENTRY's.Evan Cheng
2008-11-13Missed a break statement.Evan Cheng
2008-11-13Fix pre- and post-indexed load / store encoding bugs.Evan Cheng
2008-11-12Address mode immediate offset has already been divided by 4.Evan Cheng
2008-11-12Fix a VFP binary arithmetic instruction encoding bug.Evan Cheng
2008-11-12Fix address mode 3 immediate offset mode encoding.Evan Cheng
2008-11-12Consolidate formats; fix FCMPED etc. encodings.Evan Cheng
2008-11-12Fix VFP conversion instruction encodings.Evan Cheng
2008-11-12Fix encoding of single-precision VFP registers.Evan Cheng
2008-11-12VFP fld / fst immediate field is multiplied by 4.Evan Cheng
2008-11-11Fix FMDRR encoding.Evan Cheng
2008-11-11Handle floating point constpool_entry's.Evan Cheng
2008-11-11Encode VFP load / store instructions.Evan Cheng
2008-11-11Encode VFP conversion instructions.Evan Cheng
2008-11-11Encode VFP arithmetic instructions.Evan Cheng
2008-11-10Rename isGVNonLazyPtr to isIndirectSym to reflect how it will be used.Evan Cheng
2008-11-08Tell ARMJITInfo if codegen relocation is PIC. It changes how function stubs a...Evan Cheng
2008-11-08Fix relocation for calls to external symbols.Evan Cheng
2008-11-08Skip over two-address use operands.Evan Cheng
2008-11-08Handle ARM machine constantpool entry with non-lazy ptr.Evan Cheng
2008-11-07More code clean up.Evan Cheng
2008-11-07Get PIC jump table working.Evan Cheng
2008-11-07Jump table JIT support. Work in progress.Evan Cheng
2008-11-07Encode misc arithmetic instructions.Evan Cheng
2008-11-06Encode extend instructions; more clean up.Evan Cheng
2008-11-06- Improve naming consistency: Branch -> BrFrm, BranchMisc -> BrMiscFrm.Evan Cheng
2008-11-06Remove opcode from instruction TS flags; add MOVCC support; fix addrmode3 enc...Evan Cheng
2008-11-06Fix so_imm encoding bug; add support for MOVi2pieces.Evan Cheng
2008-11-06Fix encoding of multiple instructions with 3 src operands; also handle smmul,...Evan Cheng
2008-11-05Encode pic load / store instructions; fix some encoding bugs.Evan Cheng
2008-11-05Restructure ARM code emitter to use instruction formats instead of addressing...Evan Cheng
2008-11-04Debug output tweak.Evan Cheng
2008-11-04Handle ARM machine constantpool entries.Evan Cheng
2008-11-03Add binary encoding support for multiply instructions. Some blanks left to fi...Jim Grosbach
2008-10-31Use better data structure for ConstPoolId2AddrMap.Evan Cheng
2008-10-31Actually make debug output understandable.Evan Cheng
2008-10-31Encode PICADD; some code clean up.Evan Cheng
2008-10-30I think we got non-machine specific constpool entries covered.Evan Cheng
2008-10-29Correct way to handle CONSTPOOL_ENTRY instructions.Evan Cheng
2008-10-28Support for constant islands in the ARM JIT.Jim Grosbach
2008-10-07Encode the conditional execution predicate when JITing.Jim Grosbach
2008-10-07Clarify naming and correct conditional so that CMP and CMN instructions get t...Jim Grosbach
2008-10-03Indexing off by one resulted in errant encoding of source register forJim Grosbach
2008-10-03NeedStub/DoesntNeedStub logic was reversed, leading to not using a stubJim Grosbach
2008-10-03Switch the MachineOperand accessors back to the short names likeDan Gohman