- Jul 30, 2009
-
-
Devang Patel authored
Thanks Benjamin Kramer! llvm-svn: 77619
-
Daniel Dunbar authored
llvm-svn: 77617
-
Devang Patel authored
llvm-svn: 77615
-
Daniel Dunbar authored
llvm-svn: 77614
-
David Goodwin authored
llvm-svn: 77611
-
Daniel Dunbar authored
llvm-svn: 77605
-
Devang Patel authored
llvm-svn: 77604
-
Dan Gohman authored
llvm-svn: 77602
-
Dan Gohman authored
classes. And define its SubRegClassList. llvm-svn: 77601
-
Chris Lattner authored
llvm-svn: 77598
-
Benjamin Kramer authored
llvm-svn: 77597
-
Sanjiv Gupta authored
Allow targets to define libcall names for mem(cpy,set,move) intrinsics, rather than hardcoding them in DAG lowering. llvm-svn: 77586
-
Evan Cheng authored
llvm-svn: 77584
-
Evan Cheng authored
Optimize some common usage patterns of atomic built-ins __sync_add_and_fetch() and __sync_sub_and_fetch. When the return value is not used (i.e. only care about the value in the memory), x86 does not have to use add to implement these. Instead, it can use add, sub, inc, dec instructions with the "lock" prefix. This is currently implemented using a bit of instruction selection trick. The issue is the target independent pattern produces one output and a chain and we want to map it into one that just output a chain. The current trick is to select it into a merge_values with the first definition being an implicit_def. The proper solution is to add new ISD opcodes for the no-output variant. DAG combiner can then transform the node before it gets to target node selection. Problem #2 is we are adding a whole bunch of x86 atomic instructions when in fact these instructions are identical to the non-lock versions. We need a way to add target specific information to target nodes and have this information carried over to machine instructions. Asm printer (or JIT) can use this information to add the "lock" prefix. llvm-svn: 77582
-
Daniel Dunbar authored
a Twine, e.g., for names). - I am a little ambivalent about this; we don't want the string conversion of utostr, but using overload '+' mixed with string and integer arguments is sketchy. On the other hand, this particular usage is something of an idiom. llvm-svn: 77579
-
Sanjiv Gupta authored
declaration for them. llvm-svn: 77578
-
Daniel Dunbar authored
explicitly. llvm-svn: 77576
-
Andreas Bolka authored
llvm-svn: 77570
-
Nate Begeman authored
llvm-svn: 77568
-
Dan Gohman authored
due to x86 encoding restrictions. This is currently off by default because it may cause code quality regressions. This is for PR4572. llvm-svn: 77565
-
Devang Patel authored
llvm-svn: 77559
-
Dan Gohman authored
llvm-svn: 77558
-
Bob Wilson authored
llvm-svn: 77557
-
Dan Gohman authored
llvm-svn: 77553
-
Devang Patel authored
llvm-svn: 77549
-
Evan Cheng authored
llvm-svn: 77522
-
Evan Cheng authored
llvm-svn: 77521
-
Nicolas Geoffray authored
there is no new block added to the free list. Therefore on the next startFunctionBody call, a new slab must be allocated. llvm-svn: 77520
-
Douglas Gregor authored
llvm-svn: 77519
-
Devang Patel authored
llvm-svn: 77517
-
Owen Anderson authored
llvm-svn: 77516
-
Devang Patel authored
llvm-svn: 77513
-
Daniel Dunbar authored
- Call RAUW to delete all instructions (this is a patch from Nick Lewycky). llvm-svn: 77512
-
- Jul 29, 2009
-
-
Devang Patel authored
llvm-svn: 77511
-
Chris Lattner authored
now that TargetOperandInfo does the heavy lifting. llvm-svn: 77508
-
Evan Cheng authored
llvm-svn: 77507
-
Bill Wendling authored
llvm-svn: 77505
-
Chris Lattner authored
and convert code to using it, instead of having lots of things poke the isLookupPtrRegClass() method directly. 2. Make PointerLikeRegClass contain a 'kind' int, and store it in the existing regclass field of TargetOperandInfo when the isLookupPtrRegClass() predicate is set. Make getRegClass pass this into TargetRegisterInfo::getPointerRegClass(), allowing targets to have multiple ptr_rc things. llvm-svn: 77504
-
Chris Lattner authored
support multiple different pointer register classes. llvm-svn: 77501
-
Evan Cheng authored
- Darwin Thumb2 call clobbers r9. llvm-svn: 77500
-