- Jul 26, 2012
-
-
Jakob Stoklund Olesen authored
This is still a work in progress. Out-of-order CPUs usually execute instructions from multiple basic blocks simultaneously, so it is necessary to look at longer traces when estimating the performance effects of code transformations. The MachineTraceMetrics analysis will pick a typical trace through a given basic block and provide performance metrics for the trace. Metrics will include: - Instruction count through the trace. - Issue count per functional unit. - Critical path length, and per-instruction 'slack'. These metrics can be used to determine the performance limiting factor when executing the trace, and how it will be affected by a code transformation. Initially, this will be used by the early if-conversion pass. llvm-svn: 160796
-
Jim Ingham authored
Relax the test for "is the frame I am going to step back out to the one I started from" in ThreadPlanStepOverRange so you don't artificially reject stepping out of a function you stepped into when stepping through an inlined range. Also fill in the target in the symbol context we make up for the inlined stepping range in ThreadPlanStepOut. <rdar://problem/11765912> llvm-svn: 160794
-
Dan Gohman authored
llvm-svn: 160791
-
Howard Hinnant authored
Patch by Andrew C. Morrow: Conditionally include cxxabi.h in new.cpp and typeinfo.cpp. Both new.cpp and typeinfo.cpp have code that is conditionally compiled based on the LIBCXXRT and _LIBCPPABI_VERSION defines, but those files do not currently include <cxxabi.h> in the non __APPLE__ case. The attached patch updates those files so that for non __APPLE__ builds <cxxabi.h> is included if available or if LIBCXXRT is set. I'm modeling this on the recent updates to exception.cpp. llvm-svn: 160790
-
Fariborz Jahanian authored
is missing in method prototype. // rdar://11939584 llvm-svn: 160789
-
Alexander Kornienko authored
Put back dump() without a default argument, "because debuggers don't usually respect default arguments". llvm-svn: 160788
-
Nuno Lopes authored
Thanks Eli for noticing. llvm-svn: 160787
-
Howard Hinnant authored
<algorithm> no longer needs to include <cstdlib>, but can get away with just <cstddef>. This was brought to my attention by Salvatore Benedetto in his port to a bare-metal coretex-m3. This exposed two test bugs where an explicit #include <cstdlib> was needed. llvm-svn: 160786
-
Howard Hinnant authored
llvm-svn: 160785
-
Alexander Kornienko authored
llvm-svn: 160784
-
Timur Iskhodzhanov authored
llvm-svn: 160783
-
Timur Iskhodzhanov authored
Add more tests for PR13207 (Mangling of template back references with -cxx-abi microsoft) now that PR13389 is fixed (mangling of return types) llvm-svn: 160782
-
Timur Iskhodzhanov authored
llvm-svn: 160780
-
Duncan Sands authored
is a temporary measure until my fix for PR13021 is ready. llvm-svn: 160778
-
Duncan Sands authored
llvm-svn: 160777
-
Duncan Sands authored
hopefully make it more visible. Adjust the web-docs to have a link to this file rather than the list itself. I described code owners as also being gatekeepers for their part of the code, which I think is true but isn't in the code owner explanation on the web page. llvm-svn: 160776
-
Craig Topper authored
llvm-svn: 160775
-
Akira Hatanaka authored
Patch by Reed Kotler. llvm-svn: 160774
-
Richard Smith authored
platform-provided macro on some systems) to _LIBCPP_NORETURN. llvm-svn: 160773
-
Alexander Kornienko authored
llvm-svn: 160772
-
Sean Callanan authored
llvm-svn: 160770
-
Sean Callanan authored
corrected the offsets for x86_64 conditional branch instructions. <rdar://problem/11502148> llvm-svn: 160769
-
Anna Zaks authored
- Some cleanup(the TODOs) will be done after ObjC method inlining is complete. - Simplified CallEvent::getDefinition not to require ISDynamicDispatch parameter. - Also addressed Jordan's comments from r160530. llvm-svn: 160768
-
Ted Kremenek authored
llvm-svn: 160767
-
Tanya Lattner authored
llvm-svn: 160766
-
Ted Kremenek authored
llvm-svn: 160764
-
Sylvestre Ledru authored
llvm-svn: 160763
-
Sylvestre Ledru authored
llvm-svn: 160762
-
- Jul 25, 2012
-
-
Ted Kremenek authored
llvm-svn: 160761
-
Ted Kremenek authored
value by scanning the path, rather than assuming we have visited the '?:' operator as a terminator (which sets a value indicating which expression to grab the final ternary expression value from). llvm-svn: 160760
-
Fariborz Jahanian authored
"memset' lazily when is needed in translation of struct-valued methods which require checkinf of nil receivers outside their bodies. // rdar://11847319 llvm-svn: 160759
-
Jakob Stoklund Olesen authored
This simplifies MCRegisterInfo and shrinks the target descriptions a bit more. llvm-svn: 160758
-
Nick Lewycky authored
encounter an invoke of an allocation function. This should fix the dragonegg bootstrap. Testcase to follow, later. llvm-svn: 160757
-
Jim Ingham authored
calling functions. This is necessary on Mac OS X, since bad things can happen if you set the registers of a thread that's sitting in a kernel trap. <rdar://problem/11145013> llvm-svn: 160756
-
Manman Ren authored
TwoAddressInstructionPass. The generated code for Atom has a different code sequence. This is realted to commit r160749. llvm-svn: 160755
-
Ted Kremenek authored
to fix all the issues. Currently the code is essentially unmaintained and buggy, and needs major revision (with coupled enhancements to the analyzer core). llvm-svn: 160754
-
Chad Rosier authored
Beckham <verena@codeplay.com>. Reviewed by Jim Grosbach. llvm-svn: 160753
-
Chad Rosier authored
rdar://11949066 llvm-svn: 160752
-
Nuno Lopes authored
original commit msg: MemoryBuiltins: add support to determine the size of strdup'ed non-constant strings llvm-svn: 160751
-
Chad Rosier authored
-iwithprefixbefore, and -isystem options, per Matt's suggestion. rdar://11949066 llvm-svn: 160750
-