index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Target
/
ARM
/
Disassembler
/
ThumbDisassemblerCore.h
Age
Commit message (
Expand
)
Author
2011-03-28
Fix ARM disassembly for PLD/PLDW/PLI which suffers from code rot and add some...
Johnny Chen
2011-03-26
Fixed the t2PLD and friends disassembly and add two test cases.
Johnny Chen
2011-03-25
Fix DisassembleThumb2DPReg()'s handling of RegClass. Cannot hardcode GPRRegC...
Johnny Chen
2011-03-25
DisassembleThumb2LdSt() did not handle t2LDRs correctly with respect to RegCl...
Johnny Chen
2011-03-25
Modify DisassembleThumb2LdStEx() to be more robust/correct in light of recent...
Johnny Chen
2011-03-25
Modify the wrong logic in the assert of DisassembleThumb2LdStDual() (the regi...
Johnny Chen
2011-03-24
T2 Load/Store Multiple:
Johnny Chen
2011-03-22
Avoid -Wunused-variable in -asserts builds
Matt Beaumont-Gay
2011-03-18
The disassembler for Thumb was wrongly adding 4 to the computed imm32 offset.
Johnny Chen
2011-03-17
It used to be that t_addrmode_s4 was used for both:
Johnny Chen
2011-02-28
Add missing whitespace in the formatting.
Kevin Enderby
2011-02-28
Fix the arm's disassembler for blx that was building an MCInst without the
Kevin Enderby
2011-02-18
Add assembly parsing support for "msr" and also fix its encoding. Also add
Bruno Cardoso Lopes
2011-02-14
Fix encoding and add parsing support for the arm/thumb CPS instruction:
Bruno Cardoso Lopes
2011-02-08
Revert both r121082 (which broke a bunch of constant pool stuff) and r125074 ...
Owen Anderson
2010-12-07
Second attempt at converting Thumb2's LDRpci, including updating the gazillio...
Owen Anderson
2010-11-30
Simplify the encoding of reg+/-imm12 values that allow PC-relative encoding. ...
Owen Anderson
2010-11-29
Pseudo-ize Thumb2 jump tables with explicit MC lowering to the raw
Jim Grosbach
2010-11-16
Encode the multi-load/store instructions with their respective modes ('ia',
Bill Wendling
2010-11-03
Add support to match @llvm.prefetch to pld / pldw / pli. rdar://8601536.
Evan Cheng
2010-10-13
Detabify and clean up 80 column violations.
Jim Grosbach
2010-08-17
Change ARM PKHTB and PKHBT instructions to use a shift_imm operand to avoid
Bob Wilson
2010-08-13
Move the Thumb2 SSAT and USAT optional shift operator out of the
Bob Wilson
2010-08-13
Refactor the code for disassembling Thumb2 saturate instructions along the
Bob Wilson
2010-08-11
Changed the format of DMBsy, DSBsy, and friends from Pseudo to MiscFrm.
Johnny Chen
2010-07-30
Many Thumb2 instructions can reference the full ARM register set (i.e.,
Jim Grosbach
2010-07-16
Add basic support to code-gen the ARM/Thumb2 bit-field insert (BFI) instruction
Jim Grosbach
2010-06-18
Start TargetRegisterClass indices at 0 instead of 1, so that
Dan Gohman
2010-04-21
Modified some assert() msg strings; no other functionality change.
Johnny Chen
2010-04-21
Thumb instructions which have reglist operands at the end and predicate operands
Johnny Chen
2010-04-20
Better error-handling of getBitFieldInvMask() where msb < lsb (encoding error),
Johnny Chen
2010-04-20
Better error-handling for DisassembleThumb2DPModImm() with 2-reg operands where
Johnny Chen
2010-04-19
Better error-handling for DisassembleThumb2DPSoReg() where the 3-reg operand
Johnny Chen
2010-04-15
Wrap the error msgs in DEBUG() macro so that they won't appear in NDEBUG build.
Johnny Chen
2010-04-14
For t2BFI disassembly, apply the same error checking as in r101205.
Johnny Chen
2010-04-14
Fixed another assert exposed by fuzzing. The utility function getRegisterEnum()
Johnny Chen
2010-04-07
Fixed warnings pointed out by clang.
Johnny Chen
2010-04-02
Second try of initial ARM/Thumb disassembler check-in. It consists of a tablgen
Johnny Chen