- Feb 11, 2014
-
-
Evgeniy Stepanov authored
Because of the way Bionic sets up signal stack frames, libc unwinder is unable to step through it, resulting in broken SEGV stack traces. Luckily, libcorkscrew.so on Android implements an unwinder that can start with a signal context, thus sidestepping the issue. llvm-svn: 201151
-
Alexey Samsonov authored
llvm-symbolizer binary and external process handling into separate classes. No functionality change. llvm-svn: 201150
-
Bradley Smith authored
llvm-svn: 201149
-
Chandler Carruth authored
Fixes PR18753 and PR18782. This is necessary for LICM to preserve LCSSA correctly and efficiently. There is still some active discussion about whether we should be using LCSSA, but we can't just immediately stop using it and we *need* LICM to preserve it while we are using it. We can restore the old SSAUpdater driven code if and when there is a serious effort to remove the reliance on LCSSA from all of the loop passes. However, this also serves as a great example of why LCSSA is very nice to have. This change significantly simplifies the process of sinking instructions for LICM, and makes it quite a bit less expensive. It wouldn't even be as complex as it is except that I had to start the process of removing the big recursive LCSSA formation hammer in order to switch even this much of the re-forming code to asserting that LCSSA was preserved. I'll fully remove that next just to tidy things up until the LCSSA debate settles one way or the other. llvm-svn: 201148
-
Alexey Samsonov authored
llvm-svn: 201147
-
Dmitri Gribenko authored
'using namespace clang::cxindex'. llvm-svn: 201146
-
Tim Northover authored
The s64/u64 vcvt conversion operations are actually pretty much identical to the s32/u32 ones in implementation, and can be shared with just one extra variable. llvm-svn: 201145
-
Robert Lytton authored
Xcore target ABI requires const data that is externally visible to be handled differently if it has C-language linkage rather than C++ language linkage. Clang now emits ".cp.rodata" section information. All other externally visible constant data will be placed in the DP section. llvm-svn: 201144
-
Robert Lytton authored
llvm-svn: 201143
-
Robert Lytton authored
Xcore target ABI requires const data that is externally visible to be handled differently if it has C-language linkage rather than C++ language linkage. llvm-svn: 201142
-
Robert Lytton authored
llvm-svn: 201141
-
Elena Demikhovsky authored
llvm-svn: 201140
-
Daniel Jasper authored
E.g.: Foo([]()->std::vector<int> { return { 2 }; }()); llvm-svn: 201139
-
Daniel Jasper authored
Before: auto result = SomeObject // Calling someFunction on SomeObject .someFunction(); After: auto result = SomeObject // Calling someFunction on SomeObject .someFunction(); llvm-svn: 201138
-
Oliver Stannard authored
According to the AAPCS, we can split structs between GPRs and the stack, except for when an argument has already been allocated on the stack. This can occur when a large number of floating-point arguments fill up the VFP registers, and are alllocated on the stack before the general-purpose argument registers are full. llvm-svn: 201137
-
Dmitri Gribenko authored
only current user should be using toEpochTime() instead. llvm-svn: 201136
-
Alexey Samsonov authored
llvm-svn: 201135
-
Elena Demikhovsky authored
fixed encoding of VEXTRACTPS instruction. llvm-svn: 201134
-
Simon Atanasyan authored
line by line. llvm-svn: 201133
-
Quentin Colombet authored
profitability check due to some other checks in the addressing mode matcher. I.e., test case for commit r201121. <rdar://problem/16020230> llvm-svn: 201132
-
Simon Atanasyan authored
llvm-svn: 201131
-
Ted Kremenek authored
This triggered a miscompilation of code using Boost's function_template.hpp when it was included inside a PCH file. A local static within that header would be treated as local extern, resulting in the wrong mangling. This only occurred during PCH deserialization. Fixes <rdar://problem/15975816> and <rdar://problem/15926311>. llvm-svn: 201130
-
Simon Atanasyan authored
llvm-svn: 201129
-
Simon Atanasyan authored
llvm-svn: 201128
-
Lang Hames authored
uintptr_t. An unsigned could overflow for large sections. No test case - anything big enough to overflow an unsigned is going to take an appreciable time to zero when the test passes. The choice of uintptr_t was made to match the RTDyldMemoryManager APIs, but these should probably be hardcoded to uint64_ts: It is legitimate to JIT for 64-bit targets from a 32-bit host/compiler. llvm-svn: 201127
-
Craig Topper authored
Changed attributes of all gather intrinsics from IntrReadMem to IntrReadArgMem as they access only memory based on argument. Patch by Robert Khasanov. llvm-svn: 201126
-
Aaron Ballman authored
llvm-svn: 201125
-
Aaron Ballman authored
Hopefully fixing the MinGW 32 build, which was broken by r200767. Not using rand_s() since MinGW does not have an implementation for it, but instead using the underlying CryptGenRandom APIs. llvm-svn: 201124
-
Jordan Rose authored
This will let us stage in the modeling of operator new. The -analyzer-config opton 'c++-inline-allocators' is currently off by default. Patch by Karthik Bhat! llvm-svn: 201122
-
Quentin Colombet authored
The addressing mode matcher checks at some point the profitability of folding an instruction into the addressing mode. When the instruction to be folded has several uses, it checks that the instruction can be folded in each use. To do so, it creates a new matcher for each use and check if the instruction is in the list of the matched instructions of this new matcher. The new matchers may promote some instructions and this has to be undone to keep the state of the original matcher consistent. A test case will follow. <rdar://problem/16020230> llvm-svn: 201121
-
Josh Magee authored
This option has the following effects: * It adds the sspstrong IR attribute to each function within the CU. * It defines the macro __SSP_STRONG__ with the value of 2. Differential Revision: http://llvm-reviews.chandlerc.com/D2717 llvm-svn: 201120
-
David Blaikie authored
llvm-svn: 201119
-
Jason Molenda authored
instead of on the stack. Handles larger packet read requests better. llvm-svn: 201118
-
Jason Molenda authored
use a system-wide unique thread ID instead of a pthread_t to identify the thread we want debug info for. Also, free some more memory regions that needed to be freed. llvm-svn: 201117
-
Eli Bendersky authored
These are self-contained in functionality so it makes sense to separate them, as opt.cpp has grown quite big already. Following Eric's suggestions, if this code is ever deemed useful outside of tools/opt, it will make sense to move it to one of the LLVM libraries like IR. llvm-svn: 201116
-
Juergen Ributzka authored
llvm-svn: 201115
-
Manman Ren authored
This function adds an extra path argument to lto_module_create_from_memory. The path argument will be passed to makeBuffer to make sure the MemoryBuffer has a name and the created module has a module identifier. This is mainly for emitting warning messages from the linker. When we emit warning message on a module, we can use the module identifier. rdar://15985737 llvm-svn: 201114
-
- Feb 10, 2014
-
-
Rafael Espindola authored
A const ObjectFile needs to be able to provide its name. For an IRObjectFile, that means being able to call the mangler. Since each IRObjectFile can have a different mangling, it is natural for them to contain a Mangler which is therefore also const. llvm-svn: 201113
-
Ana Pazos authored
Replaced cast and vreinterepret operations with code to reinterpret bitwise the types float16_t and int16_t. llvm-svn: 201112
-
Reid Kleckner authored
Patch by Brad King! llvm-svn: 201111
-