mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 21:00:29 +00:00
assert(0) -> LLVM_UNREACHABLE.
Make llvm_unreachable take an optional string, thus moving the cerr<< out of line. LLVM_UNREACHABLE is now a simple wrapper that makes the message go away for NDEBUG builds. llvm-svn: 75379
This commit is contained in:
parent
2c046813c6
commit
ae8a3ff177
@ -15,6 +15,7 @@
|
||||
#define LLVM_ANALYSIS_SCALAREVOLUTION_EXPRESSIONS_H
|
||||
|
||||
#include "llvm/Analysis/ScalarEvolution.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
|
||||
namespace llvm {
|
||||
class ConstantInt;
|
||||
@ -584,14 +585,12 @@ namespace llvm {
|
||||
case scCouldNotCompute:
|
||||
return ((SC*)this)->visitCouldNotCompute((const SCEVCouldNotCompute*)S);
|
||||
default:
|
||||
assert(0 && "Unknown SCEV type!");
|
||||
abort();
|
||||
LLVM_UNREACHABLE("Unknown SCEV type!");
|
||||
}
|
||||
}
|
||||
|
||||
RetVal visitCouldNotCompute(const SCEVCouldNotCompute *S) {
|
||||
assert(0 && "Invalid use of SCEVCouldNotCompute!");
|
||||
abort();
|
||||
LLVM_UNREACHABLE("Invalid use of SCEVCouldNotCompute!");
|
||||
return RetVal();
|
||||
}
|
||||
};
|
||||
|
@ -25,6 +25,7 @@
|
||||
#include "llvm/Type.h"
|
||||
#include "llvm/ADT/FoldingSet.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/ValueHandle.h"
|
||||
|
||||
namespace llvm {
|
||||
@ -119,8 +120,7 @@ public:
|
||||
|
||||
virtual void destroyConstant();
|
||||
virtual void replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) {
|
||||
assert(0 && "This should never be called because MDNodes have no ops");
|
||||
abort();
|
||||
LLVM_UNREACHABLE("This should never be called because MDNodes have no ops");
|
||||
}
|
||||
|
||||
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
||||
|
@ -46,11 +46,11 @@ namespace llvm {
|
||||
/// This function calls abort().
|
||||
/// Call this after assert(0), so that compiler knows the path is not
|
||||
/// reachable.
|
||||
void llvm_unreachable(void) NORETURN;
|
||||
void llvm_unreachable(const char *msg=0) NORETURN;
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
#define LLVM_UNREACHABLE(msg) do {cerr<<msg<<"\n";llvm_unreachable();}while(0)
|
||||
#define LLVM_UNREACHABLE(msg) llvm_unreachable(msg)
|
||||
#else
|
||||
#define LLVM_UNREACHABLE(msg) llvm_unreachable()
|
||||
#endif
|
||||
|
@ -14,6 +14,7 @@
|
||||
#include "llvm/Function.h"
|
||||
#include "llvm/Instructions.h"
|
||||
#include "llvm/Module.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
@ -113,8 +114,7 @@ public:
|
||||
//
|
||||
RetTy visit(Instruction &I) {
|
||||
switch (I.getOpcode()) {
|
||||
default: assert(0 && "Unknown instruction type encountered!");
|
||||
abort();
|
||||
default: LLVM_UNREACHABLE("Unknown instruction type encountered!");
|
||||
// Build the switch statement using the Instruction.def file...
|
||||
#define HANDLE_INST(NUM, OPCODE, CLASS) \
|
||||
case Instruction::OPCODE: return \
|
||||
|
@ -24,6 +24,7 @@
|
||||
#define LLVM_SUPPORT_PASS_NAME_PARSER_H
|
||||
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Pass.h"
|
||||
#include <algorithm>
|
||||
#include <cstring>
|
||||
@ -67,7 +68,7 @@ public:
|
||||
if (findOption(P->getPassArgument()) != getNumOptions()) {
|
||||
cerr << "Two passes with the same argument (-"
|
||||
<< P->getPassArgument() << ") attempted to be registered!\n";
|
||||
abort();
|
||||
llvm_unreachable();
|
||||
}
|
||||
addLiteralOption(P->getPassArgument(), P, P->getPassName());
|
||||
}
|
||||
|
@ -22,6 +22,7 @@
|
||||
|
||||
#include "llvm/Pass.h"
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include <string>
|
||||
|
||||
@ -111,9 +112,8 @@ public:
|
||||
/// @note This has to exist, because this is a pass, but it should never be
|
||||
/// used.
|
||||
TargetData() : ImmutablePass(&ID) {
|
||||
assert(0 && "ERROR: Bad TargetData ctor used. "
|
||||
"Tool did not specify a TargetData to use?");
|
||||
abort();
|
||||
llvm_report_error("ERROR: Bad TargetData ctor used. "
|
||||
"Tool did not specify a TargetData to use?");
|
||||
}
|
||||
|
||||
/// Constructs a TargetData from a specification string. See init().
|
||||
|
@ -14,6 +14,7 @@
|
||||
#ifndef LLVM_TARGET_TARGETINSTRINFO_H
|
||||
#define LLVM_TARGET_TARGETINSTRINFO_H
|
||||
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Target/TargetInstrDesc.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
|
||||
@ -428,8 +429,7 @@ public:
|
||||
/// point.
|
||||
virtual void insertNoop(MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator MI) const {
|
||||
assert(0 && "Target didn't implement insertNoop!");
|
||||
abort();
|
||||
LLVM_UNREACHABLE("Target didn't implement insertNoop!");
|
||||
}
|
||||
|
||||
/// isPredicated - Returns true if the instruction is already predicated.
|
||||
|
@ -18,6 +18,7 @@
|
||||
#include "llvm/Assembly/Writer.h"
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/Streams.h"
|
||||
using namespace llvm;
|
||||
|
||||
@ -131,7 +132,7 @@ AliasAnalysisCounter::alias(const Value *V1, unsigned V1Size,
|
||||
|
||||
const char *AliasString;
|
||||
switch (R) {
|
||||
default: assert(0 && "Unknown alias type!");
|
||||
default: LLVM_UNREACHABLE("Unknown alias type!");
|
||||
case NoAlias: No++; AliasString = "No alias"; break;
|
||||
case MayAlias: May++; AliasString = "May alias"; break;
|
||||
case MustAlias: Must++; AliasString = "Must alias"; break;
|
||||
@ -156,7 +157,7 @@ AliasAnalysisCounter::getModRefInfo(CallSite CS, Value *P, unsigned Size) {
|
||||
|
||||
const char *MRString;
|
||||
switch (R) {
|
||||
default: assert(0 && "Unknown mod/ref type!");
|
||||
default: LLVM_UNREACHABLE("Unknown mod/ref type!");
|
||||
case NoModRef: NoMR++; MRString = "NoModRef"; break;
|
||||
case Ref: JustRef++; MRString = "JustRef"; break;
|
||||
case Mod: JustMod++; MRString = "JustMod"; break;
|
||||
|
@ -20,6 +20,7 @@
|
||||
#include "llvm/Target/TargetData.h"
|
||||
#include "llvm/Assembly/Writer.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/InstIterator.h"
|
||||
#include "llvm/Support/Streams.h"
|
||||
using namespace llvm;
|
||||
@ -539,7 +540,7 @@ void AliasSet::print(std::ostream &OS) const {
|
||||
case Refs : OS << "Ref "; break;
|
||||
case Mods : OS << "Mod "; break;
|
||||
case ModRef : OS << "Mod/Ref "; break;
|
||||
default: assert(0 && "Bad value for AccessTy!");
|
||||
default: LLVM_UNREACHABLE("Bad value for AccessTy!");
|
||||
}
|
||||
if (isVolatile()) OS << "[volatile] ";
|
||||
if (Forward)
|
||||
|
@ -28,6 +28,7 @@
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/GetElementPtrTypeIterator.h"
|
||||
#include <algorithm>
|
||||
using namespace llvm;
|
||||
@ -157,7 +158,7 @@ namespace {
|
||||
|
||||
virtual void getArgumentAccesses(Function *F, CallSite CS,
|
||||
std::vector<PointerAccessInfo> &Info) {
|
||||
assert(0 && "This method may not be called on this function!");
|
||||
LLVM_UNREACHABLE("This method may not be called on this function!");
|
||||
}
|
||||
|
||||
virtual void getMustAliases(Value *P, std::vector<Value*> &RetVals) { }
|
||||
|
@ -23,6 +23,7 @@
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/ADT/StringMap.h"
|
||||
#include "llvm/Target/TargetData.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/GetElementPtrTypeIterator.h"
|
||||
#include "llvm/Support/MathExtras.h"
|
||||
#include <cerrno>
|
||||
@ -365,7 +366,7 @@ Constant *llvm::ConstantFoldInstOperands(unsigned Opcode, const Type *DestTy,
|
||||
return 0;
|
||||
case Instruction::ICmp:
|
||||
case Instruction::FCmp:
|
||||
assert(0 &&"This function is invalid for compares: no predicate specified");
|
||||
LLVM_UNREACHABLE("This function is invalid for compares: no predicate specified");
|
||||
case Instruction::PtrToInt:
|
||||
// If the input is a inttoptr, eliminate the pair. This requires knowing
|
||||
// the width of a pointer, so it can't be done in ConstantExpr::getCast.
|
||||
@ -690,7 +691,7 @@ static Constant *ConstantFoldFP(double (*NativeFP)(double), double V,
|
||||
return Context->getConstantFP(APFloat((float)V));
|
||||
if (Ty == Type::DoubleTy)
|
||||
return Context->getConstantFP(APFloat(V));
|
||||
assert(0 && "Can only constant fold float/double");
|
||||
LLVM_UNREACHABLE("Can only constant fold float/double");
|
||||
return 0; // dummy return to suppress warning
|
||||
}
|
||||
|
||||
@ -709,7 +710,7 @@ static Constant *ConstantFoldBinaryFP(double (*NativeFP)(double, double),
|
||||
return Context->getConstantFP(APFloat((float)V));
|
||||
if (Ty == Type::DoubleTy)
|
||||
return Context->getConstantFP(APFloat(V));
|
||||
assert(0 && "Can only constant fold float/double");
|
||||
LLVM_UNREACHABLE("Can only constant fold float/double");
|
||||
return 0; // dummy return to suppress warning
|
||||
}
|
||||
|
||||
|
@ -508,7 +508,7 @@ namespace {
|
||||
#ifndef NDEBUG
|
||||
V->dump();
|
||||
#endif
|
||||
assert(0 && "Value does not have a node in the points-to graph!");
|
||||
LLVM_UNREACHABLE("Value does not have a node in the points-to graph!");
|
||||
}
|
||||
return I->second;
|
||||
}
|
||||
@ -827,10 +827,10 @@ unsigned Andersens::getNodeForConstantPointer(Constant *C) {
|
||||
return getNodeForConstantPointer(CE->getOperand(0));
|
||||
default:
|
||||
cerr << "Constant Expr not yet handled: " << *CE << "\n";
|
||||
assert(0);
|
||||
llvm_unreachable();
|
||||
}
|
||||
} else {
|
||||
assert(0 && "Unknown constant pointer!");
|
||||
LLVM_UNREACHABLE("Unknown constant pointer!");
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
@ -854,10 +854,10 @@ unsigned Andersens::getNodeForConstantPointerTarget(Constant *C) {
|
||||
return getNodeForConstantPointerTarget(CE->getOperand(0));
|
||||
default:
|
||||
cerr << "Constant Expr not yet handled: " << *CE << "\n";
|
||||
assert(0);
|
||||
llvm_unreachable();
|
||||
}
|
||||
} else {
|
||||
assert(0 && "Unknown constant pointer!");
|
||||
LLVM_UNREACHABLE("Unknown constant pointer!");
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
@ -1244,7 +1244,7 @@ void Andersens::visitSelectInst(SelectInst &SI) {
|
||||
}
|
||||
|
||||
void Andersens::visitVAArg(VAArgInst &I) {
|
||||
assert(0 && "vaarg not handled yet!");
|
||||
LLVM_UNREACHABLE("vaarg not handled yet!");
|
||||
}
|
||||
|
||||
/// AddConstraintsForCall - Add constraints for a call with actual arguments
|
||||
|
@ -24,6 +24,7 @@
|
||||
#include "llvm/Analysis/ScalarEvolution.h"
|
||||
#include "llvm/Instructions.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Target/TargetData.h"
|
||||
using namespace llvm;
|
||||
|
||||
@ -63,7 +64,7 @@ static Value *GetPointerOperand(Value *I) {
|
||||
return i->getPointerOperand();
|
||||
if (StoreInst *i = dyn_cast<StoreInst>(I))
|
||||
return i->getPointerOperand();
|
||||
assert(0 && "Value is no load or store instruction!");
|
||||
LLVM_UNREACHABLE("Value is no load or store instruction!");
|
||||
// Never reached.
|
||||
return 0;
|
||||
}
|
||||
|
@ -75,6 +75,7 @@
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/ConstantRange.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/GetElementPtrTypeIterator.h"
|
||||
#include "llvm/Support/InstIterator.h"
|
||||
#include "llvm/Support/MathExtras.h"
|
||||
@ -147,21 +148,21 @@ SCEVCouldNotCompute::SCEVCouldNotCompute() :
|
||||
SCEV(scCouldNotCompute) {}
|
||||
|
||||
void SCEVCouldNotCompute::Profile(FoldingSetNodeID &ID) const {
|
||||
assert(0 && "Attempt to use a SCEVCouldNotCompute object!");
|
||||
LLVM_UNREACHABLE("Attempt to use a SCEVCouldNotCompute object!");
|
||||
}
|
||||
|
||||
bool SCEVCouldNotCompute::isLoopInvariant(const Loop *L) const {
|
||||
assert(0 && "Attempt to use a SCEVCouldNotCompute object!");
|
||||
LLVM_UNREACHABLE("Attempt to use a SCEVCouldNotCompute object!");
|
||||
return false;
|
||||
}
|
||||
|
||||
const Type *SCEVCouldNotCompute::getType() const {
|
||||
assert(0 && "Attempt to use a SCEVCouldNotCompute object!");
|
||||
LLVM_UNREACHABLE("Attempt to use a SCEVCouldNotCompute object!");
|
||||
return 0;
|
||||
}
|
||||
|
||||
bool SCEVCouldNotCompute::hasComputableLoopEvolution(const Loop *L) const {
|
||||
assert(0 && "Attempt to use a SCEVCouldNotCompute object!");
|
||||
LLVM_UNREACHABLE("Attempt to use a SCEVCouldNotCompute object!");
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -296,7 +297,7 @@ SCEVCommutativeExpr::replaceSymbolicValuesWithConcrete(
|
||||
else if (isa<SCEVUMaxExpr>(this))
|
||||
return SE.getUMaxExpr(NewOps);
|
||||
else
|
||||
assert(0 && "Unknown commutative expr!");
|
||||
LLVM_UNREACHABLE("Unknown commutative expr!");
|
||||
}
|
||||
}
|
||||
return this;
|
||||
@ -543,7 +544,7 @@ namespace {
|
||||
return operator()(LC->getOperand(), RC->getOperand());
|
||||
}
|
||||
|
||||
assert(0 && "Unknown SCEV kind!");
|
||||
LLVM_UNREACHABLE("Unknown SCEV kind!");
|
||||
return false;
|
||||
}
|
||||
};
|
||||
@ -3488,7 +3489,7 @@ GetAddressedElementFromGlobal(GlobalVariable *GV,
|
||||
if (Idx >= ATy->getNumElements()) return 0; // Bogus program
|
||||
Init = Constant::getNullValue(ATy->getElementType());
|
||||
} else {
|
||||
assert(0 && "Unknown constant aggregate type!");
|
||||
LLVM_UNREACHABLE("Unknown constant aggregate type!");
|
||||
}
|
||||
return 0;
|
||||
} else {
|
||||
@ -3898,7 +3899,7 @@ const SCEV *ScalarEvolution::getSCEVAtScope(const SCEV *V, const Loop *L) {
|
||||
return getSMaxExpr(NewOps);
|
||||
if (isa<SCEVUMaxExpr>(Comm))
|
||||
return getUMaxExpr(NewOps);
|
||||
assert(0 && "Unknown commutative SCEV type!");
|
||||
LLVM_UNREACHABLE("Unknown commutative SCEV type!");
|
||||
}
|
||||
}
|
||||
// If we got here, all operands are loop invariant.
|
||||
@ -3949,7 +3950,7 @@ const SCEV *ScalarEvolution::getSCEVAtScope(const SCEV *V, const Loop *L) {
|
||||
return getTruncateExpr(Op, Cast->getType());
|
||||
}
|
||||
|
||||
assert(0 && "Unknown SCEV type!");
|
||||
LLVM_UNREACHABLE("Unknown SCEV type!");
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -4260,7 +4261,7 @@ bool ScalarEvolution::isKnownPredicate(ICmpInst::Predicate Pred,
|
||||
|
||||
switch (Pred) {
|
||||
default:
|
||||
assert(0 && "Unexpected ICmpInst::Predicate value!");
|
||||
LLVM_UNREACHABLE("Unexpected ICmpInst::Predicate value!");
|
||||
break;
|
||||
case ICmpInst::ICMP_SGT:
|
||||
Pred = ICmpInst::ICMP_SLT;
|
||||
|
@ -15,6 +15,7 @@
|
||||
#include "llvm/DerivedTypes.h"
|
||||
#include "llvm/Instruction.h"
|
||||
#include "llvm/LLVMContext.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/MemoryBuffer.h"
|
||||
#include "llvm/Support/MathExtras.h"
|
||||
#include "llvm/Support/SourceMgr.h"
|
||||
@ -699,7 +700,7 @@ lltok::Kind LLLexer::Lex0x() {
|
||||
|
||||
uint64_t Pair[2];
|
||||
switch (Kind) {
|
||||
default: assert(0 && "Unknown kind!");
|
||||
default: LLVM_UNREACHABLE("Unknown kind!");
|
||||
case 'K':
|
||||
// F80HexFPConstant - x87 long double in hexadecimal format (10 bytes)
|
||||
FP80HexToIntPair(TokStart+3, CurPtr, Pair);
|
||||
|
@ -24,6 +24,7 @@
|
||||
#include "llvm/ValueSymbolTable.h"
|
||||
#include "llvm/ADT/SmallPtrSet.h"
|
||||
#include "llvm/ADT/StringExtras.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
using namespace llvm;
|
||||
|
||||
@ -2040,7 +2041,7 @@ bool LLParser::ConvertGlobalValIDToValue(const Type *Ty, ValID &ID,
|
||||
return Error(ID.Loc, "functions are not values, refer to them as pointers");
|
||||
|
||||
switch (ID.Kind) {
|
||||
default: assert(0 && "Unknown ValID!");
|
||||
default: LLVM_UNREACHABLE("Unknown ValID!");
|
||||
case ValID::t_LocalID:
|
||||
case ValID::t_LocalName:
|
||||
return Error(ID.Loc, "invalid use of function-local name");
|
||||
@ -2835,7 +2836,7 @@ bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
|
||||
|
||||
bool Valid;
|
||||
switch (OperandType) {
|
||||
default: assert(0 && "Unknown operand type!");
|
||||
default: LLVM_UNREACHABLE("Unknown operand type!");
|
||||
case 0: // int or FP.
|
||||
Valid = LHS->getType()->isIntOrIntVector() ||
|
||||
LHS->getType()->isFPOrFPVector();
|
||||
|
@ -23,6 +23,7 @@
|
||||
#include "llvm/Module.h"
|
||||
#include "llvm/TypeSymbolTable.h"
|
||||
#include "llvm/ValueSymbolTable.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/MathExtras.h"
|
||||
#include "llvm/Support/Streams.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
@ -58,7 +59,7 @@ enum {
|
||||
|
||||
static unsigned GetEncodedCastOpcode(unsigned Opcode) {
|
||||
switch (Opcode) {
|
||||
default: assert(0 && "Unknown cast instruction!");
|
||||
default: LLVM_UNREACHABLE("Unknown cast instruction!");
|
||||
case Instruction::Trunc : return bitc::CAST_TRUNC;
|
||||
case Instruction::ZExt : return bitc::CAST_ZEXT;
|
||||
case Instruction::SExt : return bitc::CAST_SEXT;
|
||||
@ -76,7 +77,7 @@ static unsigned GetEncodedCastOpcode(unsigned Opcode) {
|
||||
|
||||
static unsigned GetEncodedBinaryOpcode(unsigned Opcode) {
|
||||
switch (Opcode) {
|
||||
default: assert(0 && "Unknown binary instruction!");
|
||||
default: LLVM_UNREACHABLE("Unknown binary instruction!");
|
||||
case Instruction::Add:
|
||||
case Instruction::FAdd: return bitc::BINOP_ADD;
|
||||
case Instruction::Sub:
|
||||
@ -200,7 +201,7 @@ static void WriteTypeTable(const ValueEnumerator &VE, BitstreamWriter &Stream) {
|
||||
unsigned Code = 0;
|
||||
|
||||
switch (T->getTypeID()) {
|
||||
default: assert(0 && "Unknown type!");
|
||||
default: LLVM_UNREACHABLE("Unknown type!");
|
||||
case Type::VoidTyID: Code = bitc::TYPE_CODE_VOID; break;
|
||||
case Type::FloatTyID: Code = bitc::TYPE_CODE_FLOAT; break;
|
||||
case Type::DoubleTyID: Code = bitc::TYPE_CODE_DOUBLE; break;
|
||||
@ -278,7 +279,7 @@ static void WriteTypeTable(const ValueEnumerator &VE, BitstreamWriter &Stream) {
|
||||
|
||||
static unsigned getEncodedLinkage(const GlobalValue *GV) {
|
||||
switch (GV->getLinkage()) {
|
||||
default: assert(0 && "Invalid linkage!");
|
||||
default: LLVM_UNREACHABLE("Invalid linkage!");
|
||||
case GlobalValue::GhostLinkage: // Map ghost linkage onto external.
|
||||
case GlobalValue::ExternalLinkage: return 0;
|
||||
case GlobalValue::WeakAnyLinkage: return 1;
|
||||
@ -298,7 +299,7 @@ static unsigned getEncodedLinkage(const GlobalValue *GV) {
|
||||
|
||||
static unsigned getEncodedVisibility(const GlobalValue *GV) {
|
||||
switch (GV->getVisibility()) {
|
||||
default: assert(0 && "Invalid visibility!");
|
||||
default: LLVM_UNREACHABLE("Invalid visibility!");
|
||||
case GlobalValue::DefaultVisibility: return 0;
|
||||
case GlobalValue::HiddenVisibility: return 1;
|
||||
case GlobalValue::ProtectedVisibility: return 2;
|
||||
@ -712,7 +713,7 @@ static void WriteConstants(unsigned FirstVal, unsigned LastVal,
|
||||
}
|
||||
}
|
||||
} else {
|
||||
assert(0 && "Unknown constant!");
|
||||
LLVM_UNREACHABLE("Unknown constant!");
|
||||
}
|
||||
Stream.EmitRecord(Code, Record, AbbrevToUse);
|
||||
Record.clear();
|
||||
@ -1126,7 +1127,7 @@ static void WriteBlockInfo(const ValueEnumerator &VE, BitstreamWriter &Stream) {
|
||||
Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 8));
|
||||
if (Stream.EmitBlockInfoAbbrev(bitc::VALUE_SYMTAB_BLOCK_ID,
|
||||
Abbv) != VST_ENTRY_8_ABBREV)
|
||||
assert(0 && "Unexpected abbrev ordering!");
|
||||
LLVM_UNREACHABLE("Unexpected abbrev ordering!");
|
||||
}
|
||||
|
||||
{ // 7-bit fixed width VST_ENTRY strings.
|
||||
@ -1137,7 +1138,7 @@ static void WriteBlockInfo(const ValueEnumerator &VE, BitstreamWriter &Stream) {
|
||||
Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 7));
|
||||
if (Stream.EmitBlockInfoAbbrev(bitc::VALUE_SYMTAB_BLOCK_ID,
|
||||
Abbv) != VST_ENTRY_7_ABBREV)
|
||||
assert(0 && "Unexpected abbrev ordering!");
|
||||
LLVM_UNREACHABLE("Unexpected abbrev ordering!");
|
||||
}
|
||||
{ // 6-bit char6 VST_ENTRY strings.
|
||||
BitCodeAbbrev *Abbv = new BitCodeAbbrev();
|
||||
@ -1147,7 +1148,7 @@ static void WriteBlockInfo(const ValueEnumerator &VE, BitstreamWriter &Stream) {
|
||||
Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Char6));
|
||||
if (Stream.EmitBlockInfoAbbrev(bitc::VALUE_SYMTAB_BLOCK_ID,
|
||||
Abbv) != VST_ENTRY_6_ABBREV)
|
||||
assert(0 && "Unexpected abbrev ordering!");
|
||||
LLVM_UNREACHABLE("Unexpected abbrev ordering!");
|
||||
}
|
||||
{ // 6-bit char6 VST_BBENTRY strings.
|
||||
BitCodeAbbrev *Abbv = new BitCodeAbbrev();
|
||||
@ -1157,7 +1158,7 @@ static void WriteBlockInfo(const ValueEnumerator &VE, BitstreamWriter &Stream) {
|
||||
Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Char6));
|
||||
if (Stream.EmitBlockInfoAbbrev(bitc::VALUE_SYMTAB_BLOCK_ID,
|
||||
Abbv) != VST_BBENTRY_6_ABBREV)
|
||||
assert(0 && "Unexpected abbrev ordering!");
|
||||
LLVM_UNREACHABLE("Unexpected abbrev ordering!");
|
||||
}
|
||||
|
||||
|
||||
@ -1169,7 +1170,7 @@ static void WriteBlockInfo(const ValueEnumerator &VE, BitstreamWriter &Stream) {
|
||||
Log2_32_Ceil(VE.getTypes().size()+1)));
|
||||
if (Stream.EmitBlockInfoAbbrev(bitc::CONSTANTS_BLOCK_ID,
|
||||
Abbv) != CONSTANTS_SETTYPE_ABBREV)
|
||||
assert(0 && "Unexpected abbrev ordering!");
|
||||
LLVM_UNREACHABLE("Unexpected abbrev ordering!");
|
||||
}
|
||||
|
||||
{ // INTEGER abbrev for CONSTANTS_BLOCK.
|
||||
@ -1178,7 +1179,7 @@ static void WriteBlockInfo(const ValueEnumerator &VE, BitstreamWriter &Stream) {
|
||||
Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8));
|
||||
if (Stream.EmitBlockInfoAbbrev(bitc::CONSTANTS_BLOCK_ID,
|
||||
Abbv) != CONSTANTS_INTEGER_ABBREV)
|
||||
assert(0 && "Unexpected abbrev ordering!");
|
||||
LLVM_UNREACHABLE("Unexpected abbrev ordering!");
|
||||
}
|
||||
|
||||
{ // CE_CAST abbrev for CONSTANTS_BLOCK.
|
||||
@ -1191,14 +1192,14 @@ static void WriteBlockInfo(const ValueEnumerator &VE, BitstreamWriter &Stream) {
|
||||
|
||||
if (Stream.EmitBlockInfoAbbrev(bitc::CONSTANTS_BLOCK_ID,
|
||||
Abbv) != CONSTANTS_CE_CAST_Abbrev)
|
||||
assert(0 && "Unexpected abbrev ordering!");
|
||||
LLVM_UNREACHABLE("Unexpected abbrev ordering!");
|
||||
}
|
||||
{ // NULL abbrev for CONSTANTS_BLOCK.
|
||||
BitCodeAbbrev *Abbv = new BitCodeAbbrev();
|
||||
Abbv->Add(BitCodeAbbrevOp(bitc::CST_CODE_NULL));
|
||||
if (Stream.EmitBlockInfoAbbrev(bitc::CONSTANTS_BLOCK_ID,
|
||||
Abbv) != CONSTANTS_NULL_Abbrev)
|
||||
assert(0 && "Unexpected abbrev ordering!");
|
||||
LLVM_UNREACHABLE("Unexpected abbrev ordering!");
|
||||
}
|
||||
|
||||
// FIXME: This should only use space for first class types!
|
||||
@ -1211,7 +1212,7 @@ static void WriteBlockInfo(const ValueEnumerator &VE, BitstreamWriter &Stream) {
|
||||
Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // volatile
|
||||
if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID,
|
||||
Abbv) != FUNCTION_INST_LOAD_ABBREV)
|
||||
assert(0 && "Unexpected abbrev ordering!");
|
||||
LLVM_UNREACHABLE("Unexpected abbrev ordering!");
|
||||
}
|
||||
{ // INST_BINOP abbrev for FUNCTION_BLOCK.
|
||||
BitCodeAbbrev *Abbv = new BitCodeAbbrev();
|
||||
@ -1221,7 +1222,7 @@ static void WriteBlockInfo(const ValueEnumerator &VE, BitstreamWriter &Stream) {
|
||||
Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 4)); // opc
|
||||
if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID,
|
||||
Abbv) != FUNCTION_INST_BINOP_ABBREV)
|
||||
assert(0 && "Unexpected abbrev ordering!");
|
||||
LLVM_UNREACHABLE("Unexpected abbrev ordering!");
|
||||
}
|
||||
{ // INST_CAST abbrev for FUNCTION_BLOCK.
|
||||
BitCodeAbbrev *Abbv = new BitCodeAbbrev();
|
||||
@ -1232,7 +1233,7 @@ static void WriteBlockInfo(const ValueEnumerator &VE, BitstreamWriter &Stream) {
|
||||
Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 4)); // opc
|
||||
if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID,
|
||||
Abbv) != FUNCTION_INST_CAST_ABBREV)
|
||||
assert(0 && "Unexpected abbrev ordering!");
|
||||
LLVM_UNREACHABLE("Unexpected abbrev ordering!");
|
||||
}
|
||||
|
||||
{ // INST_RET abbrev for FUNCTION_BLOCK.
|
||||
@ -1240,7 +1241,7 @@ static void WriteBlockInfo(const ValueEnumerator &VE, BitstreamWriter &Stream) {
|
||||
Abbv->Add(BitCodeAbbrevOp(bitc::FUNC_CODE_INST_RET));
|
||||
if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID,
|
||||
Abbv) != FUNCTION_INST_RET_VOID_ABBREV)
|
||||
assert(0 && "Unexpected abbrev ordering!");
|
||||
LLVM_UNREACHABLE("Unexpected abbrev ordering!");
|
||||
}
|
||||
{ // INST_RET abbrev for FUNCTION_BLOCK.
|
||||
BitCodeAbbrev *Abbv = new BitCodeAbbrev();
|
||||
@ -1248,14 +1249,14 @@ static void WriteBlockInfo(const ValueEnumerator &VE, BitstreamWriter &Stream) {
|
||||
Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // ValID
|
||||
if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID,
|
||||
Abbv) != FUNCTION_INST_RET_VAL_ABBREV)
|
||||
assert(0 && "Unexpected abbrev ordering!");
|
||||
LLVM_UNREACHABLE("Unexpected abbrev ordering!");
|
||||
}
|
||||
{ // INST_UNREACHABLE abbrev for FUNCTION_BLOCK.
|
||||
BitCodeAbbrev *Abbv = new BitCodeAbbrev();
|
||||
Abbv->Add(BitCodeAbbrevOp(bitc::FUNC_CODE_INST_UNREACHABLE));
|
||||
if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID,
|
||||
Abbv) != FUNCTION_INST_UNREACHABLE_ABBREV)
|
||||
assert(0 && "Unexpected abbrev ordering!");
|
||||
LLVM_UNREACHABLE("Unexpected abbrev ordering!");
|
||||
}
|
||||
|
||||
Stream.ExitBlock();
|
||||
|
@ -237,7 +237,7 @@ bool AsmPrinter::doFinalization(Module &M) {
|
||||
else if (I->hasWeakLinkage())
|
||||
O << TAI->getWeakRefDirective() << Name << '\n';
|
||||
else if (!I->hasLocalLinkage())
|
||||
assert(0 && "Invalid alias linkage");
|
||||
LLVM_UNREACHABLE("Invalid alias linkage");
|
||||
|
||||
printVisibility(Name, I->getVisibility());
|
||||
|
||||
@ -901,7 +901,7 @@ void AsmPrinter::EmitConstantValueOnly(const Constant *CV) {
|
||||
case Instruction::SIToFP:
|
||||
case Instruction::FPToUI:
|
||||
case Instruction::FPToSI:
|
||||
assert(0 && "FIXME: Don't yet support this kind of constant cast expr");
|
||||
LLVM_UNREACHABLE("FIXME: Don't yet support this kind of constant cast expr");
|
||||
break;
|
||||
case Instruction::BitCast:
|
||||
return EmitConstantValueOnly(CE->getOperand(0));
|
||||
@ -967,10 +967,10 @@ void AsmPrinter::EmitConstantValueOnly(const Constant *CV) {
|
||||
O << ')';
|
||||
break;
|
||||
default:
|
||||
assert(0 && "Unsupported operator!");
|
||||
LLVM_UNREACHABLE("Unsupported operator!");
|
||||
}
|
||||
} else {
|
||||
assert(0 && "Unknown constant value!");
|
||||
LLVM_UNREACHABLE("Unknown constant value!");
|
||||
}
|
||||
}
|
||||
|
||||
@ -1209,7 +1209,7 @@ void AsmPrinter::EmitGlobalConstantFP(const ConstantFP *CFP,
|
||||
O << '\n';
|
||||
}
|
||||
return;
|
||||
} else assert(0 && "Floating point constant type not handled");
|
||||
} else LLVM_UNREACHABLE("Floating point constant type not handled");
|
||||
}
|
||||
|
||||
void AsmPrinter::EmitGlobalConstantLargeInt(const ConstantInt *CI,
|
||||
@ -1660,7 +1660,7 @@ void AsmPrinter::printDataDirective(const Type *type, unsigned AddrSpace) {
|
||||
"Target cannot handle 64-bit constant exprs!");
|
||||
O << TAI->getData64bitsDirective(AddrSpace);
|
||||
} else {
|
||||
assert(0 && "Target cannot handle given data directive width!");
|
||||
LLVM_UNREACHABLE("Target cannot handle given data directive width!");
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
@ -16,6 +16,7 @@
|
||||
#include "llvm/CodeGen/AsmPrinter.h"
|
||||
#include "llvm/Target/TargetAsmInfo.h"
|
||||
#include "llvm/Target/TargetData.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include <ostream>
|
||||
using namespace llvm;
|
||||
|
||||
@ -206,7 +207,7 @@ void DIEInteger::EmitValue(Dwarf *D, unsigned Form) const {
|
||||
case dwarf::DW_FORM_data8: Asm->EmitInt64(Integer); break;
|
||||
case dwarf::DW_FORM_udata: Asm->EmitULEB128Bytes(Integer); break;
|
||||
case dwarf::DW_FORM_sdata: Asm->EmitSLEB128Bytes(Integer); break;
|
||||
default: assert(0 && "DIE Value form not supported yet"); break;
|
||||
default: LLVM_UNREACHABLE("DIE Value form not supported yet");
|
||||
}
|
||||
}
|
||||
|
||||
@ -225,7 +226,7 @@ unsigned DIEInteger::SizeOf(const TargetData *TD, unsigned Form) const {
|
||||
case dwarf::DW_FORM_data8: return sizeof(int64_t);
|
||||
case dwarf::DW_FORM_udata: return TargetAsmInfo::getULEB128Size(Integer);
|
||||
case dwarf::DW_FORM_sdata: return TargetAsmInfo::getSLEB128Size(Integer);
|
||||
default: assert(0 && "DIE Value form not supported yet"); break;
|
||||
default: LLVM_UNREACHABLE("DIE Value form not supported yet"); break;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
@ -481,7 +482,7 @@ void DIEBlock::EmitValue(Dwarf *D, unsigned Form) const {
|
||||
case dwarf::DW_FORM_block2: Asm->EmitInt16(Size); break;
|
||||
case dwarf::DW_FORM_block4: Asm->EmitInt32(Size); break;
|
||||
case dwarf::DW_FORM_block: Asm->EmitULEB128Bytes(Size); break;
|
||||
default: assert(0 && "Improper form for block"); break;
|
||||
default: LLVM_UNREACHABLE("Improper form for block"); break;
|
||||
}
|
||||
|
||||
const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev.getData();
|
||||
@ -499,7 +500,7 @@ unsigned DIEBlock::SizeOf(const TargetData *TD, unsigned Form) const {
|
||||
case dwarf::DW_FORM_block2: return Size + sizeof(int16_t);
|
||||
case dwarf::DW_FORM_block4: return Size + sizeof(int32_t);
|
||||
case dwarf::DW_FORM_block: return Size + TargetAsmInfo::getULEB128Size(Size);
|
||||
default: assert(0 && "Improper form for block"); break;
|
||||
default: LLVM_UNREACHABLE("Improper form for block"); break;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
@ -17,6 +17,7 @@
|
||||
#include "llvm/CodeGen/MachineFrameInfo.h"
|
||||
#include "llvm/CodeGen/MachineModuleInfo.h"
|
||||
#include "llvm/Support/Dwarf.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Target/TargetAsmInfo.h"
|
||||
#include "llvm/Target/TargetData.h"
|
||||
#include "llvm/Target/TargetFrameInfo.h"
|
||||
@ -190,7 +191,7 @@ void Dwarf::EmitFrameMoves(const char *BaseLabel, unsigned BaseLabelID,
|
||||
Asm->EmitULEB128Bytes(Offset);
|
||||
Asm->EOL("Offset");
|
||||
} else {
|
||||
assert(0 && "Machine move not supported yet.");
|
||||
LLVM_UNREACHABLE("Machine move not supported yet.");
|
||||
}
|
||||
} else if (Src.isReg() &&
|
||||
Src.getReg() == MachineLocation::VirtualFP) {
|
||||
@ -200,7 +201,7 @@ void Dwarf::EmitFrameMoves(const char *BaseLabel, unsigned BaseLabelID,
|
||||
Asm->EmitULEB128Bytes(RI->getDwarfRegNum(Dst.getReg(), isEH));
|
||||
Asm->EOL("Register");
|
||||
} else {
|
||||
assert(0 && "Machine move not supported yet.");
|
||||
LLVM_UNREACHABLE("Machine move not supported yet.");
|
||||
}
|
||||
} else {
|
||||
unsigned Reg = RI->getDwarfRegNum(Src.getReg(), isEH);
|
||||
|
@ -27,6 +27,7 @@
|
||||
#include "llvm/Target/TargetRegisterInfo.h"
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/ADT/SmallSet.h"
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
@ -461,7 +462,7 @@ static bool MergeCompare(const std::pair<unsigned,MachineBasicBlock*> &p,
|
||||
// _GLIBCXX_DEBUG checks strict weak ordering, which involves comparing
|
||||
// an object with itself.
|
||||
#ifndef _GLIBCXX_DEBUG
|
||||
assert(0 && "Predecessor appears twice");
|
||||
LLVM_UNREACHABLE("Predecessor appears twice");
|
||||
#endif
|
||||
return false;
|
||||
}
|
||||
|
@ -23,6 +23,7 @@
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Target/TargetAsmInfo.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// ELFCodeEmitter Implementation
|
||||
@ -107,7 +108,7 @@ bool ELFCodeEmitter::finishFunction(MachineFunction &MF) {
|
||||
MR.setResultPointer((void*)Addr);
|
||||
MR.setConstantVal(JumpTableSectionIdx);
|
||||
} else {
|
||||
assert(0 && "Unhandled relocation type");
|
||||
LLVM_UNREACHABLE("Unhandled relocation type");
|
||||
}
|
||||
ES->addRelocation(MR);
|
||||
}
|
||||
|
@ -51,6 +51,7 @@
|
||||
#include "llvm/Support/Streams.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
@ -147,7 +148,7 @@ bool ELFWriter::doInitialization(Module &M) {
|
||||
unsigned ELFWriter::getGlobalELFVisibility(const GlobalValue *GV) {
|
||||
switch (GV->getVisibility()) {
|
||||
default:
|
||||
assert(0 && "unknown visibility type");
|
||||
LLVM_UNREACHABLE("unknown visibility type");
|
||||
case GlobalValue::DefaultVisibility:
|
||||
return ELFSym::STV_DEFAULT;
|
||||
case GlobalValue::HiddenVisibility:
|
||||
@ -339,9 +340,9 @@ void ELFWriter::EmitGlobalConstant(const Constant *CV, ELFSection &GblS) {
|
||||
else if (CFP->getType() == Type::FloatTy)
|
||||
GblS.emitWord32(Val);
|
||||
else if (CFP->getType() == Type::X86_FP80Ty) {
|
||||
assert(0 && "X86_FP80Ty global emission not implemented");
|
||||
LLVM_UNREACHABLE("X86_FP80Ty global emission not implemented");
|
||||
} else if (CFP->getType() == Type::PPC_FP128Ty)
|
||||
assert(0 && "PPC_FP128Ty global emission not implemented");
|
||||
LLVM_UNREACHABLE("PPC_FP128Ty global emission not implemented");
|
||||
return;
|
||||
} else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
|
||||
if (Size == 4)
|
||||
@ -349,7 +350,7 @@ void ELFWriter::EmitGlobalConstant(const Constant *CV, ELFSection &GblS) {
|
||||
else if (Size == 8)
|
||||
GblS.emitWord64(CI->getZExtValue());
|
||||
else
|
||||
assert(0 && "LargeInt global emission not implemented");
|
||||
LLVM_UNREACHABLE("LargeInt global emission not implemented");
|
||||
return;
|
||||
} else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
|
||||
const VectorType *PTy = CP->getType();
|
||||
@ -357,7 +358,7 @@ void ELFWriter::EmitGlobalConstant(const Constant *CV, ELFSection &GblS) {
|
||||
EmitGlobalConstant(CP->getOperand(I), GblS);
|
||||
return;
|
||||
}
|
||||
assert(0 && "unknown global constant");
|
||||
LLVM_UNREACHABLE("unknown global constant");
|
||||
}
|
||||
|
||||
|
||||
|
@ -144,7 +144,7 @@ void Printer::getAnalysisUsage(AnalysisUsage &AU) const {
|
||||
|
||||
static const char *DescKind(GC::PointKind Kind) {
|
||||
switch (Kind) {
|
||||
default: assert(0 && "Unknown GC point kind");
|
||||
default: LLVM_UNREACHABLE("Unknown GC point kind");
|
||||
case GC::Loop: return "loop";
|
||||
case GC::Return: return "return";
|
||||
case GC::PreCall: return "pre-call";
|
||||
|
@ -157,7 +157,7 @@ static Value *LowerBSWAP(Value *V, Instruction *IP) {
|
||||
IRBuilder<> Builder(IP->getParent(), IP);
|
||||
|
||||
switch(BitSize) {
|
||||
default: assert(0 && "Unhandled type size of value to byteswap!");
|
||||
default: LLVM_UNREACHABLE("Unhandled type size of value to byteswap!");
|
||||
case 16: {
|
||||
Value *Tmp1 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 8),
|
||||
"bswap.2");
|
||||
|
@ -1102,7 +1102,7 @@ unsigned LiveIntervals::getVNInfoSourceReg(const VNInfo *VNI) const {
|
||||
unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
|
||||
if (tii_->isMoveInstr(*VNI->copy, SrcReg, DstReg, SrcSubReg, DstSubReg))
|
||||
return SrcReg;
|
||||
assert(0 && "Unrecognized copy instruction!");
|
||||
LLVM_UNREACHABLE("Unrecognized copy instruction!");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -19,6 +19,7 @@
|
||||
#include "llvm/Target/TargetAsmInfo.h"
|
||||
#include "llvm/Target/TargetData.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/Mangler.h"
|
||||
#include "llvm/Support/OutputBuffer.h"
|
||||
#include <vector>
|
||||
@ -104,7 +105,7 @@ bool MachOCodeEmitter::finishFunction(MachineFunction &MF) {
|
||||
// FIXME: This should be a set or something that uniques
|
||||
MOW.PendingGlobals.push_back(MR.getGlobalValue());
|
||||
} else {
|
||||
assert(0 && "Unhandled relocation type");
|
||||
LLVM_UNREACHABLE("Unhandled relocation type");
|
||||
}
|
||||
MOS->addRelocation(MR);
|
||||
}
|
||||
|
@ -669,7 +669,7 @@ void MachOWriter::InitMem(const Constant *C, uintptr_t Offset,
|
||||
ptr[6] = val >> 48;
|
||||
ptr[7] = val >> 56;
|
||||
} else {
|
||||
assert(0 && "Not implemented: bit widths > 64");
|
||||
LLVM_UNREACHABLE("Not implemented: bit widths > 64");
|
||||
}
|
||||
break;
|
||||
}
|
||||
@ -733,7 +733,7 @@ void MachOWriter::InitMem(const Constant *C, uintptr_t Offset,
|
||||
PA+SL->getElementOffset(i)));
|
||||
} else {
|
||||
cerr << "Bad Type: " << *PC->getType() << "\n";
|
||||
assert(0 && "Unknown constant type to initialize memory with!");
|
||||
LLVM_UNREACHABLE("Unknown constant type to initialize memory with!");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -749,7 +749,7 @@ MachOSym::MachOSym(const GlobalValue *gv, std::string name, uint8_t sect,
|
||||
|
||||
switch (GV->getLinkage()) {
|
||||
default:
|
||||
assert(0 && "Unexpected linkage type!");
|
||||
LLVM_UNREACHABLE("Unexpected linkage type!");
|
||||
break;
|
||||
case GlobalValue::WeakAnyLinkage:
|
||||
case GlobalValue::WeakODRLinkage:
|
||||
|
@ -23,6 +23,7 @@
|
||||
#include "llvm/Target/TargetInstrDesc.h"
|
||||
#include "llvm/Target/TargetRegisterInfo.h"
|
||||
#include "llvm/Analysis/DebugInfo.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/LeakDetector.h"
|
||||
#include "llvm/Support/MathExtras.h"
|
||||
#include "llvm/Support/Streams.h"
|
||||
@ -156,7 +157,7 @@ bool MachineOperand::isIdenticalTo(const MachineOperand &Other) const {
|
||||
return false;
|
||||
|
||||
switch (getType()) {
|
||||
default: assert(0 && "Unrecognized operand type");
|
||||
default: LLVM_UNREACHABLE("Unrecognized operand type");
|
||||
case MachineOperand::MO_Register:
|
||||
return getReg() == Other.getReg() && isDef() == Other.isDef() &&
|
||||
getSubReg() == Other.getSubReg();
|
||||
@ -274,7 +275,7 @@ void MachineOperand::print(raw_ostream &OS, const TargetMachine *TM) const {
|
||||
OS << '>';
|
||||
break;
|
||||
default:
|
||||
assert(0 && "Unrecognized operand type");
|
||||
LLVM_UNREACHABLE("Unrecognized operand type");
|
||||
}
|
||||
|
||||
if (unsigned TF = getTargetFlags())
|
||||
|
@ -23,6 +23,7 @@
|
||||
#include "llvm/Instructions.h"
|
||||
#include "llvm/Module.h"
|
||||
#include "llvm/Support/Dwarf.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/Streams.h"
|
||||
using namespace llvm;
|
||||
using namespace llvm::dwarf;
|
||||
@ -290,7 +291,7 @@ unsigned MachineModuleInfo::getPersonalityIndex() const {
|
||||
}
|
||||
|
||||
// This should never happen
|
||||
assert(0 && "Personality function should be set!");
|
||||
LLVM_UNREACHABLE("Personality function should be set!");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -34,6 +34,7 @@
|
||||
#include "llvm/Target/TargetRegisterInfo.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
#include <map>
|
||||
using namespace llvm;
|
||||
@ -793,7 +794,7 @@ void SchedulePostRATDList::ReleaseSucc(SUnit *SU, SDep *SuccEdge) {
|
||||
cerr << "*** Scheduling failed! ***\n";
|
||||
SuccSU->dump(this);
|
||||
cerr << " has been released too many times!\n";
|
||||
assert(0);
|
||||
llvm_unreachable();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -15,6 +15,7 @@
|
||||
#include "llvm/CodeGen/PseudoSourceValue.h"
|
||||
#include "llvm/DerivedTypes.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/ManagedStatic.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
#include <map>
|
||||
@ -83,7 +84,7 @@ bool PseudoSourceValue::isConstant(const MachineFrameInfo *) const {
|
||||
this == getConstantPool() ||
|
||||
this == getJumpTable())
|
||||
return true;
|
||||
assert(0 && "Unknown PseudoSourceValue!");
|
||||
LLVM_UNREACHABLE("Unknown PseudoSourceValue!");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -393,7 +393,7 @@ static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG,
|
||||
|
||||
assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
|
||||
switch (Op.getOpcode()) {
|
||||
default: assert(0 && "Unknown code");
|
||||
default: LLVM_UNREACHABLE("Unknown code");
|
||||
case ISD::ConstantFP: {
|
||||
APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
|
||||
V.changeSign();
|
||||
@ -5063,7 +5063,7 @@ SDValue DAGCombiner::visitSTORE(SDNode *N) {
|
||||
if (Value.getOpcode() != ISD::TargetConstantFP) {
|
||||
SDValue Tmp;
|
||||
switch (CFP->getValueType(0).getSimpleVT()) {
|
||||
default: assert(0 && "Unknown FP type");
|
||||
default: LLVM_UNREACHABLE("Unknown FP type");
|
||||
case MVT::f80: // We don't do this for these yet.
|
||||
case MVT::f128:
|
||||
case MVT::ppcf128:
|
||||
@ -6107,7 +6107,7 @@ bool DAGCombiner::FindAliasInfo(SDNode *N,
|
||||
SrcValue = ST->getSrcValue();
|
||||
SrcValueOffset = ST->getSrcValueOffset();
|
||||
} else {
|
||||
assert(0 && "FindAliasInfo expected a memory operand");
|
||||
LLVM_UNREACHABLE("FindAliasInfo expected a memory operand");
|
||||
}
|
||||
|
||||
return false;
|
||||
|
@ -983,7 +983,7 @@ SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
|
||||
return Tmp2;
|
||||
case ISD::BUILD_VECTOR:
|
||||
switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
|
||||
default: assert(0 && "This action is not supported yet!");
|
||||
default: LLVM_UNREACHABLE("This action is not supported yet!");
|
||||
case TargetLowering::Custom:
|
||||
Tmp3 = TLI.LowerOperation(Result, DAG);
|
||||
if (Tmp3.getNode()) {
|
||||
@ -1100,7 +1100,7 @@ SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
|
||||
Tmp4 = Result.getValue(1);
|
||||
|
||||
switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
|
||||
default: assert(0 && "This action is not supported yet!");
|
||||
default: LLVM_UNREACHABLE("This action is not supported yet!");
|
||||
case TargetLowering::Legal:
|
||||
// If this is an unaligned load and the target doesn't support it,
|
||||
// expand it.
|
||||
@ -1270,7 +1270,7 @@ SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
|
||||
Tmp2 = LegalizeOp(Ch);
|
||||
} else {
|
||||
switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
|
||||
default: assert(0 && "This action is not supported yet!");
|
||||
default: LLVM_UNREACHABLE("This action is not supported yet!");
|
||||
case TargetLowering::Custom:
|
||||
isCustom = true;
|
||||
// FALLTHROUGH
|
||||
@ -1363,7 +1363,7 @@ SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
|
||||
|
||||
MVT VT = Tmp3.getValueType();
|
||||
switch (TLI.getOperationAction(ISD::STORE, VT)) {
|
||||
default: assert(0 && "This action is not supported yet!");
|
||||
default: LLVM_UNREACHABLE("This action is not supported yet!");
|
||||
case TargetLowering::Legal:
|
||||
// If this is an unaligned store and the target doesn't support it,
|
||||
// expand it.
|
||||
@ -1463,7 +1463,7 @@ SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
|
||||
ST->getOffset());
|
||||
|
||||
switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
|
||||
default: assert(0 && "This action is not supported yet!");
|
||||
default: LLVM_UNREACHABLE("This action is not supported yet!");
|
||||
case TargetLowering::Legal:
|
||||
// If this is an unaligned store and the target doesn't support it,
|
||||
// expand it.
|
||||
@ -1691,7 +1691,7 @@ void SelectionDAGLegalize::LegalizeSetCCCondCode(MVT VT,
|
||||
MVT OpVT = LHS.getValueType();
|
||||
ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
|
||||
switch (TLI.getCondCodeAction(CCCode, OpVT)) {
|
||||
default: assert(0 && "Unknown condition code action!");
|
||||
default: LLVM_UNREACHABLE("Unknown condition code action!");
|
||||
case TargetLowering::Legal:
|
||||
// Nothing to do.
|
||||
break;
|
||||
@ -1926,7 +1926,7 @@ SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node,
|
||||
RTLIB::Libcall Call_PPCF128) {
|
||||
RTLIB::Libcall LC;
|
||||
switch (Node->getValueType(0).getSimpleVT()) {
|
||||
default: assert(0 && "Unexpected request for libcall!");
|
||||
default: LLVM_UNREACHABLE("Unexpected request for libcall!");
|
||||
case MVT::f32: LC = Call_F32; break;
|
||||
case MVT::f64: LC = Call_F64; break;
|
||||
case MVT::f80: LC = Call_F80; break;
|
||||
@ -1942,7 +1942,7 @@ SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned,
|
||||
RTLIB::Libcall Call_I128) {
|
||||
RTLIB::Libcall LC;
|
||||
switch (Node->getValueType(0).getSimpleVT()) {
|
||||
default: assert(0 && "Unexpected request for libcall!");
|
||||
default: LLVM_UNREACHABLE("Unexpected request for libcall!");
|
||||
case MVT::i16: LC = Call_I16; break;
|
||||
case MVT::i32: LC = Call_I32; break;
|
||||
case MVT::i64: LC = Call_I64; break;
|
||||
@ -2028,7 +2028,7 @@ SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
|
||||
// offset depending on the data type.
|
||||
uint64_t FF;
|
||||
switch (Op0.getValueType().getSimpleVT()) {
|
||||
default: assert(0 && "Unsupported integer type!");
|
||||
default: LLVM_UNREACHABLE("Unsupported integer type!");
|
||||
case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
|
||||
case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
|
||||
case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
|
||||
@ -2192,7 +2192,7 @@ SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
|
||||
SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
|
||||
DebugLoc dl) {
|
||||
switch (Opc) {
|
||||
default: assert(0 && "Cannot expand this yet!");
|
||||
default: LLVM_UNREACHABLE("Cannot expand this yet!");
|
||||
case ISD::CTPOP: {
|
||||
static const uint64_t mask[6] = {
|
||||
0x5555555555555555ULL, 0x3333333333333333ULL,
|
||||
@ -2306,7 +2306,7 @@ void SelectionDAGLegalize::ExpandNode(SDNode *Node,
|
||||
else if (VT.isFloatingPoint())
|
||||
Results.push_back(DAG.getConstantFP(0, VT));
|
||||
else
|
||||
assert(0 && "Unknown value type!");
|
||||
LLVM_UNREACHABLE("Unknown value type!");
|
||||
break;
|
||||
}
|
||||
case ISD::TRAP: {
|
||||
@ -2810,7 +2810,7 @@ void SelectionDAGLegalize::ExpandNode(SDNode *Node,
|
||||
// type in some cases cases.
|
||||
// Also, we can fall back to a division in some cases, but that's a big
|
||||
// performance hit in the general case.
|
||||
assert(0 && "Don't know how to expand this operation yet!");
|
||||
LLVM_UNREACHABLE("Don't know how to expand this operation yet!");
|
||||
}
|
||||
if (isSigned) {
|
||||
Tmp1 = DAG.getConstant(VT.getSizeInBits() - 1, TLI.getShiftAmountTy());
|
||||
@ -3091,7 +3091,7 @@ void SelectionDAGLegalize::PromoteNode(SDNode *Node,
|
||||
break;
|
||||
}
|
||||
if (NewInTy.isInteger())
|
||||
assert(0 && "Cannot promote Legal Integer SETCC yet");
|
||||
LLVM_UNREACHABLE("Cannot promote Legal Integer SETCC yet");
|
||||
else {
|
||||
Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp1);
|
||||
Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp2);
|
||||
|
@ -491,7 +491,7 @@ SDValue DAGTypeLegalizer::PromoteIntRes_TRUNCATE(SDNode *N) {
|
||||
SDValue Res;
|
||||
|
||||
switch (getTypeAction(N->getOperand(0).getValueType())) {
|
||||
default: assert(0 && "Unknown type action!");
|
||||
default: LLVM_UNREACHABLE("Unknown type action!");
|
||||
case Legal:
|
||||
case ExpandInteger:
|
||||
Res = N->getOperand(0);
|
||||
@ -666,7 +666,7 @@ void DAGTypeLegalizer::PromoteSetCCOperands(SDValue &NewLHS,SDValue &NewRHS,
|
||||
// insert sign extends for ALL conditions, but zero extend is cheaper on
|
||||
// many machines (an AND instead of two shifts), so prefer it.
|
||||
switch (CCCode) {
|
||||
default: assert(0 && "Unknown integer comparison!");
|
||||
default: LLVM_UNREACHABLE("Unknown integer comparison!");
|
||||
case ISD::SETEQ:
|
||||
case ISD::SETNE:
|
||||
case ISD::SETUGE:
|
||||
@ -1104,7 +1104,7 @@ ExpandShiftWithKnownAmountBit(SDNode *N, SDValue &Lo, SDValue &Hi) {
|
||||
DAG.getConstant(~HighBitMask, ShTy));
|
||||
|
||||
switch (N->getOpcode()) {
|
||||
default: assert(0 && "Unknown shift");
|
||||
default: LLVM_UNREACHABLE("Unknown shift");
|
||||
case ISD::SHL:
|
||||
Lo = DAG.getConstant(0, NVT); // Low part is zero.
|
||||
Hi = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt); // High part from Lo part.
|
||||
@ -1132,7 +1132,7 @@ ExpandShiftWithKnownAmountBit(SDNode *N, SDValue &Lo, SDValue &Hi) {
|
||||
Amt);
|
||||
unsigned Op1, Op2;
|
||||
switch (N->getOpcode()) {
|
||||
default: assert(0 && "Unknown shift");
|
||||
default: LLVM_UNREACHABLE("Unknown shift");
|
||||
case ISD::SHL: Op1 = ISD::SHL; Op2 = ISD::SRL; break;
|
||||
case ISD::SRL:
|
||||
case ISD::SRA: Op1 = ISD::SRL; Op2 = ISD::SHL; break;
|
||||
@ -1172,7 +1172,7 @@ ExpandShiftWithUnknownAmountBit(SDNode *N, SDValue &Lo, SDValue &Hi) {
|
||||
|
||||
SDValue Lo1, Hi1, Lo2, Hi2;
|
||||
switch (N->getOpcode()) {
|
||||
default: assert(0 && "Unknown shift");
|
||||
default: LLVM_UNREACHABLE("Unknown shift");
|
||||
case ISD::SHL:
|
||||
// ShAmt < NVTBits
|
||||
Lo1 = DAG.getConstant(0, NVT); // Low part is zero.
|
||||
@ -1792,7 +1792,7 @@ void DAGTypeLegalizer::ExpandIntRes_Shift(SDNode *N,
|
||||
}
|
||||
|
||||
if (!ExpandShiftWithUnknownAmountBit(N, Lo, Hi))
|
||||
assert(0 && "Unsupported shift!");
|
||||
LLVM_UNREACHABLE("Unsupported shift!");
|
||||
}
|
||||
|
||||
void DAGTypeLegalizer::ExpandIntRes_SIGN_EXTEND(SDNode *N,
|
||||
@ -2050,7 +2050,7 @@ void DAGTypeLegalizer::IntegerExpandSetCCOperands(SDValue &NewLHS,
|
||||
// FIXME: This generated code sucks.
|
||||
ISD::CondCode LowCC;
|
||||
switch (CCCode) {
|
||||
default: assert(0 && "Unknown integer setcc!");
|
||||
default: LLVM_UNREACHABLE("Unknown integer setcc!");
|
||||
case ISD::SETLT:
|
||||
case ISD::SETULT: LowCC = ISD::SETULT; break;
|
||||
case ISD::SETGT:
|
||||
|
@ -278,7 +278,7 @@ bool DAGTypeLegalizer::ScalarizeVectorOperand(SDNode *N, unsigned OpNo) {
|
||||
cerr << "ScalarizeVectorOperand Op #" << OpNo << ": ";
|
||||
N->dump(&DAG); cerr << "\n";
|
||||
#endif
|
||||
assert(0 && "Do not know how to scalarize this operator's operand!");
|
||||
LLVM_UNREACHABLE("Do not know how to scalarize this operator's operand!");
|
||||
case ISD::BIT_CONVERT:
|
||||
Res = ScalarizeVecOp_BIT_CONVERT(N);
|
||||
break;
|
||||
@ -576,7 +576,7 @@ void DAGTypeLegalizer::SplitVecRes_CONVERT_RNDSAT(SDNode *N, SDValue &Lo,
|
||||
SDValue VLo, VHi;
|
||||
MVT InVT = N->getOperand(0).getValueType();
|
||||
switch (getTypeAction(InVT)) {
|
||||
default: assert(0 && "Unexpected type action!");
|
||||
default: LLVM_UNREACHABLE("Unexpected type action!");
|
||||
case Legal: {
|
||||
MVT InNVT = MVT::getVectorVT(InVT.getVectorElementType(),
|
||||
LoVT.getVectorNumElements());
|
||||
@ -768,7 +768,7 @@ void DAGTypeLegalizer::SplitVecRes_UnaryOp(SDNode *N, SDValue &Lo,
|
||||
// Split the input.
|
||||
MVT InVT = N->getOperand(0).getValueType();
|
||||
switch (getTypeAction(InVT)) {
|
||||
default: assert(0 && "Unexpected type action!");
|
||||
default: LLVM_UNREACHABLE("Unexpected type action!");
|
||||
case Legal: {
|
||||
MVT InNVT = MVT::getVectorVT(InVT.getVectorElementType(),
|
||||
LoVT.getVectorNumElements());
|
||||
|
@ -140,7 +140,7 @@ void ScheduleDAGFast::ReleasePred(SUnit *SU, SDep *PredEdge) {
|
||||
cerr << "*** Scheduling failed! ***\n";
|
||||
PredSU->dump(this);
|
||||
cerr << " has been released too many times!\n";
|
||||
assert(0);
|
||||
llvm_unreachable();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -29,6 +29,7 @@
|
||||
#include "llvm/Target/TargetInstrInfo.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/ADT/PriorityQueue.h"
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
#include <climits>
|
||||
@ -113,7 +114,7 @@ void ScheduleDAGList::ReleaseSucc(SUnit *SU, const SDep &D) {
|
||||
cerr << "*** Scheduling failed! ***\n";
|
||||
SuccSU->dump(this);
|
||||
cerr << " has been released too many times!\n";
|
||||
assert(0);
|
||||
llvm_unreachable();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -25,6 +25,7 @@
|
||||
#include "llvm/Target/TargetInstrInfo.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/ADT/PriorityQueue.h"
|
||||
#include "llvm/ADT/SmallSet.h"
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
@ -202,7 +203,7 @@ void ScheduleDAGRRList::ReleasePred(SUnit *SU, const SDep *PredEdge) {
|
||||
cerr << "*** Scheduling failed! ***\n";
|
||||
PredSU->dump(this);
|
||||
cerr << " has been released too many times!\n";
|
||||
assert(0);
|
||||
llvm_unreachable();
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -829,7 +830,7 @@ void ScheduleDAGRRList::ReleaseSucc(SUnit *SU, const SDep *SuccEdge) {
|
||||
cerr << "*** Scheduling failed! ***\n";
|
||||
SuccSU->dump(this);
|
||||
cerr << " has been released too many times!\n";
|
||||
assert(0);
|
||||
llvm_unreachable();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -25,6 +25,7 @@
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/MathExtras.h"
|
||||
using namespace llvm;
|
||||
|
||||
@ -430,7 +431,7 @@ void ScheduleDAGSDNodes::EmitSubregNode(SDNode *Node,
|
||||
MI->addOperand(MachineOperand::CreateImm(SubIdx));
|
||||
BB->insert(InsertPos, MI);
|
||||
} else
|
||||
assert(0 && "Node is not insert_subreg, extract_subreg, or subreg_to_reg");
|
||||
LLVM_UNREACHABLE("Node is not insert_subreg, extract_subreg, or subreg_to_reg");
|
||||
|
||||
SDValue Op(Node, 0);
|
||||
bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second;
|
||||
@ -551,10 +552,10 @@ void ScheduleDAGSDNodes::EmitNode(SDNode *Node, bool IsClone, bool IsCloned,
|
||||
#ifndef NDEBUG
|
||||
Node->dump(DAG);
|
||||
#endif
|
||||
assert(0 && "This target-independent node should have been selected!");
|
||||
LLVM_UNREACHABLE("This target-independent node should have been selected!");
|
||||
break;
|
||||
case ISD::EntryToken:
|
||||
assert(0 && "EntryToken should have been excluded from the schedule!");
|
||||
LLVM_UNREACHABLE("EntryToken should have been excluded from the schedule!");
|
||||
break;
|
||||
case ISD::TokenFactor: // fall thru
|
||||
break;
|
||||
@ -618,7 +619,7 @@ void ScheduleDAGSDNodes::EmitNode(SDNode *Node, bool IsClone, bool IsCloned,
|
||||
++i; // Skip the ID value.
|
||||
|
||||
switch (Flags & 7) {
|
||||
default: assert(0 && "Bad flags!");
|
||||
default: LLVM_UNREACHABLE("Bad flags!");
|
||||
case 2: // Def of register.
|
||||
for (; NumVals; --NumVals, ++i) {
|
||||
unsigned Reg = cast<RegisterSDNode>(Node->getOperand(i))->getReg();
|
||||
|
@ -31,6 +31,7 @@
|
||||
#include "llvm/Target/TargetInstrInfo.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/ManagedStatic.h"
|
||||
#include "llvm/Support/MathExtras.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
@ -53,7 +54,7 @@ static SDVTList makeVTList(const MVT *VTs, unsigned NumVTs) {
|
||||
|
||||
static const fltSemantics *MVTToAPFloatSemantics(MVT VT) {
|
||||
switch (VT.getSimpleVT()) {
|
||||
default: assert(0 && "Unknown FP format");
|
||||
default: LLVM_UNREACHABLE("Unknown FP format");
|
||||
case MVT::f32: return &APFloat::IEEEsingle;
|
||||
case MVT::f64: return &APFloat::IEEEdouble;
|
||||
case MVT::f80: return &APFloat::x87DoubleExtended;
|
||||
@ -243,7 +244,7 @@ ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
|
||||
/// if the operation does not depend on the sign of the input (setne and seteq).
|
||||
static int isSignedOp(ISD::CondCode Opcode) {
|
||||
switch (Opcode) {
|
||||
default: assert(0 && "Illegal integer setcc operation!");
|
||||
default: LLVM_UNREACHABLE("Illegal integer setcc operation!");
|
||||
case ISD::SETEQ:
|
||||
case ISD::SETNE: return 0;
|
||||
case ISD::SETLT:
|
||||
@ -363,7 +364,7 @@ static void AddNodeIDCustom(FoldingSetNodeID &ID, const SDNode *N) {
|
||||
switch (N->getOpcode()) {
|
||||
case ISD::TargetExternalSymbol:
|
||||
case ISD::ExternalSymbol:
|
||||
assert(0 && "Should only be used on nodes with operands");
|
||||
LLVM_UNREACHABLE("Should only be used on nodes with operands");
|
||||
default: break; // Normal nodes don't need extra info.
|
||||
case ISD::ARG_FLAGS:
|
||||
ID.AddInteger(cast<ARG_FLAGSSDNode>(N)->getArgFlags().getRawBits());
|
||||
@ -626,7 +627,7 @@ bool SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
|
||||
bool Erased = false;
|
||||
switch (N->getOpcode()) {
|
||||
case ISD::EntryToken:
|
||||
assert(0 && "EntryToken should not be in CSEMaps!");
|
||||
LLVM_UNREACHABLE("EntryToken should not be in CSEMaps!");
|
||||
return false;
|
||||
case ISD::HANDLENODE: return false; // noop.
|
||||
case ISD::CONDCODE:
|
||||
@ -668,7 +669,7 @@ bool SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
|
||||
!N->isMachineOpcode() && !doNotCSE(N)) {
|
||||
N->dump(this);
|
||||
cerr << "\n";
|
||||
assert(0 && "Node is not in map!");
|
||||
LLVM_UNREACHABLE("Node is not in map!");
|
||||
}
|
||||
#endif
|
||||
return Erased;
|
||||
@ -1442,7 +1443,7 @@ SDValue SelectionDAG::FoldSetCC(MVT VT, SDValue N1,
|
||||
const APInt &C1 = N1C->getAPIntValue();
|
||||
|
||||
switch (Cond) {
|
||||
default: assert(0 && "Unknown integer setcc!");
|
||||
default: LLVM_UNREACHABLE("Unknown integer setcc!");
|
||||
case ISD::SETEQ: return getConstant(C1 == C2, VT);
|
||||
case ISD::SETNE: return getConstant(C1 != C2, VT);
|
||||
case ISD::SETULT: return getConstant(C1.ult(C2), VT);
|
||||
@ -2371,7 +2372,7 @@ SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL,
|
||||
case ISD::MERGE_VALUES:
|
||||
case ISD::CONCAT_VECTORS:
|
||||
return Operand; // Factor, merge or concat of one node? No need.
|
||||
case ISD::FP_ROUND: assert(0 && "Invalid method to make FP_ROUND node");
|
||||
case ISD::FP_ROUND: LLVM_UNREACHABLE("Invalid method to make FP_ROUND node");
|
||||
case ISD::FP_EXTEND:
|
||||
assert(VT.isFloatingPoint() &&
|
||||
Operand.getValueType().isFloatingPoint() && "Invalid FP cast!");
|
||||
@ -2946,7 +2947,7 @@ SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL, MVT VT,
|
||||
}
|
||||
break;
|
||||
case ISD::VECTOR_SHUFFLE:
|
||||
assert(0 && "should use getVectorShuffle constructor!");
|
||||
LLVM_UNREACHABLE("should use getVectorShuffle constructor!");
|
||||
break;
|
||||
case ISD::BIT_CONVERT:
|
||||
// Fold bit_convert nodes from a type to themselves.
|
||||
@ -4060,7 +4061,7 @@ SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2, MVT VT3, MVT VT4) {
|
||||
|
||||
SDVTList SelectionDAG::getVTList(const MVT *VTs, unsigned NumVTs) {
|
||||
switch (NumVTs) {
|
||||
case 0: assert(0 && "Cannot have nodes without results!");
|
||||
case 0: LLVM_UNREACHABLE("Cannot have nodes without results!");
|
||||
case 1: return getVTList(VTs[0]);
|
||||
case 2: return getVTList(VTs[0], VTs[1]);
|
||||
case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
|
||||
@ -5341,7 +5342,7 @@ std::string SDNode::getOperationName(const SelectionDAG *G) const {
|
||||
|
||||
case ISD::CONVERT_RNDSAT: {
|
||||
switch (cast<CvtRndSatSDNode>(this)->getCvtCode()) {
|
||||
default: assert(0 && "Unknown cvt code!");
|
||||
default: LLVM_UNREACHABLE("Unknown cvt code!");
|
||||
case ISD::CVT_FF: return "cvt_ff";
|
||||
case ISD::CVT_FS: return "cvt_fs";
|
||||
case ISD::CVT_FU: return "cvt_fu";
|
||||
@ -5393,7 +5394,7 @@ std::string SDNode::getOperationName(const SelectionDAG *G) const {
|
||||
|
||||
case ISD::CONDCODE:
|
||||
switch (cast<CondCodeSDNode>(this)->get()) {
|
||||
default: assert(0 && "Unknown setcc condition!");
|
||||
default: LLVM_UNREACHABLE("Unknown setcc condition!");
|
||||
case ISD::SETOEQ: return "setoeq";
|
||||
case ISD::SETOGT: return "setogt";
|
||||
case ISD::SETOGE: return "setoge";
|
||||
|
@ -556,7 +556,7 @@ static SDValue getCopyFromParts(SelectionDAG &DAG, DebugLoc dl,
|
||||
if (PartVT.getSizeInBits() == ValueVT.getSizeInBits())
|
||||
return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val);
|
||||
|
||||
assert(0 && "Unknown mismatch!");
|
||||
LLVM_UNREACHABLE("Unknown mismatch!");
|
||||
return SDValue();
|
||||
}
|
||||
|
||||
@ -592,7 +592,7 @@ static void getCopyToParts(SelectionDAG &DAG, DebugLoc dl, SDValue Val,
|
||||
ValueVT = MVT::getIntegerVT(NumParts * PartBits);
|
||||
Val = DAG.getNode(ExtendKind, dl, ValueVT, Val);
|
||||
} else {
|
||||
assert(0 && "Unknown mismatch!");
|
||||
LLVM_UNREACHABLE("Unknown mismatch!");
|
||||
}
|
||||
} else if (PartBits == ValueVT.getSizeInBits()) {
|
||||
// Different types of the same size.
|
||||
@ -604,7 +604,7 @@ static void getCopyToParts(SelectionDAG &DAG, DebugLoc dl, SDValue Val,
|
||||
ValueVT = MVT::getIntegerVT(NumParts * PartBits);
|
||||
Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val);
|
||||
} else {
|
||||
assert(0 && "Unknown mismatch!");
|
||||
LLVM_UNREACHABLE("Unknown mismatch!");
|
||||
}
|
||||
}
|
||||
|
||||
@ -1073,7 +1073,7 @@ static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) {
|
||||
case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break;
|
||||
case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break;
|
||||
default:
|
||||
assert(0 && "Invalid FCmp predicate opcode!");
|
||||
LLVM_UNREACHABLE("Invalid FCmp predicate opcode!");
|
||||
FOC = FPC = ISD::SETFALSE;
|
||||
break;
|
||||
}
|
||||
@ -1099,7 +1099,7 @@ static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) {
|
||||
case ICmpInst::ICMP_SGT: return ISD::SETGT;
|
||||
case ICmpInst::ICMP_UGT: return ISD::SETUGT;
|
||||
default:
|
||||
assert(0 && "Invalid ICmp predicate opcode!");
|
||||
LLVM_UNREACHABLE("Invalid ICmp predicate opcode!");
|
||||
return ISD::SETNE;
|
||||
}
|
||||
}
|
||||
@ -1131,7 +1131,7 @@ SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond,
|
||||
Condition = getFCmpCondCode(FC->getPredicate());
|
||||
} else {
|
||||
Condition = ISD::SETEQ; // silence warning.
|
||||
assert(0 && "Unknown compare instruction");
|
||||
LLVM_UNREACHABLE("Unknown compare instruction");
|
||||
}
|
||||
|
||||
CaseBlock CB(Condition, BOp->getOperand(0),
|
||||
@ -4263,7 +4263,7 @@ SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
|
||||
|
||||
case Intrinsic::gcread:
|
||||
case Intrinsic::gcwrite:
|
||||
assert(0 && "GC failed to lower gcread/gcwrite intrinsics!");
|
||||
LLVM_UNREACHABLE("GC failed to lower gcread/gcwrite intrinsics!");
|
||||
return 0;
|
||||
|
||||
case Intrinsic::flt_rounds: {
|
||||
|
@ -23,6 +23,7 @@
|
||||
#include "llvm/CodeGen/SelectionDAGNodes.h"
|
||||
#include "llvm/CodeGen/ValueTypes.h"
|
||||
#include "llvm/Support/CallSite.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include <vector>
|
||||
#include <set>
|
||||
@ -535,12 +536,10 @@ private:
|
||||
void visitVACopy(CallInst &I);
|
||||
|
||||
void visitUserOp1(Instruction &I) {
|
||||
assert(0 && "UserOp1 should not exist at instruction selection time!");
|
||||
abort();
|
||||
LLVM_UNREACHABLE("UserOp1 should not exist at instruction selection time!");
|
||||
}
|
||||
void visitUserOp2(Instruction &I) {
|
||||
assert(0 && "UserOp2 should not exist at instruction selection time!");
|
||||
abort();
|
||||
LLVM_UNREACHABLE("UserOp2 should not exist at instruction selection time!");
|
||||
}
|
||||
|
||||
const char *implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op);
|
||||
|
@ -832,7 +832,7 @@ void SelectionDAGISel::SelectAllBasicBlocks(Function &Fn,
|
||||
BI->dump();
|
||||
}
|
||||
if (EnableFastISelAbort)
|
||||
assert(0 && "FastISel didn't handle a PHI in a successor");
|
||||
LLVM_UNREACHABLE("FastISel didn't handle a PHI in a successor");
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -23,6 +23,7 @@
|
||||
#include "llvm/CodeGen/SelectionDAG.h"
|
||||
#include "llvm/ADT/StringExtras.h"
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/MathExtras.h"
|
||||
using namespace llvm;
|
||||
|
||||
@ -1840,7 +1841,7 @@ TargetLowering::SimplifySetCC(MVT VT, SDValue N0, SDValue N1,
|
||||
if (CFP->getValueAPF().isNaN()) {
|
||||
// If an operand is known to be a nan, we can fold it.
|
||||
switch (ISD::getUnorderedFlavor(Cond)) {
|
||||
default: assert(0 && "Unknown flavor!");
|
||||
default: LLVM_UNREACHABLE("Unknown flavor!");
|
||||
case 0: // Known false.
|
||||
return DAG.getConstant(0, VT);
|
||||
case 1: // Known true.
|
||||
@ -2000,7 +2001,7 @@ TargetLowering::SimplifySetCC(MVT VT, SDValue N0, SDValue N1,
|
||||
SDValue Temp;
|
||||
if (N0.getValueType() == MVT::i1 && foldBooleans) {
|
||||
switch (Cond) {
|
||||
default: assert(0 && "Unknown integer setcc!");
|
||||
default: LLVM_UNREACHABLE("Unknown integer setcc!");
|
||||
case ISD::SETEQ: // X == Y -> ~(X^Y)
|
||||
Temp = DAG.getNode(ISD::XOR, dl, MVT::i1, N0, N1);
|
||||
N0 = DAG.getNOT(dl, Temp, MVT::i1);
|
||||
@ -2310,7 +2311,7 @@ unsigned TargetLowering::AsmOperandInfo::getMatchedOperand() const {
|
||||
/// is.
|
||||
static unsigned getConstraintGenerality(TargetLowering::ConstraintType CT) {
|
||||
switch (CT) {
|
||||
default: assert(0 && "Unknown constraint type!");
|
||||
default: LLVM_UNREACHABLE("Unknown constraint type!");
|
||||
case TargetLowering::C_Other:
|
||||
case TargetLowering::C_Unknown:
|
||||
return 0;
|
||||
|
@ -28,6 +28,7 @@
|
||||
#include "llvm/Target/TargetOptions.h"
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/ADT/SmallSet.h"
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
@ -1333,8 +1334,7 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
|
||||
DstSubIdx = CopyMI->getOperand(3).getImm();
|
||||
SrcReg = CopyMI->getOperand(2).getReg();
|
||||
} else if (!tii_->isMoveInstr(*CopyMI, SrcReg, DstReg, SrcSubIdx, DstSubIdx)){
|
||||
assert(0 && "Unrecognized copy instruction!");
|
||||
return false;
|
||||
LLVM_UNREACHABLE("Unrecognized copy instruction!");
|
||||
}
|
||||
|
||||
// If they are already joined we continue.
|
||||
@ -2051,7 +2051,7 @@ bool SimpleRegisterCoalescing::SimpleJoin(LiveInterval &LHS, LiveInterval &RHS){
|
||||
*tri_->getSuperRegisters(LHS.reg))
|
||||
// Imprecise sub-register information. Can't handle it.
|
||||
return false;
|
||||
assert(0 && "No copies from the RHS?");
|
||||
LLVM_UNREACHABLE("No copies from the RHS?");
|
||||
} else {
|
||||
LHSValNo = EliminatedLHSVals[0];
|
||||
}
|
||||
|
@ -10,6 +10,7 @@
|
||||
#define DEBUG_TYPE "virtregrewriter"
|
||||
#include "VirtRegRewriter.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/ADT/DepthFirstIterator.h"
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
@ -999,7 +1000,7 @@ private:
|
||||
// Unfold current MI.
|
||||
SmallVector<MachineInstr*, 4> NewMIs;
|
||||
if (!TII->unfoldMemoryOperand(MF, &MI, VirtReg, false, false, NewMIs))
|
||||
assert(0 && "Unable unfold the load / store folding instruction!");
|
||||
LLVM_UNREACHABLE("Unable unfold the load / store folding instruction!");
|
||||
assert(NewMIs.size() == 1);
|
||||
AssignPhysToVirtReg(NewMIs[0], VirtReg, PhysReg);
|
||||
VRM.transferRestorePts(&MI, NewMIs[0]);
|
||||
@ -1015,7 +1016,7 @@ private:
|
||||
NextMII = next(NextMII);
|
||||
NewMIs.clear();
|
||||
if (!TII->unfoldMemoryOperand(MF, &NextMI, VirtReg, false, false, NewMIs))
|
||||
assert(0 && "Unable unfold the load / store folding instruction!");
|
||||
LLVM_UNREACHABLE("Unable unfold the load / store folding instruction!");
|
||||
assert(NewMIs.size() == 1);
|
||||
AssignPhysToVirtReg(NewMIs[0], VirtReg, PhysReg);
|
||||
VRM.transferRestorePts(&NextMI, NewMIs[0]);
|
||||
@ -1451,7 +1452,7 @@ private:
|
||||
assert(RC && "Unable to determine register class!");
|
||||
int SS = VRM.getEmergencySpillSlot(RC);
|
||||
if (UsedSS.count(SS))
|
||||
assert(0 && "Need to spill more than one physical registers!");
|
||||
LLVM_UNREACHABLE("Need to spill more than one physical registers!");
|
||||
UsedSS.insert(SS);
|
||||
TII->storeRegToStackSlot(MBB, MII, PhysReg, true, SS, RC);
|
||||
MachineInstr *StoreMI = prior(MII);
|
||||
@ -2176,7 +2177,7 @@ private:
|
||||
|
||||
llvm::VirtRegRewriter* llvm::createVirtRegRewriter() {
|
||||
switch (RewriterOpt) {
|
||||
default: assert(0 && "Unreachable!");
|
||||
default: LLVM_UNREACHABLE("Unreachable!");
|
||||
case local:
|
||||
return new LocalRewriter();
|
||||
case trivial:
|
||||
|
@ -421,7 +421,7 @@ void *ExecutionEngine::getPointerToGlobal(const GlobalValue *GV) {
|
||||
const_cast<GlobalVariable *>(dyn_cast<GlobalVariable>(GV)))
|
||||
EmitGlobalVariable(GVar);
|
||||
else
|
||||
assert(0 && "Global hasn't had an address allocated yet!");
|
||||
LLVM_UNREACHABLE("Global hasn't had an address allocated yet!");
|
||||
return state.getGlobalAddressMap(locked)[GV];
|
||||
}
|
||||
|
||||
@ -548,7 +548,7 @@ GenericValue ExecutionEngine::getConstantValue(const Constant *C) {
|
||||
GenericValue GV = getConstantValue(Op0);
|
||||
const Type* DestTy = CE->getType();
|
||||
switch (Op0->getType()->getTypeID()) {
|
||||
default: assert(0 && "Invalid bitcast operand");
|
||||
default: LLVM_UNREACHABLE("Invalid bitcast operand");
|
||||
case Type::IntegerTyID:
|
||||
assert(DestTy->isFloatingPoint() && "invalid bitcast");
|
||||
if (DestTy == Type::FloatTy)
|
||||
@ -590,7 +590,7 @@ GenericValue ExecutionEngine::getConstantValue(const Constant *C) {
|
||||
default: LLVM_UNREACHABLE("Bad add type!");
|
||||
case Type::IntegerTyID:
|
||||
switch (CE->getOpcode()) {
|
||||
default: assert(0 && "Invalid integer opcode");
|
||||
default: LLVM_UNREACHABLE("Invalid integer opcode");
|
||||
case Instruction::Add: GV.IntVal = LHS.IntVal + RHS.IntVal; break;
|
||||
case Instruction::Sub: GV.IntVal = LHS.IntVal - RHS.IntVal; break;
|
||||
case Instruction::Mul: GV.IntVal = LHS.IntVal * RHS.IntVal; break;
|
||||
@ -638,7 +638,7 @@ GenericValue ExecutionEngine::getConstantValue(const Constant *C) {
|
||||
case Type::FP128TyID: {
|
||||
APFloat apfLHS = APFloat(LHS.IntVal);
|
||||
switch (CE->getOpcode()) {
|
||||
default: assert(0 && "Invalid long double opcode");llvm_unreachable();
|
||||
default: LLVM_UNREACHABLE("Invalid long double opcode");llvm_unreachable();
|
||||
case Instruction::FAdd:
|
||||
apfLHS.add(APFloat(RHS.IntVal), APFloat::rmNearestTiesToEven);
|
||||
GV.IntVal = apfLHS.bitcastToAPInt();
|
||||
@ -698,7 +698,7 @@ GenericValue ExecutionEngine::getConstantValue(const Constant *C) {
|
||||
else if (const GlobalVariable* GV = dyn_cast<GlobalVariable>(C))
|
||||
Result = PTOGV(getOrEmitGlobalVariable(const_cast<GlobalVariable*>(GV)));
|
||||
else
|
||||
assert(0 && "Unknown constant pointer type!");
|
||||
LLVM_UNREACHABLE("Unknown constant pointer type!");
|
||||
break;
|
||||
default:
|
||||
std::string msg;
|
||||
@ -881,7 +881,7 @@ void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) {
|
||||
}
|
||||
|
||||
cerr << "Bad Type: " << *Init->getType() << "\n";
|
||||
assert(0 && "Unknown constant type to initialize memory with!");
|
||||
LLVM_UNREACHABLE("Unknown constant type to initialize memory with!");
|
||||
}
|
||||
|
||||
/// EmitGlobals - Emit all of the global variables to memory, storing their
|
||||
|
@ -15,6 +15,7 @@
|
||||
#include "llvm-c/ExecutionEngine.h"
|
||||
#include "llvm/ExecutionEngine/GenericValue.h"
|
||||
#include "llvm/ExecutionEngine/ExecutionEngine.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include <cstring>
|
||||
|
||||
using namespace llvm;
|
||||
@ -45,8 +46,7 @@ LLVMGenericValueRef LLVMCreateGenericValueOfFloat(LLVMTypeRef TyRef, double N) {
|
||||
GenVal->DoubleVal = N;
|
||||
break;
|
||||
default:
|
||||
assert(0 && "LLVMGenericValueToFloat supports only float and double.");
|
||||
break;
|
||||
LLVM_UNREACHABLE("LLVMGenericValueToFloat supports only float and double.");
|
||||
}
|
||||
return wrap(GenVal);
|
||||
}
|
||||
@ -75,7 +75,7 @@ double LLVMGenericValueToFloat(LLVMTypeRef TyRef, LLVMGenericValueRef GenVal) {
|
||||
case Type::DoubleTyID:
|
||||
return unwrap(GenVal)->DoubleVal;
|
||||
default:
|
||||
assert(0 && "LLVMGenericValueToFloat supports only float and double.");
|
||||
LLVM_UNREACHABLE("LLVMGenericValueToFloat supports only float and double.");
|
||||
break;
|
||||
}
|
||||
return 0; // Not reached
|
||||
|
@ -1079,7 +1079,7 @@ GenericValue Interpreter::executeBitCastInst(Value *SrcVal, const Type *DstTy,
|
||||
} else if (SrcTy->isInteger()) {
|
||||
Dest.IntVal = Src.IntVal;
|
||||
} else
|
||||
assert(0 && "Invalid BitCast");
|
||||
LLVM_UNREACHABLE("Invalid BitCast");
|
||||
} else if (DstTy == Type::FloatTy) {
|
||||
if (SrcTy->isInteger())
|
||||
Dest.FloatVal = Src.IntVal.bitsToFloat();
|
||||
@ -1091,7 +1091,7 @@ GenericValue Interpreter::executeBitCastInst(Value *SrcVal, const Type *DstTy,
|
||||
else
|
||||
Dest.DoubleVal = Src.DoubleVal;
|
||||
} else
|
||||
assert(0 && "Invalid Bitcast");
|
||||
LLVM_UNREACHABLE("Invalid Bitcast");
|
||||
|
||||
return Dest;
|
||||
}
|
||||
@ -1345,7 +1345,7 @@ void Interpreter::run() {
|
||||
DOUT << " --> ";
|
||||
const GenericValue &Val = SF.Values[&I];
|
||||
switch (I.getType()->getTypeID()) {
|
||||
default: assert(0 && "Invalid GenericValue Type");
|
||||
default: LLVM_UNREACHABLE("Invalid GenericValue Type");
|
||||
case Type::VoidTyID: DOUT << "void"; break;
|
||||
case Type::FloatTyID: DOUT << "float " << Val.FloatVal; break;
|
||||
case Type::DoubleTyID: DOUT << "double " << Val.DoubleVal; break;
|
||||
|
@ -21,6 +21,7 @@
|
||||
#include "llvm/Support/CallSite.h"
|
||||
#include "llvm/Target/TargetData.h"
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
@ -145,7 +146,9 @@ public:
|
||||
void visitLoadInst(LoadInst &I);
|
||||
void visitStoreInst(StoreInst &I);
|
||||
void visitGetElementPtrInst(GetElementPtrInst &I);
|
||||
void visitPHINode(PHINode &PN) { assert(0 && "PHI nodes already handled!"); }
|
||||
void visitPHINode(PHINode &PN) {
|
||||
LLVM_UNREACHABLE("PHI nodes already handled!");
|
||||
}
|
||||
void visitTruncInst(TruncInst &I);
|
||||
void visitZExtInst(ZExtInst &I);
|
||||
void visitSExtInst(SExtInst &I);
|
||||
@ -174,7 +177,7 @@ public:
|
||||
void visitVAArgInst(VAArgInst &I);
|
||||
void visitInstruction(Instruction &I) {
|
||||
cerr << I;
|
||||
assert(0 && "Instruction not interpretable yet!");
|
||||
LLVM_UNREACHABLE("Instruction not interpretable yet!");
|
||||
}
|
||||
|
||||
GenericValue callExternalFunction(Function *F,
|
||||
|
@ -410,7 +410,7 @@ GenericValue JIT::runFunction(Function *F,
|
||||
if (ArgValues.empty()) {
|
||||
GenericValue rv;
|
||||
switch (RetTy->getTypeID()) {
|
||||
default: assert(0 && "Unknown return type for function call!");
|
||||
default: LLVM_UNREACHABLE("Unknown return type for function call!");
|
||||
case Type::IntegerTyID: {
|
||||
unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
|
||||
if (BitWidth == 1)
|
||||
@ -424,7 +424,7 @@ GenericValue JIT::runFunction(Function *F,
|
||||
else if (BitWidth <= 64)
|
||||
rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());
|
||||
else
|
||||
assert(0 && "Integer types > 64 bits not supported");
|
||||
LLVM_UNREACHABLE("Integer types > 64 bits not supported");
|
||||
return rv;
|
||||
}
|
||||
case Type::VoidTyID:
|
||||
@ -439,7 +439,7 @@ GenericValue JIT::runFunction(Function *F,
|
||||
case Type::X86_FP80TyID:
|
||||
case Type::FP128TyID:
|
||||
case Type::PPC_FP128TyID:
|
||||
assert(0 && "long double not supported yet");
|
||||
LLVM_UNREACHABLE("long double not supported yet");
|
||||
return rv;
|
||||
case Type::PointerTyID:
|
||||
return PTOGV(((void*(*)())(intptr_t)FPtr)());
|
||||
@ -467,7 +467,7 @@ GenericValue JIT::runFunction(Function *F,
|
||||
const Type *ArgTy = FTy->getParamType(i);
|
||||
const GenericValue &AV = ArgValues[i];
|
||||
switch (ArgTy->getTypeID()) {
|
||||
default: assert(0 && "Unknown argument type for function call!");
|
||||
default: LLVM_UNREACHABLE("Unknown argument type for function call!");
|
||||
case Type::IntegerTyID:
|
||||
C = ConstantInt::get(AV.IntVal);
|
||||
break;
|
||||
|
@ -21,6 +21,7 @@
|
||||
#include "llvm/CodeGen/MachineLocation.h"
|
||||
#include "llvm/CodeGen/MachineModuleInfo.h"
|
||||
#include "llvm/ExecutionEngine/JITMemoryManager.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Target/TargetAsmInfo.h"
|
||||
#include "llvm/Target/TargetData.h"
|
||||
#include "llvm/Target/TargetInstrInfo.h"
|
||||
@ -110,7 +111,7 @@ JITDwarfEmitter::EmitFrameMoves(intptr_t BaseLabelPtr,
|
||||
|
||||
JCE->emitULEB128Bytes(Offset);
|
||||
} else {
|
||||
assert(0 && "Machine move no supported yet.");
|
||||
LLVM_UNREACHABLE("Machine move no supported yet.");
|
||||
}
|
||||
} else if (Src.isReg() &&
|
||||
Src.getReg() == MachineLocation::VirtualFP) {
|
||||
@ -118,7 +119,7 @@ JITDwarfEmitter::EmitFrameMoves(intptr_t BaseLabelPtr,
|
||||
JCE->emitByte(dwarf::DW_CFA_def_cfa_register);
|
||||
JCE->emitULEB128Bytes(RI->getDwarfRegNum(Dst.getReg(), true));
|
||||
} else {
|
||||
assert(0 && "Machine move no supported yet.");
|
||||
LLVM_UNREACHABLE("Machine move no supported yet.");
|
||||
}
|
||||
} else {
|
||||
unsigned Reg = RI->getDwarfRegNum(Src.getReg(), true);
|
||||
@ -761,7 +762,7 @@ JITDwarfEmitter::GetFrameMovesSizeInBytes(intptr_t BaseLabelPtr,
|
||||
|
||||
FinalSize += TargetAsmInfo::getULEB128Size(Offset);
|
||||
} else {
|
||||
assert(0 && "Machine move no supported yet.");
|
||||
LLVM_UNREACHABLE("Machine move no supported yet.");
|
||||
}
|
||||
} else if (Src.isReg() &&
|
||||
Src.getReg() == MachineLocation::VirtualFP) {
|
||||
@ -770,7 +771,7 @@ JITDwarfEmitter::GetFrameMovesSizeInBytes(intptr_t BaseLabelPtr,
|
||||
unsigned RegNum = RI->getDwarfRegNum(Dst.getReg(), true);
|
||||
FinalSize += TargetAsmInfo::getULEB128Size(RegNum);
|
||||
} else {
|
||||
assert(0 && "Machine move no supported yet.");
|
||||
LLVM_UNREACHABLE("Machine move no supported yet.");
|
||||
}
|
||||
} else {
|
||||
unsigned Reg = RI->getDwarfRegNum(Src.getReg(), true);
|
||||
|
@ -14,6 +14,7 @@
|
||||
|
||||
#include "llvm/Linker.h"
|
||||
#include "llvm/Module.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/MemoryBuffer.h"
|
||||
#include "llvm/Bitcode/ReaderWriter.h"
|
||||
|
||||
@ -80,7 +81,7 @@ bool Linker::LinkInLibrary(const std::string& Lib, bool& is_native) {
|
||||
std::string Magic;
|
||||
Pathname.getMagicNumber(Magic, 64);
|
||||
switch (sys::IdentifyFileType(Magic.c_str(), 64)) {
|
||||
default: assert(0 && "Bad file type identification");
|
||||
default: LLVM_UNREACHABLE("Bad file type identification");
|
||||
case sys::Unknown_FileType:
|
||||
return warning("Supposed library '" + Lib + "' isn't a library.");
|
||||
|
||||
@ -178,7 +179,7 @@ bool Linker::LinkInFile(const sys::Path &File, bool &is_native) {
|
||||
std::string Magic;
|
||||
File.getMagicNumber(Magic, 64);
|
||||
switch (sys::IdentifyFileType(Magic.c_str(), 64)) {
|
||||
default: assert(0 && "Bad file type identification");
|
||||
default: LLVM_UNREACHABLE("Bad file type identification");
|
||||
case sys::Unknown_FileType:
|
||||
return warning("Ignoring file '" + File.toString() +
|
||||
"' because does not contain bitcode.");
|
||||
|
@ -26,6 +26,7 @@
|
||||
#include "llvm/Instructions.h"
|
||||
#include "llvm/Assembly/Writer.h"
|
||||
#include "llvm/Support/Streams.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/System/Path.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include <sstream>
|
||||
@ -392,7 +393,7 @@ static Value *RemapOperand(const Value *In,
|
||||
Result = CE->getWithOperands(Ops);
|
||||
} else {
|
||||
assert(!isa<GlobalValue>(CPV) && "Unmapped global?");
|
||||
assert(0 && "Unknown type of derived type constant value!");
|
||||
LLVM_UNREACHABLE("Unknown type of derived type constant value!");
|
||||
}
|
||||
} else if (isa<InlineAsm>(In)) {
|
||||
Result = const_cast<Value*>(In);
|
||||
@ -409,7 +410,7 @@ static Value *RemapOperand(const Value *In,
|
||||
PrintMap(ValueMap);
|
||||
|
||||
cerr << "Couldn't remap value: " << (void*)In << " " << *In << "\n";
|
||||
assert(0 && "Couldn't remap value!");
|
||||
LLVM_UNREACHABLE("Couldn't remap value!");
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
@ -899,9 +900,9 @@ static bool LinkGlobalInits(Module *Dest, const Module *Src,
|
||||
// Nothing is required, mapped values will take the new global
|
||||
// automatically.
|
||||
} else if (DGVar->hasAppendingLinkage()) {
|
||||
assert(0 && "Appending linkage unimplemented!");
|
||||
LLVM_UNREACHABLE("Appending linkage unimplemented!");
|
||||
} else {
|
||||
assert(0 && "Unknown linkage!");
|
||||
LLVM_UNREACHABLE("Unknown linkage!");
|
||||
}
|
||||
} else {
|
||||
// Copy the initializer over now...
|
||||
|
@ -14,7 +14,9 @@
|
||||
#include "llvm/MC/MCSection.h"
|
||||
#include "llvm/MC/MCSymbol.h"
|
||||
#include "llvm/MC/MCValue.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
namespace {
|
||||
@ -186,7 +188,7 @@ void MCAsmStreamer::EmitValue(const MCValue &Value, unsigned Size) {
|
||||
// Need target hooks to know how to print this.
|
||||
switch (Size) {
|
||||
default:
|
||||
assert(0 && "Invalid size for machine code value!");
|
||||
LLVM_UNREACHABLE("Invalid size for machine code value!");
|
||||
case 1: OS << ".byte"; break;
|
||||
case 2: OS << ".short"; break;
|
||||
case 4: OS << ".long"; break;
|
||||
@ -207,9 +209,9 @@ void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
|
||||
|
||||
switch (ValueSize) {
|
||||
default:
|
||||
assert(0 && "Invalid size for machine code value!");
|
||||
LLVM_UNREACHABLE("Invalid size for machine code value!");
|
||||
case 8:
|
||||
assert(0 && "Unsupported alignment size!");
|
||||
LLVM_UNREACHABLE("Unsupported alignment size!");
|
||||
case 1: OS << (IsPow2 ? ".p2align" : ".balign"); break;
|
||||
case 2: OS << (IsPow2 ? ".p2alignw" : ".balignw"); break;
|
||||
case 4: OS << (IsPow2 ? ".p2alignl" : ".balignl"); break;
|
||||
|
@ -14,6 +14,7 @@
|
||||
|
||||
#include "llvm/ADT/APFloat.h"
|
||||
#include "llvm/ADT/FoldingSet.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/MathExtras.h"
|
||||
#include <cstring>
|
||||
|
||||
@ -1068,7 +1069,7 @@ APFloat::roundAwayFromZero(roundingMode rounding_mode,
|
||||
|
||||
switch (rounding_mode) {
|
||||
default:
|
||||
assert(0);
|
||||
llvm_unreachable();
|
||||
|
||||
case rmNearestTiesToAway:
|
||||
return lost_fraction == lfExactlyHalf || lost_fraction == lfMoreThanHalf;
|
||||
@ -1207,7 +1208,7 @@ APFloat::addOrSubtractSpecials(const APFloat &rhs, bool subtract)
|
||||
{
|
||||
switch (convolve(category, rhs.category)) {
|
||||
default:
|
||||
assert(0);
|
||||
llvm_unreachable();
|
||||
|
||||
case convolve(fcNaN, fcZero):
|
||||
case convolve(fcNaN, fcNormal):
|
||||
@ -1331,7 +1332,7 @@ APFloat::multiplySpecials(const APFloat &rhs)
|
||||
{
|
||||
switch (convolve(category, rhs.category)) {
|
||||
default:
|
||||
assert(0);
|
||||
llvm_unreachable();
|
||||
|
||||
case convolve(fcNaN, fcZero):
|
||||
case convolve(fcNaN, fcNormal):
|
||||
@ -1373,7 +1374,7 @@ APFloat::divideSpecials(const APFloat &rhs)
|
||||
{
|
||||
switch (convolve(category, rhs.category)) {
|
||||
default:
|
||||
assert(0);
|
||||
llvm_unreachable();
|
||||
|
||||
case convolve(fcNaN, fcZero):
|
||||
case convolve(fcNaN, fcNormal):
|
||||
@ -1415,7 +1416,7 @@ APFloat::modSpecials(const APFloat &rhs)
|
||||
{
|
||||
switch (convolve(category, rhs.category)) {
|
||||
default:
|
||||
assert(0);
|
||||
llvm_unreachable();
|
||||
|
||||
case convolve(fcNaN, fcZero):
|
||||
case convolve(fcNaN, fcNormal):
|
||||
@ -1692,7 +1693,7 @@ APFloat::compare(const APFloat &rhs) const
|
||||
|
||||
switch (convolve(category, rhs.category)) {
|
||||
default:
|
||||
assert(0);
|
||||
llvm_unreachable();
|
||||
|
||||
case convolve(fcNaN, fcZero):
|
||||
case convolve(fcNaN, fcNormal):
|
||||
@ -2929,7 +2930,7 @@ APFloat::initFromAPInt(const APInt& api, bool isIEEE)
|
||||
else if (api.getBitWidth()==128 && !isIEEE)
|
||||
return initFromPPCDoubleDoubleAPInt(api);
|
||||
else
|
||||
assert(0);
|
||||
llvm_unreachable();
|
||||
}
|
||||
|
||||
APFloat::APFloat(const APInt& api, bool isIEEE)
|
||||
|
@ -17,6 +17,7 @@
|
||||
#include "llvm/ADT/FoldingSet.h"
|
||||
#include "llvm/ADT/SmallString.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/MathExtras.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
#include <cmath>
|
||||
@ -1386,7 +1387,7 @@ APInt APInt::sqrt() const {
|
||||
else
|
||||
return x_old + 1;
|
||||
} else
|
||||
assert(0 && "Error in APInt::sqrt computation");
|
||||
LLVM_UNREACHABLE("Error in APInt::sqrt computation");
|
||||
return x_old + 1;
|
||||
}
|
||||
|
||||
@ -2032,7 +2033,7 @@ void APInt::fromString(unsigned numbits, const char *str, unsigned slen,
|
||||
char cdigit = str[i];
|
||||
if (radix == 16) {
|
||||
if (!isxdigit(cdigit))
|
||||
assert(0 && "Invalid hex digit in string");
|
||||
LLVM_UNREACHABLE("Invalid hex digit in string");
|
||||
if (isdigit(cdigit))
|
||||
digit = cdigit - '0';
|
||||
else if (cdigit >= 'a')
|
||||
@ -2040,7 +2041,7 @@ void APInt::fromString(unsigned numbits, const char *str, unsigned slen,
|
||||
else if (cdigit >= 'A')
|
||||
digit = cdigit - 'A' + 10;
|
||||
else
|
||||
assert(0 && "huh? we shouldn't get here");
|
||||
LLVM_UNREACHABLE("huh? we shouldn't get here");
|
||||
} else if (isdigit(cdigit)) {
|
||||
digit = cdigit - '0';
|
||||
assert((radix == 10 ||
|
||||
@ -2048,7 +2049,7 @@ void APInt::fromString(unsigned numbits, const char *str, unsigned slen,
|
||||
(radix == 2 && (digit == 0 || digit == 1))) &&
|
||||
"Invalid digit in string for given radix");
|
||||
} else {
|
||||
assert(0 && "Invalid character in digit string");
|
||||
LLVM_UNREACHABLE("Invalid character in digit string");
|
||||
}
|
||||
|
||||
// Shift or multiply the value by the radix
|
||||
|
@ -693,7 +693,7 @@ void cl::ParseCommandLineOptions(int argc, char **argv,
|
||||
ValNo++;
|
||||
break;
|
||||
default:
|
||||
assert(0 && "Internal error, unexpected NumOccurrences flag in "
|
||||
LLVM_UNREACHABLE("Internal error, unexpected NumOccurrences flag in "
|
||||
"positional argument processing!");
|
||||
}
|
||||
}
|
||||
|
@ -12,6 +12,7 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/Support/Dwarf.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
|
||||
#include <cassert>
|
||||
|
||||
@ -83,7 +84,7 @@ const char *TagString(unsigned Tag) {
|
||||
case DW_TAG_lo_user: return "DW_TAG_lo_user";
|
||||
case DW_TAG_hi_user: return "DW_TAG_hi_user";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf Tag");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf Tag");
|
||||
return "";
|
||||
}
|
||||
|
||||
@ -94,7 +95,7 @@ const char *ChildrenString(unsigned Children) {
|
||||
case DW_CHILDREN_no: return "CHILDREN_no";
|
||||
case DW_CHILDREN_yes: return "CHILDREN_yes";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf ChildrenFlag");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf ChildrenFlag");
|
||||
return "";
|
||||
}
|
||||
|
||||
@ -205,7 +206,7 @@ const char *AttributeString(unsigned Attribute) {
|
||||
case DW_AT_APPLE_major_runtime_vers: return "DW_AT_APPLE_major_runtime_vers";
|
||||
case DW_AT_APPLE_runtime_class: return "DW_AT_APPLE_runtime_class";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf Attribute");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf Attribute");
|
||||
return "";
|
||||
}
|
||||
|
||||
@ -235,7 +236,7 @@ const char *FormEncodingString(unsigned Encoding) {
|
||||
case DW_FORM_ref_udata: return "FORM_ref_udata";
|
||||
case DW_FORM_indirect: return "FORM_indirect";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf Form Encoding");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf Form Encoding");
|
||||
return "";
|
||||
}
|
||||
|
||||
@ -310,7 +311,7 @@ const char *OperationEncodingString(unsigned Encoding) {
|
||||
case DW_OP_lo_user: return "OP_lo_user";
|
||||
case DW_OP_hi_user: return "OP_hi_user";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf Operation Encoding");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf Operation Encoding");
|
||||
return "";
|
||||
}
|
||||
|
||||
@ -336,7 +337,7 @@ const char *AttributeEncodingString(unsigned Encoding) {
|
||||
case DW_ATE_lo_user: return "ATE_lo_user";
|
||||
case DW_ATE_hi_user: return "ATE_hi_user";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf Attribute Encoding");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf Attribute Encoding");
|
||||
return "";
|
||||
}
|
||||
|
||||
@ -350,7 +351,7 @@ const char *DecimalSignString(unsigned Sign) {
|
||||
case DW_DS_leading_separate: return "DS_leading_separate";
|
||||
case DW_DS_trailing_separate: return "DS_trailing_separate";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf Decimal Sign Attribute");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf Decimal Sign Attribute");
|
||||
return "";
|
||||
}
|
||||
|
||||
@ -364,7 +365,7 @@ const char *EndianityString(unsigned Endian) {
|
||||
case DW_END_lo_user: return "END_lo_user";
|
||||
case DW_END_hi_user: return "END_hi_user";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf Endianity");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf Endianity");
|
||||
return "";
|
||||
}
|
||||
|
||||
@ -377,7 +378,7 @@ const char *AccessibilityString(unsigned Access) {
|
||||
case DW_ACCESS_protected: return "ACCESS_protected";
|
||||
case DW_ACCESS_private: return "ACCESS_private";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf Accessibility");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf Accessibility");
|
||||
return "";
|
||||
}
|
||||
|
||||
@ -389,7 +390,7 @@ const char *VisibilityString(unsigned Visibility) {
|
||||
case DW_VIS_exported: return "VIS_exported";
|
||||
case DW_VIS_qualified: return "VIS_qualified";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf Visibility");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf Visibility");
|
||||
return "";
|
||||
}
|
||||
|
||||
@ -401,7 +402,7 @@ const char *VirtualityString(unsigned Virtuality) {
|
||||
case DW_VIRTUALITY_virtual: return "VIRTUALITY_virtual";
|
||||
case DW_VIRTUALITY_pure_virtual: return "VIRTUALITY_pure_virtual";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf Virtuality");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf Virtuality");
|
||||
return "";
|
||||
}
|
||||
|
||||
@ -431,7 +432,7 @@ const char *LanguageString(unsigned Language) {
|
||||
case DW_LANG_lo_user: return "LANG_lo_user";
|
||||
case DW_LANG_hi_user: return "LANG_hi_user";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf Language");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf Language");
|
||||
return "";
|
||||
}
|
||||
|
||||
@ -444,7 +445,7 @@ const char *CaseString(unsigned Case) {
|
||||
case DW_ID_down_case: return "ID_down_case";
|
||||
case DW_ID_case_insensitive: return "ID_case_insensitive";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf Identifier Case");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf Identifier Case");
|
||||
return "";
|
||||
}
|
||||
|
||||
@ -458,7 +459,7 @@ const char *ConventionString(unsigned Convention) {
|
||||
case DW_CC_lo_user: return "CC_lo_user";
|
||||
case DW_CC_hi_user: return "CC_hi_user";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf Calling Convention");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf Calling Convention");
|
||||
return "";
|
||||
}
|
||||
|
||||
@ -471,7 +472,7 @@ const char *InlineCodeString(unsigned Code) {
|
||||
case DW_INL_declared_not_inlined: return "INL_declared_not_inlined";
|
||||
case DW_INL_declared_inlined: return "INL_declared_inlined";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf Inline Code");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf Inline Code");
|
||||
return "";
|
||||
}
|
||||
|
||||
@ -482,7 +483,7 @@ const char *ArrayOrderString(unsigned Order) {
|
||||
case DW_ORD_row_major: return "ORD_row_major";
|
||||
case DW_ORD_col_major: return "ORD_col_major";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf Array Order");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf Array Order");
|
||||
return "";
|
||||
}
|
||||
|
||||
@ -493,7 +494,7 @@ const char *DiscriminantString(unsigned Discriminant) {
|
||||
case DW_DSC_label: return "DSC_label";
|
||||
case DW_DSC_range: return "DSC_range";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf Discriminant Descriptor");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf Discriminant Descriptor");
|
||||
return "";
|
||||
}
|
||||
|
||||
@ -514,7 +515,7 @@ const char *LNStandardString(unsigned Standard) {
|
||||
case DW_LNS_set_epilogue_begin: return "LNS_set_epilogue_begin";
|
||||
case DW_LNS_set_isa: return "LNS_set_isa";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf Line Number Standard");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf Line Number Standard");
|
||||
return "";
|
||||
}
|
||||
|
||||
@ -529,7 +530,7 @@ const char *LNExtendedString(unsigned Encoding) {
|
||||
case DW_LNE_lo_user: return "LNE_lo_user";
|
||||
case DW_LNE_hi_user: return "LNE_hi_user";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf Line Number Extended Opcode Encoding");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf Line Number Extended Opcode Encoding");
|
||||
return "";
|
||||
}
|
||||
|
||||
@ -544,7 +545,7 @@ const char *MacinfoString(unsigned Encoding) {
|
||||
case DW_MACINFO_end_file: return "MACINFO_end_file";
|
||||
case DW_MACINFO_vendor_ext: return "MACINFO_vendor_ext";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf Macinfo Type Encodings");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf Macinfo Type Encodings");
|
||||
return "";
|
||||
}
|
||||
|
||||
@ -580,7 +581,7 @@ const char *CallFrameString(unsigned Encoding) {
|
||||
case DW_CFA_lo_user: return "CFA_lo_user";
|
||||
case DW_CFA_hi_user: return "CFA_hi_user";
|
||||
}
|
||||
assert(0 && "Unknown Dwarf Call Frame Instruction Encodings");
|
||||
LLVM_UNREACHABLE("Unknown Dwarf Call Frame Instruction Encodings");
|
||||
return "";
|
||||
}
|
||||
|
||||
|
@ -44,7 +44,9 @@ void llvm_report_error(const std::string &reason) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
void llvm_unreachable(void) {
|
||||
void llvm_unreachable(const char *msg) {
|
||||
if (msg)
|
||||
errs() << msg << "\n";
|
||||
abort();
|
||||
}
|
||||
}
|
||||
|
@ -15,6 +15,7 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/ADT/FoldingSet.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/MathExtras.h"
|
||||
#include <cassert>
|
||||
#include <cstring>
|
||||
@ -50,7 +51,7 @@ void FoldingSetNodeID::AddInteger(unsigned long I) {
|
||||
else if (sizeof(long) == sizeof(long long)) {
|
||||
AddInteger((unsigned long long)I);
|
||||
} else {
|
||||
assert(0 && "unexpected sizeof(long)");
|
||||
LLVM_UNREACHABLE("unexpected sizeof(long)");
|
||||
}
|
||||
}
|
||||
void FoldingSetNodeID::AddInteger(long long I) {
|
||||
|
@ -15,6 +15,7 @@
|
||||
#ifndef TARGET_ARM_H
|
||||
#define TARGET_ARM_H
|
||||
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include <cassert>
|
||||
|
||||
@ -51,7 +52,7 @@ namespace ARMCC {
|
||||
|
||||
inline static CondCodes getOppositeCondition(CondCodes CC){
|
||||
switch (CC) {
|
||||
default: assert(0 && "Unknown condition code");
|
||||
default: LLVM_UNREACHABLE("Unknown condition code");
|
||||
case EQ: return NE;
|
||||
case NE: return EQ;
|
||||
case HS: return LO;
|
||||
@ -72,7 +73,7 @@ namespace ARMCC {
|
||||
|
||||
inline static const char *ARMCondCodeToString(ARMCC::CondCodes CC) {
|
||||
switch (CC) {
|
||||
default: assert(0 && "Unknown condition code");
|
||||
default: LLVM_UNREACHABLE("Unknown condition code");
|
||||
case ARMCC::EQ: return "eq";
|
||||
case ARMCC::NE: return "ne";
|
||||
case ARMCC::HS: return "hs";
|
||||
|
@ -15,6 +15,7 @@
|
||||
#define LLVM_TARGET_ARM_ARMADDRESSINGMODES_H
|
||||
|
||||
#include "llvm/CodeGen/SelectionDAGNodes.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/MathExtras.h"
|
||||
#include <cassert>
|
||||
|
||||
@ -37,7 +38,7 @@ namespace ARM_AM {
|
||||
|
||||
static inline const char *getShiftOpcStr(ShiftOpc Op) {
|
||||
switch (Op) {
|
||||
default: assert(0 && "Unknown shift opc!");
|
||||
default: LLVM_UNREACHABLE("Unknown shift opc!");
|
||||
case ARM_AM::asr: return "asr";
|
||||
case ARM_AM::lsl: return "lsl";
|
||||
case ARM_AM::lsr: return "lsr";
|
||||
@ -70,7 +71,7 @@ namespace ARM_AM {
|
||||
|
||||
static inline const char *getAMSubModeStr(AMSubMode Mode) {
|
||||
switch (Mode) {
|
||||
default: assert(0 && "Unknown addressing sub-mode!");
|
||||
default: LLVM_UNREACHABLE("Unknown addressing sub-mode!");
|
||||
case ARM_AM::ia: return "ia";
|
||||
case ARM_AM::ib: return "ib";
|
||||
case ARM_AM::da: return "da";
|
||||
@ -80,7 +81,7 @@ namespace ARM_AM {
|
||||
|
||||
static inline const char *getAMSubModeAltStr(AMSubMode Mode, bool isLD) {
|
||||
switch (Mode) {
|
||||
default: assert(0 && "Unknown addressing sub-mode!");
|
||||
default: LLVM_UNREACHABLE("Unknown addressing sub-mode!");
|
||||
case ARM_AM::ia: return isLD ? "fd" : "ea";
|
||||
case ARM_AM::ib: return isLD ? "ed" : "fa";
|
||||
case ARM_AM::da: return isLD ? "fa" : "ed";
|
||||
|
@ -23,6 +23,7 @@
|
||||
#include "llvm/CodeGen/MachineJumpTableInfo.h"
|
||||
#include "llvm/Target/TargetAsmInfo.h"
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
using namespace llvm;
|
||||
|
||||
static cl::opt<bool>
|
||||
@ -433,8 +434,7 @@ unsigned ARMBaseInstrInfo::GetInstSizeInBytes(const MachineInstr *MI) const {
|
||||
return 0;
|
||||
switch (MI->getOpcode()) {
|
||||
default:
|
||||
assert(0 && "Unknown or unset size field for instr!");
|
||||
break;
|
||||
LLVM_UNREACHABLE("Unknown or unset size field for instr!");
|
||||
case TargetInstrInfo::IMPLICIT_DEF:
|
||||
case TargetInstrInfo::DECLARE:
|
||||
case TargetInstrInfo::DBG_LABEL:
|
||||
|
@ -707,12 +707,12 @@ unsigned ARMBaseRegisterInfo::getFrameRegister(MachineFunction &MF) const {
|
||||
}
|
||||
|
||||
unsigned ARMBaseRegisterInfo::getEHExceptionRegister() const {
|
||||
assert(0 && "What is the exception register");
|
||||
LLVM_UNREACHABLE("What is the exception register");
|
||||
return 0;
|
||||
}
|
||||
|
||||
unsigned ARMBaseRegisterInfo::getEHHandlerRegister() const {
|
||||
assert(0 && "What is the exception handler register");
|
||||
LLVM_UNREACHABLE("What is the exception handler register");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -24,6 +24,7 @@
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
@ -448,7 +449,7 @@ void ARMConstantIslands::InitialFunctionScan(MachineFunction &Fn,
|
||||
Bits = 8; // Taking the address of a CP entry.
|
||||
break;
|
||||
}
|
||||
assert(0 && "Unknown addressing mode for CP reference!");
|
||||
LLVM_UNREACHABLE("Unknown addressing mode for CP reference!");
|
||||
case ARMII::AddrMode1: // AM1: 8 bits << 2
|
||||
Bits = 8;
|
||||
Scale = 4; // Taking the address of a CP entry.
|
||||
|
@ -470,7 +470,7 @@ unsigned ARMTargetLowering::getFunctionAlignment(const Function *F) const {
|
||||
/// IntCCToARMCC - Convert a DAG integer condition code to an ARM CC
|
||||
static ARMCC::CondCodes IntCCToARMCC(ISD::CondCode CC) {
|
||||
switch (CC) {
|
||||
default: assert(0 && "Unknown condition code!");
|
||||
default: LLVM_UNREACHABLE("Unknown condition code!");
|
||||
case ISD::SETNE: return ARMCC::NE;
|
||||
case ISD::SETEQ: return ARMCC::EQ;
|
||||
case ISD::SETGT: return ARMCC::GT;
|
||||
@ -492,7 +492,7 @@ static bool FPCCToARMCC(ISD::CondCode CC, ARMCC::CondCodes &CondCode,
|
||||
bool Invert = false;
|
||||
CondCode2 = ARMCC::AL;
|
||||
switch (CC) {
|
||||
default: assert(0 && "Unknown FP condition!");
|
||||
default: LLVM_UNREACHABLE("Unknown FP condition!");
|
||||
case ISD::SETEQ:
|
||||
case ISD::SETOEQ: CondCode = ARMCC::EQ; break;
|
||||
case ISD::SETGT:
|
||||
@ -661,7 +661,7 @@ CCAssignFn *ARMTargetLowering::CCAssignFnForNode(unsigned CC,
|
||||
bool Return) const {
|
||||
switch (CC) {
|
||||
default:
|
||||
assert(0 && "Unsupported calling convention");
|
||||
LLVM_UNREACHABLE("Unsupported calling convention");
|
||||
case CallingConv::C:
|
||||
case CallingConv::Fast:
|
||||
// Use target triple & subtarget features to do actual dispatch.
|
||||
@ -745,7 +745,7 @@ LowerCallResult(SDValue Chain, SDValue InFlag, CallSDNode *TheCall,
|
||||
}
|
||||
|
||||
switch (VA.getLocInfo()) {
|
||||
default: assert(0 && "Unknown loc info!");
|
||||
default: LLVM_UNREACHABLE("Unknown loc info!");
|
||||
case CCValAssign::Full: break;
|
||||
case CCValAssign::BCvt:
|
||||
Val = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getValVT(), Val);
|
||||
@ -858,7 +858,7 @@ SDValue ARMTargetLowering::LowerCALL(SDValue Op, SelectionDAG &DAG) {
|
||||
|
||||
// Promote the value if needed.
|
||||
switch (VA.getLocInfo()) {
|
||||
default: assert(0 && "Unknown loc info!");
|
||||
default: LLVM_UNREACHABLE("Unknown loc info!");
|
||||
case CCValAssign::Full: break;
|
||||
case CCValAssign::SExt:
|
||||
Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
|
||||
@ -1060,7 +1060,7 @@ SDValue ARMTargetLowering::LowerRET(SDValue Op, SelectionDAG &DAG) {
|
||||
SDValue Arg = Op.getOperand(realRVLocIdx*2+1);
|
||||
|
||||
switch (VA.getLocInfo()) {
|
||||
default: assert(0 && "Unknown loc info!");
|
||||
default: LLVM_UNREACHABLE("Unknown loc info!");
|
||||
case CCValAssign::Full: break;
|
||||
case CCValAssign::BCvt:
|
||||
Arg = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), Arg);
|
||||
@ -1442,7 +1442,7 @@ ARMTargetLowering::LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG) {
|
||||
// to 32 bits. Insert an assert[sz]ext to capture this, then
|
||||
// truncate to the right size.
|
||||
switch (VA.getLocInfo()) {
|
||||
default: assert(0 && "Unknown loc info!");
|
||||
default: LLVM_UNREACHABLE("Unknown loc info!");
|
||||
case CCValAssign::Full: break;
|
||||
case CCValAssign::BCvt:
|
||||
ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getValVT(), ArgValue);
|
||||
@ -2006,7 +2006,7 @@ static SDValue LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
|
||||
|
||||
if (Op.getOperand(1).getValueType().isFloatingPoint()) {
|
||||
switch (SetCCOpcode) {
|
||||
default: assert(0 && "Illegal FP comparison"); break;
|
||||
default: LLVM_UNREACHABLE("Illegal FP comparison"); break;
|
||||
case ISD::SETUNE:
|
||||
case ISD::SETNE: Invert = true; // Fallthrough
|
||||
case ISD::SETOEQ:
|
||||
@ -2045,7 +2045,7 @@ static SDValue LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
|
||||
} else {
|
||||
// Integer comparisons.
|
||||
switch (SetCCOpcode) {
|
||||
default: assert(0 && "Illegal integer comparison"); break;
|
||||
default: LLVM_UNREACHABLE("Illegal integer comparison"); break;
|
||||
case ISD::SETNE: Invert = true;
|
||||
case ISD::SETEQ: Opc = ARMISD::VCEQ; break;
|
||||
case ISD::SETLT: Swap = true;
|
||||
@ -2149,7 +2149,7 @@ static SDValue isVMOVSplat(uint64_t SplatBits, uint64_t SplatUndef,
|
||||
}
|
||||
|
||||
default:
|
||||
assert(0 && "unexpected size for isVMOVSplat");
|
||||
LLVM_UNREACHABLE("unexpected size for isVMOVSplat");
|
||||
break;
|
||||
}
|
||||
|
||||
@ -2191,7 +2191,7 @@ static SDValue BuildSplat(SDValue Val, MVT VT, SelectionDAG &DAG, DebugLoc dl) {
|
||||
case 16: CanonicalVT = MVT::v4i16; break;
|
||||
case 32: CanonicalVT = MVT::v2i32; break;
|
||||
case 64: CanonicalVT = MVT::v1i64; break;
|
||||
default: assert(0 && "unexpected splat element type"); break;
|
||||
default: LLVM_UNREACHABLE("unexpected splat element type"); break;
|
||||
}
|
||||
} else {
|
||||
assert(VT.is128BitVector() && "unknown splat vector size");
|
||||
@ -2200,7 +2200,7 @@ static SDValue BuildSplat(SDValue Val, MVT VT, SelectionDAG &DAG, DebugLoc dl) {
|
||||
case 16: CanonicalVT = MVT::v8i16; break;
|
||||
case 32: CanonicalVT = MVT::v4i32; break;
|
||||
case 64: CanonicalVT = MVT::v2i64; break;
|
||||
default: assert(0 && "unexpected splat element type"); break;
|
||||
default: LLVM_UNREACHABLE("unexpected splat element type"); break;
|
||||
}
|
||||
}
|
||||
|
||||
@ -2303,7 +2303,7 @@ void ARMTargetLowering::ReplaceNodeResults(SDNode *N,
|
||||
SelectionDAG &DAG) {
|
||||
switch (N->getOpcode()) {
|
||||
default:
|
||||
assert(0 && "Don't know how to custom expand this!");
|
||||
LLVM_UNREACHABLE("Don't know how to custom expand this!");
|
||||
return;
|
||||
case ISD::BIT_CONVERT:
|
||||
Results.push_back(ExpandBIT_CONVERT(N, DAG));
|
||||
@ -2628,7 +2628,7 @@ static SDValue PerformIntrinsicCombine(SDNode *N, SelectionDAG &DAG) {
|
||||
LLVM_UNREACHABLE("invalid shift count for narrowing vector shift intrinsic");
|
||||
|
||||
default:
|
||||
assert(0 && "unhandled vector shift");
|
||||
LLVM_UNREACHABLE("unhandled vector shift");
|
||||
}
|
||||
|
||||
switch (IntNo) {
|
||||
@ -2720,7 +2720,7 @@ static SDValue PerformShiftCombine(SDNode *N, SelectionDAG &DAG,
|
||||
int64_t Cnt;
|
||||
|
||||
switch (N->getOpcode()) {
|
||||
default: assert(0 && "unexpected shift opcode");
|
||||
default: LLVM_UNREACHABLE("unexpected shift opcode");
|
||||
|
||||
case ISD::SHL:
|
||||
if (isVShiftLImm(N->getOperand(1), VT, false, Cnt))
|
||||
@ -2763,7 +2763,7 @@ static SDValue PerformExtendCombine(SDNode *N, SelectionDAG &DAG,
|
||||
|
||||
unsigned Opc = 0;
|
||||
switch (N->getOpcode()) {
|
||||
default: assert(0 && "unexpected opcode");
|
||||
default: LLVM_UNREACHABLE("unexpected opcode");
|
||||
case ISD::SIGN_EXTEND:
|
||||
Opc = ARMISD::VGETLANEs;
|
||||
break;
|
||||
|
@ -338,7 +338,7 @@ SDNode *AlphaDAGToDAGISel::Select(SDValue Op) {
|
||||
bool rev = false;
|
||||
bool inv = false;
|
||||
switch(CC) {
|
||||
default: DEBUG(N->dump(CurDAG)); assert(0 && "Unknown FP comparison!");
|
||||
default: DEBUG(N->dump(CurDAG)); LLVM_UNREACHABLE("Unknown FP comparison!");
|
||||
case ISD::SETEQ: case ISD::SETOEQ: case ISD::SETUEQ:
|
||||
Opc = Alpha::CMPTEQ; break;
|
||||
case ISD::SETLT: case ISD::SETOLT: case ISD::SETULT:
|
||||
@ -472,7 +472,7 @@ void AlphaDAGToDAGISel::SelectCALL(SDValue Op) {
|
||||
} else if (TypeOperands[i] == MVT::f64) {
|
||||
Opc = Alpha::STT;
|
||||
} else
|
||||
assert(0 && "Unknown operand");
|
||||
LLVM_UNREACHABLE("Unknown operand");
|
||||
|
||||
SDValue Ops[] = { CallOperands[i], getI64Imm((i - 6) * 8),
|
||||
CurDAG->getCopyFromReg(Chain, dl, Alpha::R30, MVT::i64),
|
||||
@ -489,7 +489,7 @@ void AlphaDAGToDAGISel::SelectCALL(SDValue Op) {
|
||||
CallOperands[i], InFlag);
|
||||
InFlag = Chain.getValue(1);
|
||||
} else
|
||||
assert(0 && "Unknown operand");
|
||||
LLVM_UNREACHABLE("Unknown operand");
|
||||
}
|
||||
|
||||
// Finally, once everything is in registers to pass to the call, emit the
|
||||
@ -512,7 +512,7 @@ void AlphaDAGToDAGISel::SelectCALL(SDValue Op) {
|
||||
std::vector<SDValue> CallResults;
|
||||
|
||||
switch (N->getValueType(0).getSimpleVT()) {
|
||||
default: assert(0 && "Unexpected ret value!");
|
||||
default: LLVM_UNREACHABLE("Unexpected ret value!");
|
||||
case MVT::Other: break;
|
||||
case MVT::i64:
|
||||
Chain = CurDAG->getCopyFromReg(Chain, dl,
|
||||
|
@ -380,7 +380,7 @@ AlphaTargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
|
||||
for (unsigned i = 0, e = Args.size(); i != e; ++i)
|
||||
{
|
||||
switch (getValueType(Args[i].Ty).getSimpleVT()) {
|
||||
default: assert(0 && "Unexpected ValueType for argument!");
|
||||
default: LLVM_UNREACHABLE("Unexpected ValueType for argument!");
|
||||
case MVT::i1:
|
||||
case MVT::i8:
|
||||
case MVT::i16:
|
||||
@ -476,7 +476,7 @@ void AlphaTargetLowering::LowerVAARG(SDNode *N, SDValue &Chain,
|
||||
SDValue AlphaTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
|
||||
DebugLoc dl = Op.getDebugLoc();
|
||||
switch (Op.getOpcode()) {
|
||||
default: assert(0 && "Wasn't expecting to be able to lower this!");
|
||||
default: LLVM_UNREACHABLE("Wasn't expecting to be able to lower this!");
|
||||
case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG,
|
||||
VarArgsBase,
|
||||
VarArgsOffset);
|
||||
@ -527,7 +527,7 @@ SDValue AlphaTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
|
||||
return Lo;
|
||||
}
|
||||
case ISD::GlobalTLSAddress:
|
||||
assert(0 && "TLS not implemented for Alpha.");
|
||||
LLVM_UNREACHABLE("TLS not implemented for Alpha.");
|
||||
case ISD::GlobalAddress: {
|
||||
GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op);
|
||||
GlobalValue *GV = GSDN->getGlobal();
|
||||
|
@ -332,7 +332,7 @@ static unsigned AlphaRevCondCode(unsigned Opcode) {
|
||||
case Alpha::FBLE: return Alpha::FBGT;
|
||||
case Alpha::FBLT: return Alpha::FBGE;
|
||||
default:
|
||||
assert(0 && "Unknown opcode");
|
||||
LLVM_UNREACHABLE("Unknown opcode");
|
||||
}
|
||||
return 0; // Not reached
|
||||
}
|
||||
|
@ -72,7 +72,7 @@ static void EmitBranchToAt(void *At, void *To) {
|
||||
|
||||
void AlphaJITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
|
||||
//FIXME
|
||||
assert(0);
|
||||
llvm_unreachable();
|
||||
}
|
||||
|
||||
static TargetJITInfo::JITCompilerFn JITCompilerFunction;
|
||||
@ -241,7 +241,7 @@ void AlphaJITInfo::relocate(void *Function, MachineRelocation *MR,
|
||||
long idx = 0;
|
||||
bool doCommon = true;
|
||||
switch ((Alpha::RelocationType)MR->getRelocationType()) {
|
||||
default: assert(0 && "Unknown relocation type!");
|
||||
default: LLVM_UNREACHABLE("Unknown relocation type!");
|
||||
case Alpha::reloc_literal:
|
||||
//This is a LDQl
|
||||
idx = MR->getGOTIndex();
|
||||
@ -281,7 +281,7 @@ void AlphaJITInfo::relocate(void *Function, MachineRelocation *MR,
|
||||
DOUT << "LDA: " << idx << "\n";
|
||||
break;
|
||||
default:
|
||||
assert(0 && "Cannot handle gpdist yet");
|
||||
LLVM_UNREACHABLE("Cannot handle gpdist yet");
|
||||
}
|
||||
break;
|
||||
case Alpha::reloc_bsr: {
|
||||
|
@ -307,7 +307,7 @@ void AlphaRegisterInfo::emitEpilogue(MachineFunction &MF,
|
||||
}
|
||||
|
||||
unsigned AlphaRegisterInfo::getRARegister() const {
|
||||
assert(0 && "What is the return address register");
|
||||
LLVM_UNREACHABLE("What is the return address register");
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -316,17 +316,17 @@ unsigned AlphaRegisterInfo::getFrameRegister(MachineFunction &MF) const {
|
||||
}
|
||||
|
||||
unsigned AlphaRegisterInfo::getEHExceptionRegister() const {
|
||||
assert(0 && "What is the exception register");
|
||||
LLVM_UNREACHABLE("What is the exception register");
|
||||
return 0;
|
||||
}
|
||||
|
||||
unsigned AlphaRegisterInfo::getEHHandlerRegister() const {
|
||||
assert(0 && "What is the exception handler register");
|
||||
LLVM_UNREACHABLE("What is the exception handler register");
|
||||
return 0;
|
||||
}
|
||||
|
||||
int AlphaRegisterInfo::getDwarfRegNum(unsigned RegNum, bool isEH) const {
|
||||
assert(0 && "What is the dwarf register number");
|
||||
LLVM_UNREACHABLE("What is the dwarf register number");
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -155,7 +155,7 @@ bool AlphaAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
|
||||
|
||||
EmitAlignment(MF.getAlignment(), F);
|
||||
switch (F->getLinkage()) {
|
||||
default: assert(0 && "Unknown linkage type!");
|
||||
default: LLVM_UNREACHABLE( "Unknown linkage type!");
|
||||
case Function::InternalLinkage: // Symbols default to internal.
|
||||
case Function::PrivateLinkage:
|
||||
break;
|
||||
|
@ -287,11 +287,11 @@ namespace {
|
||||
void visitBranchInst(BranchInst &I);
|
||||
void visitSwitchInst(SwitchInst &I);
|
||||
void visitInvokeInst(InvokeInst &I) {
|
||||
assert(0 && "Lowerinvoke pass didn't work!");
|
||||
LLVM_UNREACHABLE("Lowerinvoke pass didn't work!");
|
||||
}
|
||||
|
||||
void visitUnwindInst(UnwindInst &I) {
|
||||
assert(0 && "Lowerinvoke pass didn't work!");
|
||||
LLVM_UNREACHABLE("Lowerinvoke pass didn't work!");
|
||||
}
|
||||
void visitUnreachableInst(UnreachableInst &I);
|
||||
|
||||
@ -921,7 +921,7 @@ void CWriter::printCast(unsigned opc, const Type *SrcTy, const Type *DstTy) {
|
||||
Out << ')';
|
||||
break;
|
||||
default:
|
||||
assert(0 && "Invalid cast opcode");
|
||||
LLVM_UNREACHABLE("Invalid cast opcode");
|
||||
}
|
||||
|
||||
// Print the source type cast
|
||||
@ -951,7 +951,7 @@ void CWriter::printCast(unsigned opc, const Type *SrcTy, const Type *DstTy) {
|
||||
case Instruction::FPToUI:
|
||||
break; // These don't need a source cast.
|
||||
default:
|
||||
assert(0 && "Invalid cast opcode");
|
||||
LLVM_UNREACHABLE("Invalid cast opcode");
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -1060,10 +1060,10 @@ void CWriter::printConstant(Constant *CPV, bool Static) {
|
||||
case ICmpInst::ICMP_UGT: Out << " > "; break;
|
||||
case ICmpInst::ICMP_SGE:
|
||||
case ICmpInst::ICMP_UGE: Out << " >= "; break;
|
||||
default: assert(0 && "Illegal ICmp predicate");
|
||||
default: LLVM_UNREACHABLE("Illegal ICmp predicate");
|
||||
}
|
||||
break;
|
||||
default: assert(0 && "Illegal opcode here!");
|
||||
default: LLVM_UNREACHABLE("Illegal opcode here!");
|
||||
}
|
||||
printConstantWithCast(CE->getOperand(1), CE->getOpcode());
|
||||
if (NeedsClosingParens)
|
||||
@ -1081,7 +1081,7 @@ void CWriter::printConstant(Constant *CPV, bool Static) {
|
||||
else {
|
||||
const char* op = 0;
|
||||
switch (CE->getPredicate()) {
|
||||
default: assert(0 && "Illegal FCmp predicate");
|
||||
default: LLVM_UNREACHABLE("Illegal FCmp predicate");
|
||||
case FCmpInst::FCMP_ORD: op = "ord"; break;
|
||||
case FCmpInst::FCMP_UNO: op = "uno"; break;
|
||||
case FCmpInst::FCMP_UEQ: op = "ueq"; break;
|
||||
@ -2123,7 +2123,7 @@ void CWriter::printFloatingPointConstants(const Constant *C) {
|
||||
<< "}; /* Long double constant */\n";
|
||||
|
||||
} else {
|
||||
assert(0 && "Unknown float type!");
|
||||
LLVM_UNREACHABLE("Unknown float type!");
|
||||
}
|
||||
}
|
||||
|
||||
@ -2740,7 +2740,7 @@ void CWriter::visitFCmpInst(FCmpInst &I) {
|
||||
|
||||
const char* op = 0;
|
||||
switch (I.getPredicate()) {
|
||||
default: assert(0 && "Illegal FCmp predicate");
|
||||
default: LLVM_UNREACHABLE("Illegal FCmp predicate");
|
||||
case FCmpInst::FCMP_ORD: op = "ord"; break;
|
||||
case FCmpInst::FCMP_UNO: op = "uno"; break;
|
||||
case FCmpInst::FCMP_UEQ: op = "ueq"; break;
|
||||
@ -2768,7 +2768,7 @@ void CWriter::visitFCmpInst(FCmpInst &I) {
|
||||
|
||||
static const char * getFloatBitCastField(const Type *Ty) {
|
||||
switch (Ty->getTypeID()) {
|
||||
default: assert(0 && "Invalid Type");
|
||||
default: LLVM_UNREACHABLE("Invalid Type");
|
||||
case Type::FloatTyID: return "Float";
|
||||
case Type::DoubleTyID: return "Double";
|
||||
case Type::IntegerTyID: {
|
||||
@ -3131,7 +3131,7 @@ bool CWriter::visitBuiltinCall(CallInst &I, Intrinsic::ID ID,
|
||||
Out << ')';
|
||||
// Multiple GCC builtins multiplex onto this intrinsic.
|
||||
switch (cast<ConstantInt>(I.getOperand(3))->getZExtValue()) {
|
||||
default: assert(0 && "Invalid llvm.x86.sse.cmp!");
|
||||
default: LLVM_UNREACHABLE("Invalid llvm.x86.sse.cmp!");
|
||||
case 0: Out << "__builtin_ia32_cmpeq"; break;
|
||||
case 1: Out << "__builtin_ia32_cmplt"; break;
|
||||
case 2: Out << "__builtin_ia32_cmple"; break;
|
||||
@ -3343,7 +3343,7 @@ void CWriter::visitInlineAsm(CallInst &CI) {
|
||||
}
|
||||
|
||||
void CWriter::visitMallocInst(MallocInst &I) {
|
||||
assert(0 && "lowerallocations pass didn't work!");
|
||||
LLVM_UNREACHABLE("lowerallocations pass didn't work!");
|
||||
}
|
||||
|
||||
void CWriter::visitAllocaInst(AllocaInst &I) {
|
||||
@ -3360,7 +3360,7 @@ void CWriter::visitAllocaInst(AllocaInst &I) {
|
||||
}
|
||||
|
||||
void CWriter::visitFreeInst(FreeInst &I) {
|
||||
assert(0 && "lowerallocations pass didn't work!");
|
||||
LLVM_UNREACHABLE("lowerallocations pass didn't work!");
|
||||
}
|
||||
|
||||
void CWriter::printGEPExpression(Value *Ptr, gep_type_iterator I,
|
||||
|
@ -265,7 +265,7 @@ namespace {
|
||||
&& "Invalid negated immediate rotate 7-bit argument");
|
||||
O << -value;
|
||||
} else {
|
||||
assert(0 &&"Invalid/non-immediate rotate amount in printRotateNeg7Imm");
|
||||
LLVM_UNREACHABLE("Invalid/non-immediate rotate amount in printRotateNeg7Imm");
|
||||
}
|
||||
}
|
||||
|
||||
@ -276,7 +276,7 @@ namespace {
|
||||
&& "Invalid negated immediate rotate 7-bit argument");
|
||||
O << -value;
|
||||
} else {
|
||||
assert(0 &&"Invalid/non-immediate rotate amount in printRotateNeg7Imm");
|
||||
LLVM_UNREACHABLE("Invalid/non-immediate rotate amount in printRotateNeg7Imm");
|
||||
}
|
||||
}
|
||||
|
||||
@ -434,7 +434,7 @@ LinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF)
|
||||
EmitAlignment(MF.getAlignment(), F);
|
||||
|
||||
switch (F->getLinkage()) {
|
||||
default: assert(0 && "Unknown linkage type!");
|
||||
default: LLVM_UNREACHABLE( "Unknown linkage type!");
|
||||
case Function::PrivateLinkage:
|
||||
case Function::InternalLinkage: // Symbols default to internal.
|
||||
break;
|
||||
|
@ -378,7 +378,7 @@ namespace {
|
||||
break;
|
||||
case 'v': // not offsetable
|
||||
#if 1
|
||||
assert(0 && "InlineAsmMemoryOperand 'v' constraint not handled.");
|
||||
LLVM_UNREACHABLE("InlineAsmMemoryOperand 'v' constraint not handled.");
|
||||
#else
|
||||
SelectAddrIdxOnly(Op, Op, Op0, Op1);
|
||||
#endif
|
||||
|
@ -875,7 +875,7 @@ LowerConstantPool(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) {
|
||||
}
|
||||
}
|
||||
|
||||
assert(0 &&
|
||||
LLVM_UNREACHABLE(
|
||||
"LowerConstantPool: Relocation model other than static"
|
||||
" not supported.");
|
||||
return SDValue();
|
||||
@ -907,7 +907,7 @@ LowerJumpTable(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) {
|
||||
}
|
||||
}
|
||||
|
||||
assert(0 &&
|
||||
LLVM_UNREACHABLE(
|
||||
"LowerJumpTable: Relocation model other than static not supported.");
|
||||
return SDValue();
|
||||
}
|
||||
@ -1139,7 +1139,7 @@ LowerCALL(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) {
|
||||
PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff);
|
||||
|
||||
switch (Arg.getValueType().getSimpleVT()) {
|
||||
default: assert(0 && "Unexpected ValueType for argument!");
|
||||
default: LLVM_UNREACHABLE("Unexpected ValueType for argument!");
|
||||
case MVT::i8:
|
||||
case MVT::i16:
|
||||
case MVT::i32:
|
||||
@ -1271,7 +1271,7 @@ LowerCALL(SDValue Op, SelectionDAG &DAG, const SPUSubtarget *ST) {
|
||||
|
||||
// If the call has results, copy the values out of the ret val registers.
|
||||
switch (TheCall->getValueType(0).getSimpleVT()) {
|
||||
default: assert(0 && "Unexpected ret value!");
|
||||
default: LLVM_UNREACHABLE("Unexpected ret value!");
|
||||
case MVT::Other: break;
|
||||
case MVT::i32:
|
||||
if (TheCall->getValueType(1) == MVT::i32) {
|
||||
@ -1739,7 +1739,7 @@ static SDValue LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
|
||||
} else if (EltVT == MVT::i64 || EltVT == MVT::f64) {
|
||||
V2EltIdx0 = 2;
|
||||
} else
|
||||
assert(0 && "Unhandled vector type in LowerVECTOR_SHUFFLE");
|
||||
LLVM_UNREACHABLE("Unhandled vector type in LowerVECTOR_SHUFFLE");
|
||||
|
||||
for (unsigned i = 0; i != MaxElts; ++i) {
|
||||
if (SVN->getMaskElt(i) < 0)
|
||||
@ -1835,7 +1835,7 @@ static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
|
||||
|
||||
// Create a constant vector:
|
||||
switch (Op.getValueType().getSimpleVT()) {
|
||||
default: assert(0 && "Unexpected constant value type in "
|
||||
default: LLVM_UNREACHABLE("Unexpected constant value type in "
|
||||
"LowerSCALAR_TO_VECTOR");
|
||||
case MVT::v16i8: n_copies = 16; VT = MVT::i8; break;
|
||||
case MVT::v8i16: n_copies = 8; VT = MVT::i16; break;
|
||||
@ -1854,7 +1854,7 @@ static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
|
||||
} else {
|
||||
// Otherwise, copy the value from one register to another:
|
||||
switch (Op0.getValueType().getSimpleVT()) {
|
||||
default: assert(0 && "Unexpected value type in LowerSCALAR_TO_VECTOR");
|
||||
default: LLVM_UNREACHABLE("Unexpected value type in LowerSCALAR_TO_VECTOR");
|
||||
case MVT::i8:
|
||||
case MVT::i16:
|
||||
case MVT::i32:
|
||||
@ -1881,13 +1881,13 @@ static SDValue LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
|
||||
|
||||
// sanity checks:
|
||||
if (VT == MVT::i8 && EltNo >= 16)
|
||||
assert(0 && "SPU LowerEXTRACT_VECTOR_ELT: i8 extraction slot > 15");
|
||||
LLVM_UNREACHABLE("SPU LowerEXTRACT_VECTOR_ELT: i8 extraction slot > 15");
|
||||
else if (VT == MVT::i16 && EltNo >= 8)
|
||||
assert(0 && "SPU LowerEXTRACT_VECTOR_ELT: i16 extraction slot > 7");
|
||||
LLVM_UNREACHABLE("SPU LowerEXTRACT_VECTOR_ELT: i16 extraction slot > 7");
|
||||
else if (VT == MVT::i32 && EltNo >= 4)
|
||||
assert(0 && "SPU LowerEXTRACT_VECTOR_ELT: i32 extraction slot > 4");
|
||||
LLVM_UNREACHABLE("SPU LowerEXTRACT_VECTOR_ELT: i32 extraction slot > 4");
|
||||
else if (VT == MVT::i64 && EltNo >= 2)
|
||||
assert(0 && "SPU LowerEXTRACT_VECTOR_ELT: i64 extraction slot > 2");
|
||||
LLVM_UNREACHABLE("SPU LowerEXTRACT_VECTOR_ELT: i64 extraction slot > 2");
|
||||
|
||||
if (EltNo == 0 && (VT == MVT::i32 || VT == MVT::i64)) {
|
||||
// i32 and i64: Element 0 is the preferred slot
|
||||
@ -2066,7 +2066,7 @@ static SDValue LowerI8Math(SDValue Op, SelectionDAG &DAG, unsigned Opc,
|
||||
assert(Op.getValueType() == MVT::i8);
|
||||
switch (Opc) {
|
||||
default:
|
||||
assert(0 && "Unhandled i8 math operator");
|
||||
LLVM_UNREACHABLE("Unhandled i8 math operator");
|
||||
/*NOTREACHED*/
|
||||
break;
|
||||
case ISD::ADD: {
|
||||
|
@ -325,7 +325,7 @@ namespace {
|
||||
|
||||
void CppWriter::printVisibilityType(GlobalValue::VisibilityTypes VisType) {
|
||||
switch (VisType) {
|
||||
default: assert(0 && "Unknown GVar visibility");
|
||||
default: LLVM_UNREACHABLE("Unknown GVar visibility");
|
||||
case GlobalValue::DefaultVisibility:
|
||||
Out << "GlobalValue::DefaultVisibility";
|
||||
break;
|
||||
@ -844,7 +844,7 @@ namespace {
|
||||
printConstant(CE->getOperand(0));
|
||||
Out << "Constant* " << constName << " = ConstantExpr::getCast(";
|
||||
switch (CE->getOpcode()) {
|
||||
default: assert(0 && "Invalid cast opcode");
|
||||
default: LLVM_UNREACHABLE("Invalid cast opcode");
|
||||
case Instruction::Trunc: Out << "Instruction::Trunc"; break;
|
||||
case Instruction::ZExt: Out << "Instruction::ZExt"; break;
|
||||
case Instruction::SExt: Out << "Instruction::SExt"; break;
|
||||
|
@ -17,6 +17,7 @@
|
||||
#include "llvm/Function.h"
|
||||
#include "llvm/GlobalVariable.h"
|
||||
#include "llvm/ADT/StringExtras.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/Mangler.h"
|
||||
#include "llvm/Target/DarwinTargetAsmInfo.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
@ -151,7 +152,7 @@ DarwinTargetAsmInfo::SelectSectionForGlobal(const GlobalValue *GV) const {
|
||||
ConstDataCoalSection:
|
||||
MergeableConstSection(cast<GlobalVariable>(GV)));
|
||||
default:
|
||||
assert(0 && "Unsuported section kind for global");
|
||||
LLVM_UNREACHABLE("Unsuported section kind for global");
|
||||
}
|
||||
|
||||
// FIXME: Do we have any extra special weird cases?
|
||||
@ -211,6 +212,6 @@ DarwinTargetAsmInfo::SelectSectionForMachineConst(const Type *Ty) const {
|
||||
std::string
|
||||
DarwinTargetAsmInfo::UniqueSectionForGlobal(const GlobalValue* GV,
|
||||
SectionKind::Kind kind) const {
|
||||
assert(0 && "Darwin does not use unique sections");
|
||||
LLVM_UNREACHABLE("Darwin does not use unique sections");
|
||||
return "";
|
||||
}
|
||||
|
@ -18,6 +18,7 @@
|
||||
#include "llvm/GlobalVariable.h"
|
||||
#include "llvm/ADT/StringExtras.h"
|
||||
#include "llvm/CodeGen/MachineConstantPool.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Target/ELFTargetAsmInfo.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Target/TargetData.h"
|
||||
@ -74,7 +75,7 @@ ELFTargetAsmInfo::SelectSectionForGlobal(const GlobalValue *GV) const {
|
||||
|
||||
if (const Function *F = dyn_cast<Function>(GV)) {
|
||||
switch (F->getLinkage()) {
|
||||
default: assert(0 && "Unknown linkage type!");
|
||||
default: LLVM_UNREACHABLE("Unknown linkage type!");
|
||||
case Function::PrivateLinkage:
|
||||
case Function::InternalLinkage:
|
||||
case Function::DLLExportLinkage:
|
||||
@ -123,11 +124,11 @@ ELFTargetAsmInfo::SelectSectionForGlobal(const GlobalValue *GV) const {
|
||||
case SectionKind::ThreadBSS:
|
||||
return TLSBSSSection;
|
||||
default:
|
||||
assert(0 && "Unsuported section kind for global");
|
||||
LLVM_UNREACHABLE("Unsuported section kind for global");
|
||||
}
|
||||
}
|
||||
} else
|
||||
assert(0 && "Unsupported global");
|
||||
LLVM_UNREACHABLE("Unsupported global");
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
@ -215,7 +215,7 @@ SDNode *IA64DAGToDAGISel::SelectDIV(SDValue Op) {
|
||||
|
||||
if(isFP) { // if this is an FP divide, we finish up here and exit early
|
||||
if(isModulus)
|
||||
assert(0 && "Sorry, try another FORTRAN compiler.");
|
||||
LLVM_UNREACHABLE("Sorry, try another FORTRAN compiler.");
|
||||
|
||||
SDValue TmpE2, TmpY3, TmpQ0, TmpR0;
|
||||
|
||||
@ -406,7 +406,7 @@ SDNode *IA64DAGToDAGISel::Select(SDValue Op) {
|
||||
APFloat(+1.0f) : APFloat(+1.0))) {
|
||||
V = CurDAG->getCopyFromReg(Chain, dl, IA64::F1, MVT::f64);
|
||||
} else
|
||||
assert(0 && "Unexpected FP constant!");
|
||||
LLVM_UNREACHABLE("Unexpected FP constant!");
|
||||
|
||||
ReplaceUses(SDValue(N, 0), V);
|
||||
return 0;
|
||||
@ -468,7 +468,7 @@ SDNode *IA64DAGToDAGISel::Select(SDValue Op) {
|
||||
#ifndef NDEBUG
|
||||
N->dump(CurDAG);
|
||||
#endif
|
||||
assert(0 && "Cannot load this type!");
|
||||
LLVM_UNREACHABLE("Cannot load this type!");
|
||||
case MVT::i1: { // this is a bool
|
||||
Opc = IA64::LD1; // first we load a byte, then compare for != 0
|
||||
if(N->getValueType(0) == MVT::i1) { // XXX: early exit!
|
||||
@ -504,7 +504,7 @@ SDNode *IA64DAGToDAGISel::Select(SDValue Op) {
|
||||
unsigned Opc;
|
||||
if (ISD::isNON_TRUNCStore(N)) {
|
||||
switch (N->getOperand(1).getValueType().getSimpleVT()) {
|
||||
default: assert(0 && "unknown type in store");
|
||||
default: LLVM_UNREACHABLE("unknown type in store");
|
||||
case MVT::i1: { // this is a bool
|
||||
Opc = IA64::ST1; // we store either 0 or 1 as a byte
|
||||
// first load zero!
|
||||
@ -524,7 +524,7 @@ SDNode *IA64DAGToDAGISel::Select(SDValue Op) {
|
||||
}
|
||||
} else { // Truncating store
|
||||
switch(ST->getMemoryVT().getSimpleVT()) {
|
||||
default: assert(0 && "unknown type in truncstore");
|
||||
default: LLVM_UNREACHABLE("unknown type in truncstore");
|
||||
case MVT::i8: Opc = IA64::ST1; break;
|
||||
case MVT::i16: Opc = IA64::ST2; break;
|
||||
case MVT::i32: Opc = IA64::ST4; break;
|
||||
|
@ -194,7 +194,7 @@ void IA64TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
|
||||
|
||||
switch (getValueType(I->getType()).getSimpleVT()) {
|
||||
default:
|
||||
assert(0 && "ERROR in LowerArgs: can't lower this type of arg.\n");
|
||||
LLVM_UNREACHABLE("ERROR in LowerArgs: can't lower this type of arg.\n");
|
||||
case MVT::f32:
|
||||
// fixme? (well, will need to for weird FP structy stuff,
|
||||
// see intel ABI docs)
|
||||
@ -298,7 +298,7 @@ void IA64TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG,
|
||||
// Finally, inform the code generator which regs we return values in.
|
||||
// (see the ISD::RET: case in the instruction selector)
|
||||
switch (getValueType(F.getReturnType()).getSimpleVT()) {
|
||||
default: assert(0 && "i have no idea where to return this type!");
|
||||
default: LLVM_UNREACHABLE("i have no idea where to return this type!");
|
||||
case MVT::isVoid: break;
|
||||
case MVT::i1:
|
||||
case MVT::i8:
|
||||
@ -362,7 +362,7 @@ IA64TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
|
||||
SDValue ValToStore(0, 0), ValToConvert(0, 0);
|
||||
unsigned ObjSize=8;
|
||||
switch (ObjectVT.getSimpleVT()) {
|
||||
default: assert(0 && "unexpected argument type!");
|
||||
default: LLVM_UNREACHABLE("unexpected argument type!");
|
||||
case MVT::i1:
|
||||
case MVT::i8:
|
||||
case MVT::i16:
|
||||
@ -493,7 +493,7 @@ IA64TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
|
||||
if (InFlag.getNode())
|
||||
CallOperands.push_back(InFlag);
|
||||
else
|
||||
assert(0 && "this should never happen!\n");
|
||||
LLVM_UNREACHABLE("this should never happen!\n");
|
||||
|
||||
// to make way for a hack:
|
||||
Chain = DAG.getNode(IA64ISD::BRCALL, dl, NodeTys,
|
||||
@ -516,7 +516,7 @@ IA64TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
|
||||
SDValue RetVal;
|
||||
if (RetTyVT != MVT::isVoid) {
|
||||
switch (RetTyVT.getSimpleVT()) {
|
||||
default: assert(0 && "Unknown value type to return!");
|
||||
default: LLVM_UNREACHABLE("Unknown value type to return!");
|
||||
case MVT::i1: { // bools are just like other integers (returned in r8)
|
||||
// we *could* fall through to the truncate below, but this saves a
|
||||
// few redundant predicate ops
|
||||
@ -573,9 +573,9 @@ SDValue IA64TargetLowering::
|
||||
LowerOperation(SDValue Op, SelectionDAG &DAG) {
|
||||
DebugLoc dl = Op.getDebugLoc();
|
||||
switch (Op.getOpcode()) {
|
||||
default: assert(0 && "Should not custom lower this!");
|
||||
default: LLVM_UNREACHABLE("Should not custom lower this!");
|
||||
case ISD::GlobalTLSAddress:
|
||||
assert(0 && "TLS not implemented for IA64.");
|
||||
LLVM_UNREACHABLE("TLS not implemented for IA64.");
|
||||
case ISD::RET: {
|
||||
SDValue AR_PFSVal, Copy;
|
||||
|
||||
|
@ -16,6 +16,7 @@
|
||||
#include "IA64InstrBuilder.h"
|
||||
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "IA64GenInstrInfo.inc"
|
||||
using namespace llvm;
|
||||
|
||||
@ -111,8 +112,8 @@ void IA64InstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB,
|
||||
BuildMI(MBB, MI, DL, get(IA64::ST8))
|
||||
.addFrameIndex(FrameIdx)
|
||||
.addReg(IA64::r2);
|
||||
} else assert(0 &&
|
||||
"sorry, I don't know how to store this sort of reg in the stack\n");
|
||||
} else
|
||||
LLVM_UNREACHABLE("sorry, I don't know how to store this sort of reg in the stack");
|
||||
}
|
||||
|
||||
void IA64InstrInfo::storeRegToAddr(MachineFunction &MF, unsigned SrcReg,
|
||||
@ -128,7 +129,7 @@ void IA64InstrInfo::storeRegToAddr(MachineFunction &MF, unsigned SrcReg,
|
||||
} else if (RC == IA64::PRRegisterClass) {
|
||||
Opc = IA64::ST1;
|
||||
} else {
|
||||
assert(0 &&
|
||||
LLVM_UNREACHABLE(
|
||||
"sorry, I don't know how to store this sort of reg\n");
|
||||
}
|
||||
|
||||
@ -163,7 +164,7 @@ void IA64InstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB,
|
||||
.addReg(IA64::r2)
|
||||
.addReg(IA64::r0);
|
||||
} else {
|
||||
assert(0 &&
|
||||
LLVM_UNREACHABLE(
|
||||
"sorry, I don't know how to load this sort of reg from the stack\n");
|
||||
}
|
||||
}
|
||||
@ -180,7 +181,7 @@ void IA64InstrInfo::loadRegFromAddr(MachineFunction &MF, unsigned DestReg,
|
||||
} else if (RC == IA64::PRRegisterClass) {
|
||||
Opc = IA64::LD1;
|
||||
} else {
|
||||
assert(0 &&
|
||||
LLVM_UNREACHABLE(
|
||||
"sorry, I don't know how to load this sort of reg\n");
|
||||
}
|
||||
|
||||
|
@ -25,6 +25,7 @@
|
||||
#include "llvm/CodeGen/MachineFrameInfo.h"
|
||||
#include "llvm/CodeGen/MachineLocation.h"
|
||||
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Target/TargetFrameInfo.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Target/TargetOptions.h"
|
||||
@ -292,7 +293,7 @@ void IA64RegisterInfo::emitEpilogue(MachineFunction &MF,
|
||||
}
|
||||
|
||||
unsigned IA64RegisterInfo::getRARegister() const {
|
||||
assert(0 && "What is the return address register");
|
||||
LLVM_UNREACHABLE("What is the return address register");
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -301,17 +302,17 @@ unsigned IA64RegisterInfo::getFrameRegister(MachineFunction &MF) const {
|
||||
}
|
||||
|
||||
unsigned IA64RegisterInfo::getEHExceptionRegister() const {
|
||||
assert(0 && "What is the exception register");
|
||||
LLVM_UNREACHABLE("What is the exception register");
|
||||
return 0;
|
||||
}
|
||||
|
||||
unsigned IA64RegisterInfo::getEHHandlerRegister() const {
|
||||
assert(0 && "What is the exception handler register");
|
||||
LLVM_UNREACHABLE("What is the exception handler register");
|
||||
return 0;
|
||||
}
|
||||
|
||||
int IA64RegisterInfo::getDwarfRegNum(unsigned RegNum, bool isEH) const {
|
||||
assert(0 && "What is the dwarf register number");
|
||||
LLVM_UNREACHABLE("What is the dwarf register number");
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -19,6 +19,7 @@
|
||||
#include "llvm/TypeSymbolTable.h"
|
||||
#include "llvm/Analysis/ConstantsScanner.h"
|
||||
#include "llvm/Support/CallSite.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/InstVisitor.h"
|
||||
#include "llvm/Support/MathExtras.h"
|
||||
#include "llvm/Transforms/Scalar.h"
|
||||
@ -273,7 +274,7 @@ std::string MSILWriter::getConvModopt(unsigned CallingConvID) {
|
||||
return "modopt([mscorlib]System.Runtime.CompilerServices.CallConvStdcall) ";
|
||||
default:
|
||||
cerr << "CallingConvID = " << CallingConvID << '\n';
|
||||
assert(0 && "Unsupported calling convention");
|
||||
LLVM_UNREACHABLE("Unsupported calling convention");
|
||||
}
|
||||
return ""; // Not reached
|
||||
}
|
||||
@ -319,7 +320,7 @@ std::string MSILWriter::getPrimitiveTypeName(const Type* Ty, bool isSigned) {
|
||||
return "float64 ";
|
||||
default:
|
||||
cerr << "Type = " << *Ty << '\n';
|
||||
assert(0 && "Invalid primitive type");
|
||||
LLVM_UNREACHABLE("Invalid primitive type");
|
||||
}
|
||||
return ""; // Not reached
|
||||
}
|
||||
@ -347,7 +348,7 @@ std::string MSILWriter::getTypeName(const Type* Ty, bool isSigned,
|
||||
return "valuetype '"+getArrayTypeName(Ty->getTypeID(),Ty)+"' ";
|
||||
default:
|
||||
cerr << "Type = " << *Ty << '\n';
|
||||
assert(0 && "Invalid type in getTypeName()");
|
||||
LLVM_UNREACHABLE("Invalid type in getTypeName()");
|
||||
}
|
||||
return ""; // Not reached
|
||||
}
|
||||
@ -391,7 +392,7 @@ std::string MSILWriter::getTypePostfix(const Type* Ty, bool Expand,
|
||||
return "i"+utostr(TD->getTypeAllocSize(Ty));
|
||||
default:
|
||||
cerr << "TypeID = " << Ty->getTypeID() << '\n';
|
||||
assert(0 && "Invalid type in TypeToPostfix()");
|
||||
LLVM_UNREACHABLE("Invalid type in TypeToPostfix()");
|
||||
}
|
||||
return ""; // Not reached
|
||||
}
|
||||
@ -406,7 +407,7 @@ void MSILWriter::printConvToPtr() {
|
||||
printSimpleInstruction("conv.u8");
|
||||
break;
|
||||
default:
|
||||
assert(0 && "Module use not supporting pointer size");
|
||||
LLVM_UNREACHABLE("Module use not supporting pointer size");
|
||||
}
|
||||
}
|
||||
|
||||
@ -418,14 +419,14 @@ void MSILWriter::printPtrLoad(uint64_t N) {
|
||||
// FIXME: Need overflow test?
|
||||
if (!isUInt32(N)) {
|
||||
cerr << "Value = " << utostr(N) << '\n';
|
||||
assert(0 && "32-bit pointer overflowed");
|
||||
LLVM_UNREACHABLE("32-bit pointer overflowed");
|
||||
}
|
||||
break;
|
||||
case Module::Pointer64:
|
||||
printSimpleInstruction("ldc.i8",utostr(N).c_str());
|
||||
break;
|
||||
default:
|
||||
assert(0 && "Module use not supporting pointer size");
|
||||
LLVM_UNREACHABLE("Module use not supporting pointer size");
|
||||
}
|
||||
}
|
||||
|
||||
@ -461,7 +462,7 @@ void MSILWriter::printConstLoad(const Constant* C) {
|
||||
printPtrLoad(0);
|
||||
} else {
|
||||
cerr << "Constant = " << *C << '\n';
|
||||
assert(0 && "Invalid constant value");
|
||||
LLVM_UNREACHABLE("Invalid constant value");
|
||||
}
|
||||
Out << '\n';
|
||||
}
|
||||
@ -510,7 +511,7 @@ void MSILWriter::printValueLoad(const Value* V) {
|
||||
break;
|
||||
default:
|
||||
cerr << "Value = " << *V << '\n';
|
||||
assert(0 && "Invalid value location");
|
||||
LLVM_UNREACHABLE("Invalid value location");
|
||||
}
|
||||
}
|
||||
|
||||
@ -525,7 +526,7 @@ void MSILWriter::printValueSave(const Value* V) {
|
||||
break;
|
||||
default:
|
||||
cerr << "Value = " << *V << '\n';
|
||||
assert(0 && "Invalid value location");
|
||||
LLVM_UNREACHABLE("Invalid value location");
|
||||
}
|
||||
}
|
||||
|
||||
@ -680,7 +681,7 @@ void MSILWriter::printCastInstruction(unsigned int Op, const Value* V,
|
||||
break;
|
||||
default:
|
||||
cerr << "Opcode = " << Op << '\n';
|
||||
assert(0 && "Invalid conversion instruction");
|
||||
LLVM_UNREACHABLE("Invalid conversion instruction");
|
||||
}
|
||||
}
|
||||
|
||||
@ -771,7 +772,7 @@ void MSILWriter::printFunctionCall(const Value* FnVal,
|
||||
Name = getConvModopt(Invoke->getCallingConv());
|
||||
else {
|
||||
cerr << "Instruction = " << Inst->getName() << '\n';
|
||||
assert(0 && "Need \"Invoke\" or \"Call\" instruction only");
|
||||
LLVM_UNREACHABLE("Need \"Invoke\" or \"Call\" instruction only");
|
||||
}
|
||||
if (const Function* F = dyn_cast<Function>(FnVal)) {
|
||||
// Direct call.
|
||||
@ -819,7 +820,7 @@ void MSILWriter::printIntrinsicCall(const IntrinsicInst* Inst) {
|
||||
break;
|
||||
default:
|
||||
cerr << "Intrinsic ID = " << Inst->getIntrinsicID() << '\n';
|
||||
assert(0 && "Invalid intrinsic function");
|
||||
LLVM_UNREACHABLE("Invalid intrinsic function");
|
||||
}
|
||||
}
|
||||
|
||||
@ -882,7 +883,7 @@ void MSILWriter::printICmpInstruction(unsigned Predicate, const Value* Left,
|
||||
break;
|
||||
default:
|
||||
cerr << "Predicate = " << Predicate << '\n';
|
||||
assert(0 && "Invalid icmp predicate");
|
||||
LLVM_UNREACHABLE("Invalid icmp predicate");
|
||||
}
|
||||
}
|
||||
|
||||
@ -976,7 +977,7 @@ void MSILWriter::printFCmpInstruction(unsigned Predicate, const Value* Left,
|
||||
printSimpleInstruction("or");
|
||||
break;
|
||||
default:
|
||||
assert(0 && "Illegal FCmp predicate");
|
||||
LLVM_UNREACHABLE("Illegal FCmp predicate");
|
||||
}
|
||||
}
|
||||
|
||||
@ -1169,10 +1170,10 @@ void MSILWriter::printInstruction(const Instruction* Inst) {
|
||||
printAllocaInstruction(cast<AllocaInst>(Inst));
|
||||
break;
|
||||
case Instruction::Malloc:
|
||||
assert(0 && "LowerAllocationsPass used");
|
||||
LLVM_UNREACHABLE("LowerAllocationsPass used");
|
||||
break;
|
||||
case Instruction::Free:
|
||||
assert(0 && "LowerAllocationsPass used");
|
||||
LLVM_UNREACHABLE("LowerAllocationsPass used");
|
||||
break;
|
||||
case Instruction::Unreachable:
|
||||
printSimpleInstruction("ldstr", "\"Unreachable instruction\"");
|
||||
@ -1185,7 +1186,7 @@ void MSILWriter::printInstruction(const Instruction* Inst) {
|
||||
break;
|
||||
default:
|
||||
cerr << "Instruction = " << Inst->getName() << '\n';
|
||||
assert(0 && "Unsupported instruction");
|
||||
LLVM_UNREACHABLE("Unsupported instruction");
|
||||
}
|
||||
}
|
||||
|
||||
@ -1373,7 +1374,7 @@ void MSILWriter::printConstantExpr(const ConstantExpr* CE) {
|
||||
break;
|
||||
default:
|
||||
cerr << "Expression = " << *CE << "\n";
|
||||
assert(0 && "Invalid constant expression");
|
||||
LLVM_UNREACHABLE("Invalid constant expression");
|
||||
}
|
||||
}
|
||||
|
||||
@ -1407,7 +1408,7 @@ void MSILWriter::printStaticInitializerList() {
|
||||
printSimpleInstruction(postfix.c_str());
|
||||
} else {
|
||||
cerr << "Constant = " << *I->constant << '\n';
|
||||
assert(0 && "Invalid static initializer");
|
||||
LLVM_UNREACHABLE("Invalid static initializer");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1471,7 +1472,7 @@ unsigned int MSILWriter::getBitWidth(const Type* Ty) {
|
||||
return N;
|
||||
default:
|
||||
cerr << "Bits = " << N << '\n';
|
||||
assert(0 && "Unsupported integer width");
|
||||
LLVM_UNREACHABLE("Unsupported integer width");
|
||||
}
|
||||
return 0; // Not reached
|
||||
}
|
||||
@ -1528,12 +1529,12 @@ void MSILWriter::printStaticConstant(const Constant* C, uint64_t& Offset) {
|
||||
// Null pointer initialization
|
||||
if (TySize==4) Out << "int32 (0)";
|
||||
else if (TySize==8) Out << "int64 (0)";
|
||||
else assert(0 && "Invalid pointer size");
|
||||
else LLVM_UNREACHABLE("Invalid pointer size");
|
||||
}
|
||||
break;
|
||||
default:
|
||||
cerr << "TypeID = " << Ty->getTypeID() << '\n';
|
||||
assert(0 && "Invalid type in printStaticConstant()");
|
||||
LLVM_UNREACHABLE("Invalid type in printStaticConstant()");
|
||||
}
|
||||
// Increase offset.
|
||||
Offset += TySize;
|
||||
@ -1556,7 +1557,7 @@ void MSILWriter::printStaticInitializer(const Constant* C,
|
||||
break;
|
||||
default:
|
||||
cerr << "Type = " << *C << "\n";
|
||||
assert(0 && "Invalid constant type");
|
||||
LLVM_UNREACHABLE("Invalid constant type");
|
||||
}
|
||||
// Print initializer
|
||||
std::string label = Name;
|
||||
|
@ -31,6 +31,7 @@
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include "llvm/Support/Mangler.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
@ -99,7 +100,7 @@ void MSP430AsmPrinter::emitFunctionHeader(const MachineFunction &MF) {
|
||||
EmitAlignment(FnAlign, F);
|
||||
|
||||
switch (F->getLinkage()) {
|
||||
default: assert(0 && "Unknown linkage type!");
|
||||
default: LLVM_UNREACHABLE("Unknown linkage type!");
|
||||
case Function::InternalLinkage: // Symbols default to internal.
|
||||
case Function::PrivateLinkage:
|
||||
break;
|
||||
@ -161,7 +162,7 @@ void MSP430AsmPrinter::printMachineInstruction(const MachineInstr *MI) {
|
||||
if (printInstruction(MI))
|
||||
return;
|
||||
|
||||
assert(0 && "Should not happen");
|
||||
LLVM_UNREACHABLE("Should not happen");
|
||||
}
|
||||
|
||||
void MSP430AsmPrinter::printOperand(const MachineInstr *MI, int OpNum,
|
||||
@ -206,7 +207,7 @@ void MSP430AsmPrinter::printOperand(const MachineInstr *MI, int OpNum,
|
||||
return;
|
||||
}
|
||||
default:
|
||||
assert(0 && "Not implemented yet!");
|
||||
LLVM_UNREACHABLE("Not implemented yet!");
|
||||
}
|
||||
}
|
||||
|
||||
@ -230,7 +231,7 @@ void MSP430AsmPrinter::printSrcMemOperand(const MachineInstr *MI, int OpNum,
|
||||
printOperand(MI, OpNum);
|
||||
}
|
||||
} else
|
||||
assert(0 && "Unsupported memory operand");
|
||||
LLVM_UNREACHABLE("Unsupported memory operand");
|
||||
}
|
||||
|
||||
void MSP430AsmPrinter::printCCOperand(const MachineInstr *MI, int OpNum) {
|
||||
@ -238,7 +239,7 @@ void MSP430AsmPrinter::printCCOperand(const MachineInstr *MI, int OpNum) {
|
||||
|
||||
switch (CC) {
|
||||
default:
|
||||
assert(0 && "Unsupported CC code");
|
||||
LLVM_UNREACHABLE("Unsupported CC code");
|
||||
break;
|
||||
case MSP430::COND_E:
|
||||
O << "eq";
|
||||
|
@ -123,7 +123,7 @@ SDValue MSP430TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
|
||||
case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
|
||||
case ISD::SIGN_EXTEND: return LowerSIGN_EXTEND(Op, DAG);
|
||||
default:
|
||||
assert(0 && "unimplemented operand");
|
||||
LLVM_UNREACHABLE("unimplemented operand");
|
||||
return SDValue();
|
||||
}
|
||||
}
|
||||
@ -144,7 +144,7 @@ SDValue MSP430TargetLowering::LowerFORMAL_ARGUMENTS(SDValue Op,
|
||||
unsigned CC = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
|
||||
switch (CC) {
|
||||
default:
|
||||
assert(0 && "Unsupported calling convention");
|
||||
LLVM_UNREACHABLE("Unsupported calling convention");
|
||||
case CallingConv::C:
|
||||
case CallingConv::Fast:
|
||||
return LowerCCCArguments(Op, DAG);
|
||||
@ -156,7 +156,7 @@ SDValue MSP430TargetLowering::LowerCALL(SDValue Op, SelectionDAG &DAG) {
|
||||
unsigned CallingConv = TheCall->getCallingConv();
|
||||
switch (CallingConv) {
|
||||
default:
|
||||
assert(0 && "Unsupported calling convention");
|
||||
LLVM_UNREACHABLE("Unsupported calling convention");
|
||||
case CallingConv::Fast:
|
||||
case CallingConv::C:
|
||||
return LowerCCCCallTo(Op, DAG, CallingConv);
|
||||
@ -331,7 +331,7 @@ SDValue MSP430TargetLowering::LowerCCCCallTo(SDValue Op, SelectionDAG &DAG,
|
||||
|
||||
// Promote the value if needed.
|
||||
switch (VA.getLocInfo()) {
|
||||
default: assert(0 && "Unknown loc info!");
|
||||
default: LLVM_UNREACHABLE("Unknown loc info!");
|
||||
case CCValAssign::Full: break;
|
||||
case CCValAssign::SExt:
|
||||
Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
|
||||
@ -516,7 +516,7 @@ static SDValue EmitCMP(SDValue &LHS, SDValue &RHS, unsigned &TargetCC,
|
||||
// FIXME: Handle jump negative someday
|
||||
TargetCC = MSP430::COND_INVALID;
|
||||
switch (CC) {
|
||||
default: assert(0 && "Invalid integer condition!");
|
||||
default: LLVM_UNREACHABLE("Invalid integer condition!");
|
||||
case ISD::SETEQ:
|
||||
TargetCC = MSP430::COND_E; // aka COND_Z
|
||||
break;
|
||||
|
@ -21,6 +21,7 @@
|
||||
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
||||
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
||||
#include "llvm/CodeGen/PseudoSourceValue.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
@ -44,7 +45,7 @@ void MSP430InstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB,
|
||||
.addFrameIndex(FrameIdx).addImm(0)
|
||||
.addReg(SrcReg, getKillRegState(isKill));
|
||||
else
|
||||
assert(0 && "Cannot store this register to stack slot!");
|
||||
LLVM_UNREACHABLE("Cannot store this register to stack slot!");
|
||||
}
|
||||
|
||||
void MSP430InstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB,
|
||||
@ -61,7 +62,7 @@ void MSP430InstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB,
|
||||
BuildMI(MBB, MI, DL, get(MSP430::MOV8rm))
|
||||
.addReg(DestReg).addFrameIndex(FrameIdx).addImm(0);
|
||||
else
|
||||
assert(0 && "Cannot store this register to stack slot!");
|
||||
LLVM_UNREACHABLE("Cannot store this register to stack slot!");
|
||||
}
|
||||
|
||||
bool MSP430InstrInfo::copyRegToReg(MachineBasicBlock &MBB,
|
||||
@ -171,7 +172,7 @@ MSP430InstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
|
||||
|
||||
// Conditional branch.
|
||||
unsigned Count = 0;
|
||||
assert(0 && "Implement conditional branches!");
|
||||
LLVM_UNREACHABLE("Implement conditional branches!");
|
||||
|
||||
return Count;
|
||||
}
|
||||
|
@ -23,6 +23,7 @@
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Target/TargetOptions.h"
|
||||
#include "llvm/ADT/BitVector.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
@ -291,7 +292,7 @@ void MSP430RegisterInfo::emitEpilogue(MachineFunction &MF,
|
||||
switch (RetOpcode) {
|
||||
case MSP430::RET: break; // These are ok
|
||||
default:
|
||||
assert(0 && "Can only insert epilog into returning blocks");
|
||||
LLVM_UNREACHABLE("Can only insert epilog into returning blocks");
|
||||
}
|
||||
|
||||
// Get the number of bytes to allocate from the FrameInfo
|
||||
@ -327,7 +328,7 @@ void MSP430RegisterInfo::emitEpilogue(MachineFunction &MF,
|
||||
// mergeSPUpdatesUp(MBB, MBBI, StackPtr, &NumBytes);
|
||||
|
||||
if (MFI->hasVarSizedObjects()) {
|
||||
assert(0 && "Not implemented yet!");
|
||||
LLVM_UNREACHABLE("Not implemented yet!");
|
||||
} else {
|
||||
// adjust stack pointer back: SPW += numbytes
|
||||
if (NumBytes) {
|
||||
@ -349,7 +350,7 @@ unsigned MSP430RegisterInfo::getFrameRegister(MachineFunction &MF) const {
|
||||
}
|
||||
|
||||
int MSP430RegisterInfo::getDwarfRegNum(unsigned RegNum, bool isEH) const {
|
||||
assert(0 && "Not implemented yet!");
|
||||
LLVM_UNREACHABLE("Not implemented yet!");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -216,7 +216,7 @@ emitCurrentABIString(void)
|
||||
default: break;
|
||||
}
|
||||
|
||||
assert(0 && "Unknown Mips ABI");
|
||||
LLVM_UNREACHABLE( "Unknown Mips ABI");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -31,6 +31,7 @@
|
||||
#include "llvm/CodeGen/SelectionDAGISel.h"
|
||||
#include "llvm/CodeGen/ValueTypes.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
using namespace llvm;
|
||||
|
||||
const char *MipsTargetLowering::
|
||||
@ -247,7 +248,7 @@ static Mips::FPBranchCode GetFPBranchCodeFromCond(Mips::CondCode CC) {
|
||||
static unsigned FPBranchCodeToOpc(Mips::FPBranchCode BC) {
|
||||
switch(BC) {
|
||||
default:
|
||||
assert(0 && "Unknown branch code");
|
||||
LLVM_UNREACHABLE("Unknown branch code");
|
||||
case Mips::BRANCH_T : return Mips::BC1T;
|
||||
case Mips::BRANCH_F : return Mips::BC1F;
|
||||
case Mips::BRANCH_TL : return Mips::BC1TL;
|
||||
@ -257,7 +258,7 @@ static unsigned FPBranchCodeToOpc(Mips::FPBranchCode BC) {
|
||||
|
||||
static Mips::CondCode FPCondCCodeToFCC(ISD::CondCode CC) {
|
||||
switch (CC) {
|
||||
default: assert(0 && "Unknown fp condition code!");
|
||||
default: LLVM_UNREACHABLE("Unknown fp condition code!");
|
||||
case ISD::SETEQ:
|
||||
case ISD::SETOEQ: return Mips::FCOND_EQ;
|
||||
case ISD::SETUNE: return Mips::FCOND_OGL;
|
||||
@ -541,14 +542,14 @@ LowerGlobalAddress(SDValue Op, SelectionDAG &DAG)
|
||||
return DAG.getNode(ISD::ADD, dl, MVT::i32, ResNode, Lo);
|
||||
}
|
||||
|
||||
assert(0 && "Dont know how to handle GlobalAddress");
|
||||
LLVM_UNREACHABLE("Dont know how to handle GlobalAddress");
|
||||
return SDValue(0,0);
|
||||
}
|
||||
|
||||
SDValue MipsTargetLowering::
|
||||
LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG)
|
||||
{
|
||||
assert(0 && "TLS not implemented for MIPS.");
|
||||
LLVM_UNREACHABLE("TLS not implemented for MIPS.");
|
||||
return SDValue(); // Not reached
|
||||
}
|
||||
|
||||
@ -752,7 +753,7 @@ LowerCALL(SDValue Op, SelectionDAG &DAG)
|
||||
|
||||
// Promote the value if needed.
|
||||
switch (VA.getLocInfo()) {
|
||||
default: assert(0 && "Unknown loc info!");
|
||||
default: LLVM_UNREACHABLE("Unknown loc info!");
|
||||
case CCValAssign::Full:
|
||||
if (Subtarget->isABI_O32() && VA.isRegLoc()) {
|
||||
if (VA.getValVT() == MVT::f32 && VA.getLocVT() == MVT::i32)
|
||||
@ -977,7 +978,7 @@ LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG)
|
||||
if (!Subtarget->isSingleFloat())
|
||||
RC = Mips::AFGR64RegisterClass;
|
||||
} else
|
||||
assert(0 && "RegVT not supported by FORMAL_ARGUMENTS Lowering");
|
||||
LLVM_UNREACHABLE("RegVT not supported by FORMAL_ARGUMENTS Lowering");
|
||||
|
||||
// Transform the arguments stored on
|
||||
// physical registers into virtual ones
|
||||
@ -1139,7 +1140,7 @@ LowerRET(SDValue Op, SelectionDAG &DAG)
|
||||
unsigned Reg = MipsFI->getSRetReturnReg();
|
||||
|
||||
if (!Reg)
|
||||
assert(0 && "sret virtual register not created in the entry block");
|
||||
LLVM_UNREACHABLE("sret virtual register not created in the entry block");
|
||||
SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
|
||||
|
||||
Chain = DAG.getCopyToReg(Chain, dl, Mips::V0, Val, Flag);
|
||||
|
@ -17,6 +17,7 @@
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
||||
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "MipsGenInstrInfo.inc"
|
||||
|
||||
using namespace llvm;
|
||||
@ -372,7 +373,7 @@ static Mips::CondCode GetCondFromBranchOpc(unsigned BrOpc)
|
||||
unsigned Mips::GetCondBranchFromCond(Mips::CondCode CC)
|
||||
{
|
||||
switch (CC) {
|
||||
default: assert(0 && "Illegal condition code!");
|
||||
default: LLVM_UNREACHABLE("Illegal condition code!");
|
||||
case Mips::COND_E : return Mips::BEQ;
|
||||
case Mips::COND_NE : return Mips::BNE;
|
||||
case Mips::COND_GZ : return Mips::BGTZ;
|
||||
@ -421,7 +422,7 @@ unsigned Mips::GetCondBranchFromCond(Mips::CondCode CC)
|
||||
Mips::CondCode Mips::GetOppositeBranchCondition(Mips::CondCode CC)
|
||||
{
|
||||
switch (CC) {
|
||||
default: assert(0 && "Illegal condition code!");
|
||||
default: LLVM_UNREACHABLE("Illegal condition code!");
|
||||
case Mips::COND_E : return Mips::COND_NE;
|
||||
case Mips::COND_NE : return Mips::COND_E;
|
||||
case Mips::COND_GZ : return Mips::COND_LEZ;
|
||||
|
@ -15,6 +15,7 @@
|
||||
#define MIPSINSTRUCTIONINFO_H
|
||||
|
||||
#include "Mips.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Target/TargetInstrInfo.h"
|
||||
#include "MipsRegisterInfo.h"
|
||||
|
||||
@ -92,7 +93,7 @@ namespace Mips {
|
||||
inline static const char *MipsFCCToString(Mips::CondCode CC)
|
||||
{
|
||||
switch (CC) {
|
||||
default: assert(0 && "Unknown condition code");
|
||||
default: LLVM_UNREACHABLE("Unknown condition code");
|
||||
case FCOND_F:
|
||||
case FCOND_T: return "f";
|
||||
case FCOND_UN:
|
||||
|
@ -31,6 +31,7 @@
|
||||
#include "llvm/Target/TargetInstrInfo.h"
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/ADT/BitVector.h"
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
|
||||
@ -79,7 +80,7 @@ getRegisterNumbering(unsigned RegEnum)
|
||||
case Mips::SP : case Mips::F29: return 29;
|
||||
case Mips::FP : case Mips::F30: case Mips::D15: return 30;
|
||||
case Mips::RA : case Mips::F31: return 31;
|
||||
default: assert(0 && "Unknown register number!");
|
||||
default: LLVM_UNREACHABLE("Unknown register number!");
|
||||
}
|
||||
return 0; // Not reached
|
||||
}
|
||||
@ -515,19 +516,19 @@ getFrameRegister(MachineFunction &MF) const {
|
||||
|
||||
unsigned MipsRegisterInfo::
|
||||
getEHExceptionRegister() const {
|
||||
assert(0 && "What is the exception register");
|
||||
LLVM_UNREACHABLE("What is the exception register");
|
||||
return 0;
|
||||
}
|
||||
|
||||
unsigned MipsRegisterInfo::
|
||||
getEHHandlerRegister() const {
|
||||
assert(0 && "What is the exception handler register");
|
||||
LLVM_UNREACHABLE("What is the exception handler register");
|
||||
return 0;
|
||||
}
|
||||
|
||||
int MipsRegisterInfo::
|
||||
getDwarfRegNum(unsigned RegNum, bool isEH) const {
|
||||
assert(0 && "What is the dwarf register number");
|
||||
LLVM_UNREACHABLE("What is the dwarf register number");
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -15,6 +15,7 @@
|
||||
#ifndef LLVM_TARGET_PIC16_H
|
||||
#define LLVM_TARGET_PIC16_H
|
||||
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include <iosfwd>
|
||||
#include <cassert>
|
||||
@ -307,7 +308,7 @@ namespace PIC16CC {
|
||||
|
||||
inline static const char *PIC16CondCodeToString(PIC16CC::CondCodes CC) {
|
||||
switch (CC) {
|
||||
default: assert(0 && "Unknown condition code");
|
||||
default: LLVM_UNREACHABLE("Unknown condition code");
|
||||
case PIC16CC::NE: return "ne";
|
||||
case PIC16CC::EQ: return "eq";
|
||||
case PIC16CC::LT: return "lt";
|
||||
@ -323,7 +324,7 @@ namespace PIC16CC {
|
||||
|
||||
inline static bool isSignedComparison(PIC16CC::CondCodes CC) {
|
||||
switch (CC) {
|
||||
default: assert(0 && "Unknown condition code");
|
||||
default: LLVM_UNREACHABLE("Unknown condition code");
|
||||
case PIC16CC::NE:
|
||||
case PIC16CC::EQ:
|
||||
case PIC16CC::LT:
|
||||
|
@ -21,6 +21,7 @@
|
||||
#include "llvm/CodeGen/MachineFrameInfo.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
#include "llvm/Support/Mangler.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/CodeGen/DwarfWriter.h"
|
||||
#include "llvm/CodeGen/MachineModuleInfo.h"
|
||||
|
||||
@ -127,8 +128,8 @@ void PIC16AsmPrinter::printOperand(const MachineInstr *MI, int opNum) {
|
||||
if (TargetRegisterInfo::isPhysicalRegister(MO.getReg()))
|
||||
O << TM.getRegisterInfo()->get(MO.getReg()).AsmName;
|
||||
else
|
||||
assert(0 && "not implemented");
|
||||
return;
|
||||
LLVM_UNREACHABLE("not implemented");
|
||||
return;
|
||||
|
||||
case MachineOperand::MO_Immediate:
|
||||
O << (int)MO.getImm();
|
||||
@ -154,7 +155,7 @@ void PIC16AsmPrinter::printOperand(const MachineInstr *MI, int opNum) {
|
||||
return;
|
||||
|
||||
default:
|
||||
assert(0 && " Operand type not supported.");
|
||||
LLVM_UNREACHABLE(" Operand type not supported.");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1697,7 +1697,7 @@ SDValue PIC16TargetLowering::PerformDAGCombine(SDNode *N,
|
||||
|
||||
static PIC16CC::CondCodes IntCCToPIC16CC(ISD::CondCode CC) {
|
||||
switch (CC) {
|
||||
default: assert(0 && "Unknown condition code!");
|
||||
default: LLVM_UNREACHABLE("Unknown condition code!");
|
||||
case ISD::SETNE: return PIC16CC::NE;
|
||||
case ISD::SETEQ: return PIC16CC::EQ;
|
||||
case ISD::SETGT: return PIC16CC::GT;
|
||||
|
@ -20,6 +20,7 @@
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
||||
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include <cstdio>
|
||||
|
||||
|
||||
@ -104,7 +105,7 @@ void PIC16InstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB,
|
||||
.addImm(1); // Emit banksel for it.
|
||||
}
|
||||
else
|
||||
assert(0 && "Can't store this register to stack slot");
|
||||
LLVM_UNREACHABLE("Can't store this register to stack slot");
|
||||
}
|
||||
|
||||
void PIC16InstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB,
|
||||
@ -144,7 +145,7 @@ void PIC16InstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB,
|
||||
.addImm(1); // Emit banksel for it.
|
||||
}
|
||||
else
|
||||
assert(0 && "Can't load this register from stack slot");
|
||||
LLVM_UNREACHABLE("Can't load this register from stack slot");
|
||||
}
|
||||
|
||||
bool PIC16InstrInfo::copyRegToReg (MachineBasicBlock &MBB,
|
||||
|
@ -16,7 +16,7 @@
|
||||
#include "PIC16.h"
|
||||
#include "PIC16RegisterInfo.h"
|
||||
#include "llvm/ADT/BitVector.h"
|
||||
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
@ -65,17 +65,17 @@ emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const
|
||||
|
||||
int PIC16RegisterInfo::
|
||||
getDwarfRegNum(unsigned RegNum, bool isEH) const {
|
||||
assert(0 && "Not keeping track of debug information yet!!");
|
||||
LLVM_UNREACHABLE("Not keeping track of debug information yet!!");
|
||||
return -1;
|
||||
}
|
||||
|
||||
unsigned PIC16RegisterInfo::getFrameRegister(MachineFunction &MF) const {
|
||||
assert(0 && "PIC16 Does not have any frame register");
|
||||
LLVM_UNREACHABLE("PIC16 Does not have any frame register");
|
||||
return 0;
|
||||
}
|
||||
|
||||
unsigned PIC16RegisterInfo::getRARegister() const {
|
||||
assert(0 && "PIC16 Does not have any return address register");
|
||||
LLVM_UNREACHABLE("PIC16 Does not have any return address register");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user