- Jul 31, 2009
-
-
Benjamin Kramer authored
llvm-svn: 77649
-
Devang Patel authored
llvm-svn: 77646
-
Devang Patel authored
llvm-svn: 77645
-
Evan Cheng authored
When fp is not eliminated, instructions with T2_i12 modes will be changed to T2_i8 ones. Take that into consideration when determining stack size limit for reserving register scavenging slot. llvm-svn: 77642
-
Lang Hames authored
llvm-svn: 77640
-
Devang Patel authored
llvm-svn: 77637
-
Devang Patel authored
llvm-svn: 77636
-
Owen Anderson authored
llvm-svn: 77635
-
Devang Patel authored
llvm-svn: 77633
-
David Goodwin authored
llvm-svn: 77632
-
- Jul 30, 2009
-
-
David Goodwin authored
llvm-svn: 77627
-
David Goodwin authored
llvm-svn: 77625
-
Daniel Dunbar authored
- This should resolve Cygwin gcc ambiguities. llvm-svn: 77624
-
Dan Gohman authored
dangling Value*s. llvm-svn: 77623
-
David Goodwin authored
llvm-svn: 77622
-
Devang Patel authored
Start using DebugInfoFinder. llvm-svn: 77621
-
Devang Patel authored
Thanks Benjamin Kramer! llvm-svn: 77619
-
Devang Patel authored
Thanks Benjamin Kramer! llvm-svn: 77618
-
Daniel Dunbar authored
llvm-svn: 77617
-
Daniel Dunbar authored
llvm-svn: 77616
-
Devang Patel authored
llvm-svn: 77615
-
Daniel Dunbar authored
llvm-svn: 77614
-
Daniel Dunbar authored
llvm-svn: 77613
-
David Goodwin authored
llvm-svn: 77611
-
Daniel Dunbar authored
llvm-svn: 77605
-
Devang Patel authored
llvm-svn: 77604
-
Devang Patel authored
llvm-svn: 77603
-
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
I've changed the semantics of MERGE_VALUES a bit. It's now allowed to live until scheduling. It's deleted when the scheduler translate DAG nodes to machine instructions. This is currently used by X86 to handle atomic_load_add when the output of the node is not used. I believe there is a better solution. But I find MERGE_VALUES useful for selecting multi-output node when the dead output can be selected as a IMPLICIT_DEF. llvm-svn: 77583
-
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
-
Daniel Dunbar authored
llvm-svn: 77569
-