- Mar 10, 2013
-
-
Jason Molenda authored
llvm-svn: 176792
-
Hal Finkel authored
After the recent data-structure improvements, a couple of debugging statements were broken (printing pointer values). llvm-svn: 176791
-
Sylvestre Ledru authored
Match the new declaration of clang::ASTContext::getFunctionType introduced in clang r176726. Fix the build of lldb llvm-svn: 176790
-
Anton Yartsev authored
PR15480: fixed second parameter types of vec_lde, vec_lvebx, vec_lvehx, and vec_lvewx according to AltiVec Programming Interface Manual llvm-svn: 176789
-
Benjamin Kramer authored
Before: clang-3: error: no input files After: clang-3.3: error: no input files This means that we'll also print clang.exe on windows, but I don't see a problem with that. llvm-svn: 176788
-
Jakub Staszak authored
llvm-svn: 176787
-
Guy Benyei authored
Fix indirect byval passing of records in address spaced memory. Allocate memory on stack, and memcpy the actual value before the call. llvm-svn: 176786
-
Jakub Staszak authored
llvm-svn: 176785
-
Jakub Staszak authored
llvm-svn: 176784
-
Jakub Staszak authored
llvm-svn: 176783
-
Jakub Staszak authored
llvm-svn: 176782
-
Richard Smith authored
llvm-svn: 176781
-
Richard Smith authored
6.4.4.4/1 and 6.4.5/1. llvm-svn: 176780
-
Richard Smith authored
handle raw string literals here. C++11 doesn't yet specify how they will behave, but discussion on core suggests that we should just strip off everything but the r-char-sequence. llvm-svn: 176779
-
Craig Topper authored
Remove an unused member variable from HelpPrinter. Move another member variable to be a local variable in the only method that uses it. llvm-svn: 176778
-
- Mar 09, 2013
-
-
Lang Hames authored
intrinsic - it can cause impossible-to-schedule subgraphs to be introduced. PR15053. llvm-svn: 176777
-
Jakub Staszak authored
llvm-svn: 176776
-
Benjamin Kramer authored
This made us emit runtime checks in a random order. Hopefully bootstrap miscompares will go away now. llvm-svn: 176775
-
Benjamin Kramer authored
llvm-svn: 176774
-
Benjamin Kramer authored
llvm-svn: 176773
-
Benjamin Kramer authored
llvm-svn: 176772
-
Jakub Staszak authored
llvm-svn: 176771
-
Jakub Staszak authored
llvm-svn: 176770
-
Arnold Schwaighofer authored
Ignore all DbgIntriniscInfo instructions instead of just DbgValueInst. llvm-svn: 176769
-
Arnold Schwaighofer authored
We want vectorization to happen at -g. Ignore calls to the dbg.value intrinsic and don't transfer them to the vectorized code. radar://13378964 llvm-svn: 176768
-
Benjamin Kramer authored
llvm-svn: 176767
-
Benjamin Kramer authored
The strlen+memcmp was hidden in a call to StringRef::operator==. We check if there are any null bytes in the string upfront so we can simplify the comparison Small speedup when compiling code with many function calls. llvm-svn: 176766
-
Jakub Staszak authored
llvm-svn: 176765
-
Nick Lewycky authored
r176751. Also, learn a lesson about applying patches by hand/eyeball. llvm-svn: 176764
-
Nick Lewycky authored
llvm-svn: 176763
-
Nick Lewycky authored
for choosing to emit a shndx was simply testing the wrong variable. llvm-svn: 176762
-
Jason Molenda authored
DNBArchImplARM. This framework is no longer around; all armv7 devices support using hardware breakpoints to instruction single step. llvm-svn: 176761
-
Jason Molenda authored
debugserver's build settings. llvm-svn: 176760
-
Jason Molenda authored
Also, don't build debugserver with -DUSE_ARM_DISASSEMBLER_FRAMEWORK - that framework isn't around at this point. llvm-svn: 176759
-
Edwin Vane authored
llvm-svn: 176758
-
Edwin Vane authored
Each transform belongs in its own sub-page now. Minor refactoring to reflect new heading levels. llvm-svn: 176757
-
Anna Zaks authored
[analyzer] Make Suppress IDC checker aware that it might not start from the same node it was registered at The visitor used to assume that the value it’s tracking is null in the first node it examines. This is not true. If we are registering the Suppress Inlined Defensive checks visitor while traversing in another visitor (such as FindlastStoreVisitor). When we restart with the IDC visitor, the invariance of the visitor does not hold since the symbol we are tracking no longer exists at that point. I had to pass the ErrorNode when creating the IDC visitor, because, in some cases, node N is neither the error node nor will be visible along the path (we had not finalized the path at that point and are dealing with ExplodedGraph.) We should revisit the other visitors which might not be aware that they might get nodes, which are later in path than the trigger point. This suppresses a number of inline defensive checks in JavaScriptCore. llvm-svn: 176756
-
Anna Zaks authored
llvm-svn: 176755
-
Anna Zaks authored
This tests that we track the original Expr if getDerefExpr fails. llvm-svn: 176754
-
Greg Clayton authored
llvm-svn: 176753
-