- Dec 21, 2012
-
-
Benjamin Kramer authored
llvm-svn: 170911
-
Daniel Jasper authored
This fixes PR14683. We used to format like this: #include <a / b> And this patch changes this to: #include <a/b> llvm-svn: 170910
-
Quentin Colombet authored
llvm-svn: 170909
-
Benjamin Kramer authored
Part of PR14667. llvm-svn: 170908
-
Anna Zaks authored
llvm-svn: 170907
-
Anna Zaks authored
deterministic. Commit message for r170826: [analyzer] Traverse the Call Graph in topological order. Modify the call graph by removing the parentless nodes. Instead all nodes are children of root to ensure they are all reachable. Remove the tracking of nodes that are "top level" or global. This information is not used and can be obtained from the Decls stored inside CallGraphNodes. Instead of existing ordering hacks, analyze the functions in topological order over the Call Graph. Together with the addition of devirtualizable ObjC message sends and blocks to the call graph, this gives around 6% performance improvement on several large ObjC benchmarks. llvm-svn: 170906
-
Roman Divacky authored
llvm-svn: 170905
-
Fariborz Jahanian authored
llvm-svn: 170904
-
Roman Divacky authored
llvm-svn: 170903
-
Roman Divacky authored
llvm-svn: 170902
-
Tom Stellard authored
llvm-svn: 170901
-
Kostya Serebryany authored
[asan] asan_allocator2 fix two asserts that happen on full chrome: a) memalign called with 0 size and large alignment and b) malloc called after TSD has been destructed llvm-svn: 170900
-
Daniel Jasper authored
We used to not really format them. Now we do: for (MachineBasicBlock::succ_iterator SI = BB->succ_begin(), SE = BB->succ_end(); SI != SE; ++SI) { This is just one example and I am sure we still mess some of them up, but it is a step forward. llvm-svn: 170899
-
Benjamin Kramer authored
This is very mechanical, no functionality change. Preparation for PR14667. llvm-svn: 170898
-
Alexey Samsonov authored
[Sanitizer] CMake build rules for unittests: depend on headers when compiling a file with custom clang. llvm-svn: 170897
-
Dmitry Vyukov authored
llvm-svn: 170896
-
Kostya Serebryany authored
llvm-svn: 170895
-
Dmitry Vyukov authored
llvm-svn: 170894
-
Dmitry Vyukov authored
llvm-svn: 170893
-
Dmitry Vyukov authored
llvm-svn: 170892
-
Dmitry Vyukov authored
llvm-svn: 170891
-
Rafael Espindola authored
llvm-svn: 170890
-
Dmitry Vyukov authored
llvm-svn: 170889
-
Kostya Serebryany authored
llvm-svn: 170888
-
Daniel Jasper authored
Permanent solution coming up after checking back with Fariborz/Douglas. llvm-svn: 170887
-
Duncan Sands authored
170318). llvm-svn: 170886
-
Dmitry Vyukov authored
llvm-svn: 170885
-
Dmitry Vyukov authored
llvm-svn: 170884
-
Evgeniy Stepanov authored
llvm-svn: 170883
-
Dmitry Vyukov authored
llvm-svn: 170882
-
Dmitry Vyukov authored
llvm-svn: 170881
-
Evgeniy Stepanov authored
llvm-svn: 170880
-
Evgeniy Stepanov authored
llvm-svn: 170879
-
Alexander Potapenko authored
llvm-svn: 170878
-
Dmitry Vyukov authored
llvm-svn: 170877
-
Dmitry Vyukov authored
llvm-svn: 170876
-
Daniel Jasper authored
No indented functional changes other than handling more operators correctly. llvm-svn: 170875
-
Daniel Jasper authored
Also, some (automated) formatting fixes and slight cleanups. llvm-svn: 170873
-
Alexey Samsonov authored
[Sanitizer] Don't implicitly add object files to the list of dependencies when building compiler_rt unittests. Fix sanitizer_common and asan build rules accordingly. This also fixes check-sanitizer command on Ninja. llvm-svn: 170870
-
Kostya Serebryany authored
[asan] add a flag alloc_dealloc_mismatch (off by default for now) which finds malloc/delete, new/free, new/delete[], etc mismatches llvm-svn: 170869
-