Skip to content
This repository was archived by the owner on Feb 5, 2019. It is now read-only.

Update to release_36@228504 #32

Closed
wants to merge 28 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
30292a9
R600/SI: Define a schedule model and enable the generic machine sched…
tstellarAMD Jan 30, 2015
9fb28b7
Merging r227462:
tstellarAMD Jan 30, 2015
f4ade4c
Merging r227584:
zmodem Jan 30, 2015
fe90da8
Revert r227332, which merged in r227300: "[LPM] Rip all of ManagedStatic
zmodem Jan 30, 2015
c275f6d
Merging r227618:
tstellarAMD Feb 2, 2015
fcc04c2
Merging r227603:
zmodem Feb 2, 2015
7e6f918
Merging r227670:
zmodem Feb 2, 2015
c2a5600
Merging r227809:
zmodem Feb 2, 2015
f8de35b
Merging r227903:
zmodem Feb 3, 2015
27ba016
Merging r227934:
zmodem Feb 3, 2015
0d6862e
Merging r226809:
zmodem Feb 3, 2015
4038ee0
Merging r228129:
zmodem Feb 4, 2015
c642982
Merging r228049:
zmodem Feb 4, 2015
301bf2a
Merging r228168:
zmodem Feb 4, 2015
dcc2e86
Utils: Resolve cycles under distinct MDNodes
dexonsmith Feb 4, 2015
d7e2fef
Add microMIPS codegen to the release notes.
dsandersllvm Feb 5, 2015
4cbaf6f
Merging r228302:
tstellarAMD Feb 5, 2015
f518f53
Merging r228303:
tstellarAMD Feb 5, 2015
231d4f5
Merge r227983 (along with r227815 and r227972 to make it apply cleanly)
zmodem Feb 5, 2015
0e9a38b
Merging r228331:
zmodem Feb 5, 2015
d085961
Merging r228444:
zmodem Feb 6, 2015
e72587b
Merging r228411:
zmodem Feb 7, 2015
1ab5df3
Merging r227628:
zmodem Feb 7, 2015
7c02755
Merging r228490:
zmodem Feb 7, 2015
2de8b75
Merging r228500:
zmodem Feb 7, 2015
52a4721
Add a NullCheckElimination pass
Jun 26, 2014
d29732c
Add the NullCheckElimination pass to the default pass list
Jun 27, 2014
2f357c2
Improve the NullCheckElimination pass
Jun 29, 2014
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions cmake/modules/AddLLVM.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -334,11 +334,6 @@ function(llvm_add_library name)
PREFIX ""
)
endif()
if (MSVC)
set_target_properties(${name}
PROPERTIES
IMPORT_SUFFIX ".imp")
endif ()
endif()

if(ARG_MODULE OR ARG_SHARED)
Expand Down
3 changes: 2 additions & 1 deletion docs/ReleaseNotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,8 @@ During this release the MIPS target has reached a few major milestones. The
compiler has gained support for MIPS-II and MIPS-III; become ABI-compatible
with GCC for big and little endian O32, N32, and N64; and is now able to
compile the Linux kernel for 32-bit targets. Additionally, LLD now supports
microMIPS for the O32 ABI on little endian targets.
microMIPS for the O32 ABI on little endian targets, and code generation for
microMIPS is almost completely passing the test-suite.

