- Dec 21, 2012
-
-
Dmitry Vyukov authored
llvm-svn: 170868
-
Richard Smith authored
CXXScalarValueInitExpr (or an ImplicitValueInitExpr), strip it back down to an empty pair of parentheses so that the initialization code can tell that we're performing value-initialization. llvm-svn: 170867
-
Dmitry Vyukov authored
llvm-svn: 170866
-
Ted Kremenek authored
Thanks to Jordan Rose and John McCall for their sage code review. Fixes <rdar://problem/12569201>. llvm-svn: 170864
-
Ted Kremenek authored
This is just a minor bit of refactoring, but it is nice cleanup for the subsequent patch that adds warning support for assigning literals to weak variables. llvm-svn: 170863
-
Sebastian Pop authored
llvm-svn: 170854
-
Sebastian Pop authored
llvm-svn: 170853
-
Dmitry Vyukov authored
llvm-svn: 170844
-
Richard Relph authored
llvm-svn: 170843
-
Nadav Rotem authored
llvm-svn: 170842
-
Nadav Rotem authored
llvm-svn: 170841
-
Quentin Colombet authored
llvm-svn: 170840
-
Rafael Espindola authored
Now that we don't merge section and segment names, we don't need to skip the segment name to get to the section name. llvm-svn: 170839
-
Rafael Espindola authored
On MachO, sections also have segment names. When a tool looking at a .o file prints a segment name, this is what they mean. In reality, a .o has only one anonymous, segment. This patch adds a MachO only function to fetch that segment name. I named it getSectionFinalSegmentName since the main use for the name seems to be inform the linker with segment this section should go to. The patch also changes MachOObjectFile::getSectionName to return just the section name instead of computing SegmentName,SectionName. The main difference from the previous patch is that it doesn't use InMemoryStruct. It is extremely dangerous: if the endians match it returns a pointer to the file buffer, if not, it returns a pointer to an internal buffer that is overwritten in the next API call. We should change all of this code to use support::detail::packed_endian_specific_integral like ELF, but since these functions only handle strings, they work with big and little endian machines as is. I have tested this by installing ubuntu 12.10 ppc on qemu, that is why it took so long :-) llvm-svn: 170838
-
Richard Smith authored
Reinstate r170806, reverted in r170835, with a fix use i1 instead of i8 for a value-initialized bool! llvm-svn: 170837
-
Evan Cheng authored
llvm-svn: 170836
-
NAKAMURA Takumi authored
Revert r170806, "Fix some bugs where we would sometimes use 0, not -1, when emitting a null constant of type pointer-to-data-member." It broke stage2. llvm-svn: 170835
-
Argyrios Kyrtzidis authored
a not-fully-formed macro invocation during code-completion. llvm-svn: 170833
-
Anna Zaks authored
llvm-svn: 170832
-
Evan Cheng authored
llvm-svn: 170831
-
Nadav Rotem authored
llvm-svn: 170830
-
Rafael Espindola authored
./bin/clang -cc1 -internal-isystem /home/espindola/llvm/build/lib/clang/3.3/include/ -analyze -analyzer-checker=debug.DumpCallGraph /home/espindola/llvm/clang/test/Analysis/debug-CallGraph.c -fblocks changes in each run. llvm-svn: 170829
-
Nadav Rotem authored
and not the return type, which is void. A number of test cases fail after adding the assertion in TTImpl. llvm-svn: 170828
-
Rafael Espindola authored
When we are visiting the extern declaration of 'i' in static int i = 99; int foo() { extern int i; return i; } We should not try to handle it as if it was an function static. That is, we must consider the written storage class. Fixing this then exposes that the assert in EmitGlobalVarDeclLValue and the if leading to its call are not completely accurate. They were passing before because the second decl was marked as having external storage. I changed them to check the linkage, which I find easier to understand. Last but not least, there is something strange going on with cuda and opencl. My guess is that the linkage computation for these languages needs to be audited, but I didn't want to change that in this patch so I just updated the storage classes to keep the current behavior. Thanks to Reed Kotler for reporting this. llvm-svn: 170827
-
Anna Zaks authored
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: 170826
-
Anna Zaks authored
This paves the road for constructing a better function dependency graph. If we analyze a function before the functions it calls and inlines, there is more opportunity for optimization. Note, we add call edges to the called methods that correspond to function definitions (declarations with bodies). llvm-svn: 170825
-
Argyrios Kyrtzidis authored
the macro invocation is not fully formed. rdar://11290992 llvm-svn: 170824
-
Reed Kotler authored
llvm-svn: 170823
-
Reed Kotler authored
llvm-svn: 170822
-
Sean Silva authored
Hopefully these benchmarks will be updated in the future, so avoid hardcoding image dimensions. llvm-svn: 170819
-
Andrew Kaylor authored
Not all of the expected instructions were being generated for the function being disassembled on x86-64-based Linux. It had no push, pop or leave. llvm-svn: 170818
-
NAKAMURA Takumi authored
llvm-svn: 170817
-
Sean Silva authored
Tell the image to be its natural size. llvm-svn: 170816
-
Sean Silva authored
Sphinx's syntax highlighter doesn't recognize the new literals, so the syntax highlighting is pretty pathetic. llvm-svn: 170814
-
Sean Silva authored
llvm-svn: 170813
-
Sean Silva authored
llvm-svn: 170812
-
Nadav Rotem authored
memory bound checks. Before the fix we were able to vectorize this loop from the Livermore Loops benchmark: for ( k=1 ; k<n ; k++ ) x[k] = x[k-1] + y[k]; llvm-svn: 170811
-
Eric Christopher authored
llvm-svn: 170810
-
Richard Smith authored
Fix some bugs where we would sometimes use 0, not -1, when emitting a null constant of type pointer-to-data-member. llvm-svn: 170806
-
Douglas Gregor authored
llvm-svn: 170804
-