mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-06 15:21:37 +00:00

This should be all the low-level instruction selection needs to determine how to implement an operation, with the remaining context taken from the opcode (e.g. G_ADD vs G_FADD) or other flags not based on type (e.g. fast-math). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@276158 91177308-0d34-0410-b5e6-96231b3b80d8
47 lines
1.4 KiB
C++
47 lines
1.4 KiB
C++
//===-- llvm/CodeGen/GlobalISel/LowLevelType.cpp --------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
/// \file This file implements the more header-heavy bits of the LLT class to
|
|
/// avoid polluting users' namespaces.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/CodeGen/LowLevelType.h"
|
|
#include "llvm/IR/DerivedTypes.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
using namespace llvm;
|
|
|
|
LLT::LLT(const Type &Ty) {
|
|
if (auto VTy = dyn_cast<VectorType>(&Ty)) {
|
|
ScalarSize = VTy->getElementType()->getPrimitiveSizeInBits();
|
|
NumElements = VTy->getNumElements();
|
|
Kind = NumElements == 1 ? Scalar : Vector;
|
|
} else if (Ty.isSized()) {
|
|
// Aggregates are no different from real scalars as far as GlobalISel is
|
|
// concerned.
|
|
Kind = Scalar;
|
|
ScalarSize = Ty.getPrimitiveSizeInBits();
|
|
NumElements = 1;
|
|
} else {
|
|
Kind = Unsized;
|
|
ScalarSize = NumElements = 0;
|
|
}
|
|
}
|
|
|
|
void LLT::print(raw_ostream &OS) const {
|
|
if (isVector())
|
|
OS << "<" << NumElements << " x s" << ScalarSize << ">";
|
|
else if (isSized())
|
|
OS << "s" << ScalarSize;
|
|
else if (isValid())
|
|
OS << "unsized";
|
|
else
|
|
llvm_unreachable("trying to print an invalid type");
|
|
}
|