mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-03 14:08:57 +00:00
c23197a26f
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"). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75640 91177308-0d34-0410-b5e6-96231b3b80d8
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;
|
|
}
|
|
}
|