mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-04 22:31:44 +00:00

This reverts r300535 and r300537. The newly added tests in test/CodeGen/AArch64/GlobalISel/arm64-fallback.ll produces slightly different code between LLVM versions being built with different compilers. E.g., dependent on the compiler LLVM is built with, either one of the following can be produced: remark: <unknown>:0:0: unable to legalize instruction: %vreg0<def>(p0) = G_EXTRACT_VECTOR_ELT %vreg1, %vreg2; (in function: vector_of_pointers_extractelement) remark: <unknown>:0:0: unable to legalize instruction: %vreg2<def>(p0) = G_EXTRACT_VECTOR_ELT %vreg1, %vreg0; (in function: vector_of_pointers_extractelement) Non-determinism like this is clearly a bad thing, so reverting this until I can find and fix the root cause of the non-determinism. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@300538 91177308-0d34-0410-b5e6-96231b3b80d8
39 lines
1.4 KiB
C++
39 lines
1.4 KiB
C++
//===-- llvm/CodeGen/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/DataLayout.h"
|
|
#include "llvm/IR/DerivedTypes.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
using namespace llvm;
|
|
|
|
LLT llvm::getLLTForType(Type &Ty, const DataLayout &DL) {
|
|
if (auto VTy = dyn_cast<VectorType>(&Ty)) {
|
|
auto NumElements = VTy->getNumElements();
|
|
auto ScalarSizeInBits = VTy->getElementType()->getPrimitiveSizeInBits();
|
|
if (NumElements == 1)
|
|
return LLT::scalar(ScalarSizeInBits);
|
|
return LLT::vector(NumElements, ScalarSizeInBits);
|
|
} else if (auto PTy = dyn_cast<PointerType>(&Ty)) {
|
|
return LLT::pointer(PTy->getAddressSpace(), DL.getTypeSizeInBits(&Ty));
|
|
} else if (Ty.isSized()) {
|
|
// Aggregates are no different from real scalars as far as GlobalISel is
|
|
// concerned.
|
|
auto SizeInBits = DL.getTypeSizeInBits(&Ty);
|
|
assert(SizeInBits != 0 && "invalid zero-sized type");
|
|
return LLT::scalar(SizeInBits);
|
|
}
|
|
return LLT();
|
|
}
|