- May 17, 2011
-
-
Jakob Stoklund Olesen authored
When instructions are deleted, they leave tombstone SlotIndex entries. The isZeroLength method should ignore these null indexes. This causes RABasic to sometimes spill a callee-saved register in the abi-isel.ll test, so don't run that test with -regalloc=basic. Prioritizing register allocation according to spill weight can cause more registers to be used. llvm-svn: 131436
-
Ted Kremenek authored
llvm-svn: 131435
-
John McCall authored
reasons that honestly really, really need to be looked into. llvm-svn: 131434
-
Johnny Chen authored
Fix bad test case; not all compilers are guaranteed to step into code inlined from the STL header file. rdar://problem/8983790 llvm-svn: 131433
-
Alexis Hunt authored
my defaulted constructor tests stop yelling at me about them. llvm-svn: 131432
-
Jim Grosbach authored
llvm-svn: 131431
-
Dan Gohman authored
llvm-svn: 131430
-
Dan Gohman authored
llvm-svn: 131429
-
Dan Gohman authored
llvm-svn: 131428
-
Devang Patel authored
llvm-svn: 131427
-
- May 16, 2011
-
-
Jim Grosbach authored
misses. llvm-svn: 131426
-
Manuel Klimek authored
Pulls the common part of the clang-check example into Tooling, to allow new tools to be implemented without duplicating the boilerplate. llvm-svn: 131425
-
Eli Friedman authored
llvm-svn: 131424
-
Devang Patel authored
llvm-svn: 131423
-
Devang Patel authored
Radar 9422775. llvm-svn: 131422
-
Charles Davis authored
self-host :). llvm-svn: 131421
-
Eli Friedman authored
llvm-svn: 131420
-
Eli Friedman authored
llvm-svn: 131419
-
Johnny Chen authored
unambiguous iteration support. So that we could, for example: ... REGs = lldbutil.get_GPRs(frame) print "Number of general purpose registers: %d" % len(REGs) for reg in REGs: print "%s => %s" %(reg.GetName(), reg.GetValue()) ... llvm-svn: 131418
-
Eli Friedman authored
Basic fast-isel of extractvalue. Not too helpful on its own, given the IR clang generates for cases like this, but it should become more useful soon. llvm-svn: 131417
-
Nick Lewycky authored
llvm-svn: 131416
-
Caroline Tice authored
Fix places that were writing directly to the debugger's output handles to go through the appropriate channels instead. llvm-svn: 131415
-
Howard Hinnant authored
Brought call_once variadic call up to current spec, which allows move-only functors and move-only arguments, but disallows functors with non-const lvalue reference parameters. llvm-svn: 131414
-
Howard Hinnant authored
Brought thread variadic constructor up to current spec, which allows move-only functors and move-only arguments, but disallows functors with non-const lvalue reference parameters. llvm-svn: 131413
-
Johnny Chen authored
llvm-svn: 131412
-
Jason W Kim authored
llvm-svn: 131411
-
Howard Hinnant authored
llvm-svn: 131410
-
Howard Hinnant authored
Spit 5th bullet __invoke into function pointers and everything else because result_of doesn't deal with function pointers. llvm-svn: 131409
-
Howard Hinnant authored
llvm-svn: 131408
-
Howard Hinnant authored
llvm-svn: 131407
-
Rafael Espindola authored
("T is 1 if the target symbol S has type STT_FUNC and the symbol addresses a Thumb instruction ;it is 0 otherwise." from "ELF for the ARM Architecture" 4.7.1.2) Patch by Koan-Sin Tan! llvm-svn: 131406
-
Rafael Espindola authored
llvm-svn: 131405
-
Joerg Sonnenberger authored
Preserve the original triple in the NetBSD toolchain when using -m32 or -m64 and the resulting effective target is different from the triple it started with. This allows -m32 to use the same assembler/linking in cross-compiling mode and avoids confusion about passing down target specific flags in that case like --32. llvm-svn: 131404
-
Rafael Espindola authored
llvm-svn: 131403
-
Zhongxing Xu authored
llvm-svn: 131402
-
Rafael Espindola authored
131365 caused PR9927. llvm-svn: 131401
-
Anders Carlsson authored
optimization. Make sure to require a vtable when trying to get the address of a VTT, otherwise we would never end up emitting the VTT. llvm-svn: 131400
-
Rafael Espindola authored
corrupted when setjmp returns again. llvm-svn: 131399
-
Greg Clayton authored
If we are asked to restore all register values, we need to fall back to restoring each register one by one. llvm-svn: 131398
-
Greg Clayton authored
packets in GDB remote. Also fixed a compiler warning for an unhandled case for a switch. llvm-svn: 131397
-