ABI
^^^
Expand Down
4 changes: 2 additions & 2 deletions include/llvm/CodeGen/RegAllocPBQP.h
Original file line number Diff line number Diff line change
Expand Up @@ -248,15 +248,15 @@ class NodeMetadata {
void setReductionState(ReductionState RS) { this->RS = RS; }

void handleAddEdge(const MatrixMetadata& MD, bool Transpose) {
DeniedOpts += Transpose ? MD.getWorstCol() : MD.getWorstRow();
DeniedOpts += Transpose ? MD.getWorstRow() : MD.getWorstCol();
const bool* UnsafeOpts =
Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows();
for (unsigned i = 0; i < NumOpts; ++i)
OptUnsafeEdges[i] += UnsafeOpts[i];
}

void handleRemoveEdge(const MatrixMetadata& MD, bool Transpose) {
DeniedOpts -= Transpose ? MD.getWorstCol() : MD.getWorstRow();
DeniedOpts -= Transpose ? MD.getWorstRow() : MD.getWorstCol();
const bool* UnsafeOpts =
Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows();
for (unsigned i = 0; i < NumOpts; ++i)
Expand Down
3 changes: 3 additions & 0 deletions include/llvm/InitializePasses.h
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,9 @@ void initializeStackMapLivenessPass(PassRegistry&);
void initializeMachineCombinerPass(PassRegistry &);
void initializeLoadCombinePass(PassRegistry&);
void initializeRewriteSymbolsPass(PassRegistry&);

// Specific to the rust-lang llvm branch:
void initializeNullCheckEliminationPass(PassRegistry&);
}

#endif
3 changes: 3 additions & 0 deletions include/llvm/LinkAllPasses.h
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,9 @@ namespace {
(void) llvm::createSeparateConstOffsetFromGEPPass();
(void) llvm::createRewriteSymbolsPass();

// Specific to the rust-lang llvm branch:
(void) llvm::createNullCheckEliminationPass();

(void)new llvm::IntervalPartition();
(void)new llvm::ScalarEvolution();
((llvm::Function*)nullptr)->viewCFGOnly();
Expand Down
7 changes: 7 additions & 0 deletions include/llvm/Transforms/Scalar.h
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,13 @@ createSeparateConstOffsetFromGEPPass(const TargetMachine *TM = nullptr,
//
BasicBlockPass *createLoadCombinePass();

// Specific to the rust-lang llvm branch:
//===----------------------------------------------------------------------===//
//
// NullCheckElimination - Eliminate null checks.
//
FunctionPass *createNullCheckEliminationPass();

} // End llvm namespace

#endif
21 changes: 16 additions & 5 deletions lib/Bitcode/Reader/BitReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@

#include "llvm-c/BitReader.h"
#include "llvm/Bitcode/ReaderWriter.h"
#include "llvm/IR/DiagnosticPrinter.h"
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/Module.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/raw_ostream.h"
#include <cstring>
#include <string>

Expand All @@ -30,11 +32,20 @@ LLVMBool LLVMParseBitcodeInContext(LLVMContextRef ContextRef,
LLVMMemoryBufferRef MemBuf,
LLVMModuleRef *OutModule,
char **OutMessage) {
ErrorOr<Module *> ModuleOrErr =
parseBitcodeFile(unwrap(MemBuf)->getMemBufferRef(), *unwrap(ContextRef));
if (std::error_code EC = ModuleOrErr.getError()) {
if (OutMessage)
*OutMessage = strdup(EC.message().c_str());
MemoryBufferRef Buf = unwrap(MemBuf)->getMemBufferRef();
LLVMContext &Ctx = *unwrap(ContextRef);

std::string Message;
raw_string_ostream Stream(Message);
DiagnosticPrinterRawOStream DP(Stream);

ErrorOr<Module *> ModuleOrErr = parseBitcodeFile(
Buf, Ctx, [&](const DiagnosticInfo &DI) { DI.print(DP); });
if (ModuleOrErr.getError()) {
if (OutMessage) {
Stream.flush();
*OutMessage = strdup(Message.c_str());
}
*OutModule = wrap((Module*)nullptr);
return 1;
}
Expand Down
6 changes: 3 additions & 3 deletions lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -554,9 +554,9 @@ SDValue VectorLegalizer::ExpandLoad(SDValue Op) {
BitOffset += SrcEltBits;
if (BitOffset >= WideBits) {
WideIdx++;
Offset -= WideBits;
if (Offset > 0) {
ShAmt = DAG.getConstant(SrcEltBits - Offset,
BitOffset -= WideBits;
if (BitOffset > 0) {
ShAmt = DAG.getConstant(SrcEltBits - BitOffset,
TLI.getShiftAmountTy(WideVT));
Hi = DAG.getNode(ISD::SHL, dl, WideVT, LoadVals[WideIdx], ShAmt);
Hi = DAG.getNode(ISD::AND, dl, WideVT, Hi, SrcEltBitMask);
Expand Down
8 changes: 4 additions & 4 deletions lib/MC/MCSectionCOFF.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ void MCSectionCOFF::PrintSwitchToSection(const MCAsmInfo &MAI,
}

OS << "\t.section\t" << getSectionName() << ",\"";
if (getCharacteristics() & COFF::IMAGE_SCN_CNT_INITIALIZED_DATA)
OS << 'd';
if (getCharacteristics() & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA)
OS << 'b';
if (getCharacteristics() & COFF::IMAGE_SCN_MEM_EXECUTE)
OS << 'x';
if (getCharacteristics() & COFF::IMAGE_SCN_MEM_WRITE)
Expand All @@ -55,10 +59,6 @@ void MCSectionCOFF::PrintSwitchToSection(const MCAsmInfo &MAI,
OS << 'r';
else
OS << 'y';
if (getCharacteristics() & COFF::IMAGE_SCN_CNT_INITIALIZED_DATA)
OS << 'd';
if (getCharacteristics() & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA)
OS << 'b';
if (getCharacteristics() & COFF::IMAGE_SCN_LNK_REMOVE)
OS << 'n';
if (getCharacteristics() & COFF::IMAGE_SCN_MEM_SHARED)
Expand Down
39 changes: 21 additions & 18 deletions lib/Support/PrettyStackTrace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
#include "llvm-c/Core.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/Config/config.h" // Get autoconf configuration settings
#include "llvm/Support/ManagedStatic.h"
#include "llvm/Support/Signals.h"
#include "llvm/Support/ThreadLocal.h"
#include "llvm/Support/Watchdog.h"
#include "llvm/Support/raw_ostream.h"

Expand All @@ -26,18 +28,7 @@

using namespace llvm;

// We need a thread local pointer to manage the stack of our stack trace
// objects, but we *really* cannot tolerate destructors running and do not want
// to pay any overhead of synchronizing. As a consequence, we use a raw
// thread-local variable. Some day, we should be able to use a limited subset
// of C++11's thread_local, but compilers aren't up for it today.
// FIXME: This should be moved to a Compiler.h abstraction.
#ifdef _MSC_VER // MSVC supports this with a __declspec.
static __declspec(thread) const PrettyStackTraceEntry
*PrettyStackTraceHead = nullptr;
#else // Clang, GCC, and all compatible compilers tend to use __thread.
static __thread const PrettyStackTraceEntry *PrettyStackTraceHead = nullptr;
#endif
static ManagedStatic<sys::ThreadLocal<const PrettyStackTraceEntry> > PrettyStackTraceHead;

static unsigned PrintStack(const PrettyStackTraceEntry *Entry, raw_ostream &OS){
unsigned NextID = 0;
Expand All @@ -55,12 +46,12 @@ static unsigned PrintStack(const PrettyStackTraceEntry *Entry, raw_ostream &OS){
/// PrintCurStackTrace - Print the current stack trace to the specified stream.
static void PrintCurStackTrace(raw_ostream &OS) {
// Don't print an empty trace.
if (!PrettyStackTraceHead) return;
if (!PrettyStackTraceHead->get()) return;

// If there are pretty stack frames registered, walk and emit them.
OS << "Stack dump:\n";

PrintStack(PrettyStackTraceHead, OS);
PrintStack(PrettyStackTraceHead->get(), OS);
OS.flush();
}

Expand Down Expand Up @@ -110,14 +101,26 @@ static void CrashHandler(void *) {

PrettyStackTraceEntry::PrettyStackTraceEntry() {
// Link ourselves.
NextEntry = PrettyStackTraceHead;
PrettyStackTraceHead = this;
NextEntry = PrettyStackTraceHead->get();
PrettyStackTraceHead->set(this);
}

PrettyStackTraceEntry::~PrettyStackTraceEntry() {
assert(PrettyStackTraceHead == this &&
// Do nothing if PrettyStackTraceHead is uninitialized. This can only happen
// if a shutdown occurred after we created the PrettyStackTraceEntry. That
// does occur in the following idiom:
//
// PrettyStackTraceProgram X(...);
// llvm_shutdown_obj Y;
//
// Without this check, we may end up removing ourselves from the stack trace
// after PrettyStackTraceHead has already been destroyed.
if (!PrettyStackTraceHead.isConstructed())
return;

assert(PrettyStackTraceHead->get() == this &&
"Pretty stack trace entry destruction is out of order");
PrettyStackTraceHead = getNextEntry();
PrettyStackTraceHead->set(getNextEntry());
}

void PrettyStackTraceString::print(raw_ostream &OS) const {
Expand Down
34 changes: 23 additions & 11 deletions lib/Target/ARM/ARMBaseInstrInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2400,7 +2400,8 @@ optimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg, unsigned SrcReg2,
else if (MI->getParent() != CmpInstr->getParent() || CmpValue != 0) {
// Conservatively refuse to convert an instruction which isn't in the same
// BB as the comparison.
// For CMPri, we need to check Sub, thus we can't return here.
// For CMPri w/ CmpValue != 0, a Sub may still be a candidate.
// Thus we cannot return here.
if (CmpInstr->getOpcode() == ARM::CMPri ||
CmpInstr->getOpcode() == ARM::t2CMPri)
MI = nullptr;
Expand Down Expand Up @@ -2479,8 +2480,8 @@ optimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg, unsigned SrcReg2,
case ARM::t2EORrr:
case ARM::t2EORri: {
// Scan forward for the use of CPSR
// When checking against MI: if it's a conditional code requires
// checking of V bit, then this is not safe to do.
// When checking against MI: if it's a conditional code that requires
// checking of the V bit or C bit, then this is not safe to do.
// It is safe to remove CmpInstr if CPSR is redefined or killed.
// If we are done with the basic block, we need to check whether CPSR is
// live-out.
Expand Down Expand Up @@ -2547,19 +2548,30 @@ optimizeCompareInstr(MachineInstr *CmpInstr, unsigned SrcReg, unsigned SrcReg2,
OperandsToUpdate.push_back(
std::make_pair(&((*I).getOperand(IO - 1)), NewCC));
}
} else
} else {
// No Sub, so this is x = <op> y, z; cmp x, 0.
switch (CC) {
default:
case ARMCC::EQ: // Z
case ARMCC::NE: // Z
case ARMCC::MI: // N
case ARMCC::PL: // N
case ARMCC::AL: // none
// CPSR can be used multiple times, we should continue.
break;
case ARMCC::VS:
case ARMCC::VC:
case ARMCC::GE:
case ARMCC::LT:
case ARMCC::GT:
case ARMCC::LE:
case ARMCC::HS: // C
case ARMCC::LO: // C
case ARMCC::VS: // V
case ARMCC::VC: // V
case ARMCC::HI: // C Z
case ARMCC::LS: // C Z
case ARMCC::GE: // N V
case ARMCC::LT: // N V
case ARMCC::GT: // Z N V
case ARMCC::LE: // Z N V
// The instruction uses the V bit or C bit which is not safe.
return false;
}
}
}
}

Expand Down
Loading