- Nov 16, 2010
-
-
Oscar Fuentes authored
Patch by Louis Zhuang! llvm-svn: 119394
-
Dale Johannesen authored
llvm-svn: 119393
-
Chris Lattner authored
llvm-svn: 119391
-
Chris Lattner authored
llvm-svn: 119390
-
Chris Lattner authored
llvm-svn: 119389
-
Howard Hinnant authored
increased. The following program is running 49% faster: #include <iostream> #include <memory> #include <chrono> #include <vector> #include "chrono_io" int main() { typedef std::chrono::high_resolution_clock Clock; Clock::time_point t0 = Clock::now(); { std::shared_ptr<int> p(new int (1)); std::vector<std::shared_ptr<int> > v(1000000, p); v.insert(v.begin(), p); v.insert(v.begin(), p); v.insert(v.begin(), p); v.insert(v.begin(), p); } Clock::time_point t1 = Clock::now(); std::cout << (t1-t0) << '\n'; } llvm-svn: 119388
-
Chris Lattner authored
llvm-svn: 119387
-
Dan Gohman authored
llvm-svn: 119386
-
Evan Cheng authored
llvm-svn: 119385
-
Rafael Espindola authored
Next: Add support for the !HasDotLocAndDotFile case to the MCAsmStreamer and then switch codegen to use it. llvm-svn: 119384
-
Howard Hinnant authored
llvm-svn: 119383
-
Dan Gohman authored
easier to debug, and to avoid complications when the CFG changes in the middle of the instruction selection process. llvm-svn: 119382
-
-
Rafael Espindola authored
llvm-svn: 119380
-
Douglas Gregor authored
where we failed to free this buffer along one of the paths, and detangles the code a little. llvm-svn: 119379
-
Anton Yartsev authored
turned pointers into pointers to const in function parameters in all functions/builtins accepting pointers to a const-qualified type according to PIM and "Language Extensions for CBEA" llvm-svn: 119376
-
Jakob Stoklund Olesen authored
Always spill the full representative register at any point where any subregister is live. This fixes PR8620 which caused the old logic to get confused and not spill anything at all. The fundamental problem here is that the coalescer is too aggressive about physical register coalescing. It sometimes makes it impossible to allocate registers without these emergency spills. llvm-svn: 119375
-
Jakob Stoklund Olesen authored
llvm-svn: 119374
-
Johnny Chen authored
result including the session logs of test failures/errors as a MIME message. llvm-svn: 119371
-
Peter Collingbourne authored
llvm-svn: 119370
-
Bob Wilson authored
Stop defining types with "__neon_" prefixes and then using typedefs without the prefix; there's no reason to do that anymore. Remove types that combine multiple Neon vectors and treat them as a single long vector; they are not used. llvm-svn: 119369
-
Fariborz Jahanian authored
issue with runtime which I am discussing it with Blaine. This is wip (so no test yet). llvm-svn: 119368
-
Bob Wilson authored
I've temporarily disabled the failing clang test. llvm-svn: 119367
-
Bob Wilson authored
I'll reenable it soon when I'm done reworking <arm_neon.h>. llvm-svn: 119366
-
Michael J. Spencer authored
llvm-svn: 119365
-
Ted Kremenek authored
allocation sizes of 0 bytes. Fixes PR 2899. llvm-svn: 119364
-
Bob Wilson authored
It's breaking buildbots. llvm-svn: 119363
-
Rafael Espindola authored
llvm-svn: 119362
-
Michael J. Spencer authored
The system API's will be shifted over to returning an error_code, and returning other return values as out parameters to the function. Code that needs to check error conditions will use the errc enum values which are the same as the posix_errno defines (EBADF, E2BIG, etc...), and are compatable with the error codes in WinError.h due to some magic in system_error. An example would be: if (error_code ec = KillEvil("Java")) { // error_code can be converted to bool. handle_error(ec); } llvm-svn: 119360
-
Argyrios Kyrtzidis authored
Fixes rdar://8365458 llvm-svn: 119359
-
Bob Wilson authored
Thanks to Nate Begeman for an earlier version of this patch. llvm-svn: 119358
-
Jim Grosbach authored
llvm-svn: 119355
-
Jim Grosbach authored
llvm-svn: 119354
-
Johnny Chen authored
llvm-svn: 119353
-
Duncan Sands authored
rather than calling hasConstantValue. No intended functionality change. llvm-svn: 119352
-
Dan Gohman authored
for Arnaud Allard de Grandmaison for preparing a patch. llvm-svn: 119351
-
Benjamin Kramer authored
llvm-svn: 119349
-
Nico Weber authored
llvm-svn: 119348
-
Duncan Sands authored
over a phi node by applying it to each operand may be wrong if the operation and the phi node are mutually interdependent (the testcase has a simple example of this). So only do this transform if it would be correct to perform the operation in each predecessor of the block containing the phi, i.e. if the other operands all dominate the phi. This should fix the FFMPEG snow.c regression reported by İsmail Dönmez. llvm-svn: 119347
-
Chandler Carruth authored
conversion. llvm-svn: 119346
-