mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
f955a6ef49
This adds location info for all llvm_unreachable calls (which is a macro now) in !NDEBUG builds. In NDEBUG builds location info and the message is off (it only prints "UREACHABLE executed"). llvm-svn: 75640
32 lines
1.0 KiB
C++
32 lines
1.0 KiB
C++
//===-- PPCPredicates.cpp - PPC Branch Predicate Information --------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file implements the PowerPC branch predicates.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "PPCPredicates.h"
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
#include <cassert>
|
|
using namespace llvm;
|
|
|
|
PPC::Predicate PPC::InvertPredicate(PPC::Predicate Opcode) {
|
|
switch (Opcode) {
|
|
default: llvm_unreachable("Unknown PPC branch opcode!");
|
|
case PPC::PRED_EQ: return PPC::PRED_NE;
|
|
case PPC::PRED_NE: return PPC::PRED_EQ;
|
|
case PPC::PRED_LT: return PPC::PRED_GE;
|
|
case PPC::PRED_GE: return PPC::PRED_LT;
|
|
case PPC::PRED_GT: return PPC::PRED_LE;
|
|
case PPC::PRED_LE: return PPC::PRED_GT;
|
|
case PPC::PRED_NU: return PPC::PRED_UN;
|
|
case PPC::PRED_UN: return PPC::PRED_NU;
|
|
}
|
|
}
|