- Apr 07, 2010
-
-
Sean Callanan authored
a simple mapping of register names to IDs to identify register tokens. llvm-svn: 100685
-
Dale Johannesen authored
DBG_VALUE does not generate code. llvm-svn: 100681
-
Anton Korobeynikov authored
It is not ready for public yet. llvm-svn: 100673
-
Anton Korobeynikov authored
llvm-svn: 100672
-
Anton Korobeynikov authored
llvm-svn: 100671
-
Anton Korobeynikov authored
llvm-svn: 100670
-
Anton Korobeynikov authored
llvm-svn: 100669
-
Anton Korobeynikov authored
llvm-svn: 100668
-
Anton Korobeynikov authored
llvm-svn: 100667
-
Anton Korobeynikov authored
llvm-svn: 100666
-
Anton Korobeynikov authored
llvm-svn: 100665
-
Anton Korobeynikov authored
llvm-svn: 100664
-
Anton Korobeynikov authored
llvm-svn: 100663
-
Anton Korobeynikov authored
llvm-svn: 100662
-
Anton Korobeynikov authored
llvm-svn: 100661
-
Anton Korobeynikov authored
llvm-svn: 100660
-
Anton Korobeynikov authored
llvm-svn: 100659
-
Anton Korobeynikov authored
llvm-svn: 100658
-
Anton Korobeynikov authored
llvm-svn: 100657
-
Anton Korobeynikov authored
llvm-svn: 100656
-
Anton Korobeynikov authored
llvm-svn: 100655
-
Anton Korobeynikov authored
llvm-svn: 100654
-
Anton Korobeynikov authored
llvm-svn: 100653
-
Anton Korobeynikov authored
VHADD differs from VHSUB at least on A9 - the former reads both operands in the second cycle, while the latter reads second operand in first cycle. Introduce new itin classes to catch this behavior. Whether this is true for A8 as well is WIP. llvm-svn: 100652
-
Anton Korobeynikov authored
llvm-svn: 100651
-
Anton Korobeynikov authored
Define new itin classes for ARM <-> VFP reg moves to distinguish from NEON ops. Define proper scheduling itinerary for them on A9. A8 TRM does not specify latency for them at all :( llvm-svn: 100650
-
Anton Korobeynikov authored
llvm-svn: 100649
-
Anton Korobeynikov authored
llvm-svn: 100648
-
Anton Korobeynikov authored
llvm-svn: 100647
-
Anton Korobeynikov authored
Make use of new reserved/required scheduling stuff: introduce VFP and NEON locks to model domain cross stalls precisly. llvm-svn: 100646
-
Anton Korobeynikov authored
llvm-svn: 100643
-
Anton Korobeynikov authored
llvm-svn: 100642
-
Anton Korobeynikov authored
llvm-svn: 100641
-
Bob Wilson authored
Radar 7770501. llvm-svn: 100568
-
- Apr 05, 2010
-
-
Chris Lattner authored
isn't well specified. ARM really needs to have its instprinter finished at some point. llvm-svn: 100439
-
Chris Lattner authored
with spaces in them. Sym->getName() != OS << *Sym llvm-svn: 100434
-
Johnny Chen authored
llvm-svn: 100404
-
Johnny Chen authored
uint32_t insn; MemoryObject.readBytes(Address, 4, (uint8_t*)&insn, NULL) to read 4 bytes of memory contents into a 32-bit uint variable. This leaves the interpretation of byte order up to the host machine and causes PPC test cases of arm-tests, neon-tests, and thumb-tests to fail. Fixed to use a byte array for reading the memory contents and shift the bytes into place for the 32-bit uint variable in the ARM case and 16-bit halfword in the Thumb case. llvm-svn: 100403
-
Jakob Stoklund Olesen authored
When a target instruction wants to set target-specific flags, it should simply set bits in the TSFlags bit vector defined in the Instruction TableGen class. This works well because TableGen resolves member references late: class I : Instruction { AddrMode AM = AddrModeNone; let TSFlags{3-0} = AM.Value; } let AM = AddrMode4 in def ADD : I; TSFlags gets the expected bits from AddrMode4 in this example. llvm-svn: 100384
-
Evan Cheng authored
llvm-svn: 100380
-