- Dec 15, 2010
-
-
John McCall authored
within the class. Teach IR gen to look for function definitions in record lexical contexts when deciding whether to emit a function whose address was taken. Fixes PR8789. llvm-svn: 121833
-
Bill Wendling authored
llvm-svn: 121832
-
Douglas Gregor authored
whether the expression contains an unexpanded parameter pack, in the same vein as the changes to the Type hierarchy. Compute this bit within all of the Expr subclasses. This change required a bunch of reshuffling of dependency calculations, mainly to consolidate them inside the constructors and to fuse multiple loops that iterate over arguments to determine type dependence, value dependence, and (now) containment of unexpanded parameter packs. Again, testing is painfully sparse, because all of the diagnostics will change and it is more important to test the to-be-written visitor that collects unexpanded parameter packs. llvm-svn: 121831
-
Kevin Enderby authored
update the condition codes. These come from my test generator and are just the ones that MC currently assembles correctly. llvm-svn: 121830
-
Mikhail Glushenkov authored
llvm-svn: 121829
-
Mikhail Glushenkov authored
llvm-svn: 121828
-
Mikhail Glushenkov authored
llvm-svn: 121827
-
Mikhail Glushenkov authored
llvm-svn: 121826
-
Mikhail Glushenkov authored
llvm-svn: 121825
-
Mikhail Glushenkov authored
llvm-svn: 121824
-
Mikhail Glushenkov authored
llvm-svn: 121823
-
Mikhail Glushenkov authored
llvm-svn: 121822
-
John McCall authored
llvm-svn: 121821
-
Bill Wendling authored
llvm-svn: 121820
-
Bill Wendling authored
immediate versions. llvm-svn: 121819
-
Johnny Chen authored
combinations. llvm-svn: 121818
-
Owen Anderson authored
this case involve a select that simplifies to itself. llvm-svn: 121817
-
Owen Anderson authored
llvm-svn: 121816
-
Bill Wendling authored
llvm-svn: 121815
-
Caroline Tice authored
command completion properly (e.g. abbreviated commands, which are NOT the same as aliases). llvm-svn: 121814
-
Johnny Chen authored
after the statement it wants to revert the effect of. llvm-svn: 121813
-
Jim Grosbach authored
llvm-svn: 121812
-
Johnny Chen authored
o "output1.txt" for test_pass_host_env_vars() test case o "output2.txt" for test_run_args_and_env_vars_with_dsym() test case o "output2.txt" for test_run_args_and_env_vars_with_dwarf() test case and add teardown hook to test_pass_host_env_vars() in order to properly unset the host environment variables set while running the test case. llvm-svn: 121811
-
Greg Clayton authored
llvm-svn: 121810
-
Bill Wendling authored
llvm-svn: 121809
-
Bill Wendling authored
particular, we want ldr r2, [r3] to be equivalent to ldr r2, [r3, #0] and not ldr r2, [r3, r0] llvm-svn: 121808
-
Jakob Stoklund Olesen authored
llvm-svn: 121807
-
Jakob Stoklund Olesen authored
llvm-svn: 121806
-
Jakob Stoklund Olesen authored
llvm-svn: 121805
-
Greg Clayton authored
llvm-svn: 121804
-
Greg Clayton authored
linux build. llvm-svn: 121803
-
Johnny Chen authored
ALso add a teardown hook to the LoadUnloadTestCase.test_dyld_library_path() test case to have it restore the DYLD_LIBRARY_PATH environment variable. llvm-svn: 121802
-
Jakob Stoklund Olesen authored
llvm-svn: 121801
-
Jakob Stoklund Olesen authored
registers that alias Reg, including itself. This is almost the same as the existing getAliasSet() method, except for the inclusion of Reg. The name matches the reflexive TRI::regsOverlap(x, y) relation. It is very common to do stuff to a register and all its aliases: stuff(Reg) for (const unsigned *Alias = TRI->getAliasSet(Reg); *Alias; ++Alias) stuff(*Alias); That can now be written as the simpler: for (const unsigned *Alias = TRI->getOverlaps(Reg); *Alias; ++Alias) stuff(*Alias); This change requires a bit more constant space for the alias lists because Reg is included and because the empty alias list cannot be shared any longer. If the getAliasSet method is eventually removed, this space can be reclaimed by sharing overlap lists. For instance, %rax and %eax have identical overlap sets. llvm-svn: 121800
-
- Dec 14, 2010
-
-
-
Bill Wendling authored
llvm-svn: 121797
-
Johnny Chen authored
linked with a dylib which has been relocated by specifying the DYLD_LIBRARY_PATH environment variable. Test that the function name breakpoint defined in the dylib is resolved. llvm-svn: 121796
-
Abramo Bagnara authored
llvm-svn: 121795
-
Bill Wendling authored
is the addition of the FoldableAsLoad & Rematerializable flags to some of the load instructions. ARM has these flags set for them. llvm-svn: 121794
-
Evan Cheng authored
regB = move RCX regA = op regB, regC RAX = move regA where both regB and regC are killed. If regB is constrainted to non-compatible physical registers but regC is not constrainted at all, then it's better to commute the instruction. movl %edi, %eax shlq $32, %rcx leaq (%rcx,%rax), %rax => movl %edi, %eax shlq $32, %rcx orq %rcx, %rax rdar://8762995 llvm-svn: 121793
-