mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-16 14:31:59 +00:00
Because of the EMMS problem, right now we have to support
user-defined operations that use MMX register types, but the compiler shouldn't generate them on its own. This adds a Synthesizable abstraction to represent this, and changes the vector widening computation so it won't produce MMX types. (The motivation is to remove noise from the ABI compatibility part of the gcc test suite, which has some breakage right now.) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101951 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3943084136
commit
7609017dc3
@ -172,6 +172,13 @@ public:
|
||||
return VT.isSimple() && RegClassForVT[VT.getSimpleVT().SimpleTy] != 0;
|
||||
}
|
||||
|
||||
/// isTypeSynthesizable - Return true if it's OK for the compiler to create
|
||||
/// new operations of this type. All Legal types are synthesizable except
|
||||
/// MMX vector types on X86. Non-Legal types are not synthesizable.
|
||||
bool isTypeSynthesizable(EVT VT) const {
|
||||
return isTypeLegal(VT) && Synthesizable[VT.getSimpleVT().SimpleTy];
|
||||
}
|
||||
|
||||
class ValueTypeActionImpl {
|
||||
/// ValueTypeActions - This is a bitvector that contains two bits for each
|
||||
/// value type, where the two bits correspond to the LegalizeAction enum.
|
||||
@ -967,10 +974,12 @@ protected:
|
||||
/// addRegisterClass - Add the specified register class as an available
|
||||
/// regclass for the specified value type. This indicates the selector can
|
||||
/// handle values of that class natively.
|
||||
void addRegisterClass(EVT VT, TargetRegisterClass *RC) {
|
||||
void addRegisterClass(EVT VT, TargetRegisterClass *RC,
|
||||
bool isSynthesizable = true) {
|
||||
assert((unsigned)VT.getSimpleVT().SimpleTy < array_lengthof(RegClassForVT));
|
||||
AvailableRegClasses.push_back(std::make_pair(VT, RC));
|
||||
RegClassForVT[VT.getSimpleVT().SimpleTy] = RC;
|
||||
Synthesizable[VT.getSimpleVT().SimpleTy] = isSynthesizable;
|
||||
}
|
||||
|
||||
/// computeRegisterProperties - Once all of the register classes are added,
|
||||
@ -1629,6 +1638,11 @@ private:
|
||||
unsigned char NumRegistersForVT[MVT::LAST_VALUETYPE];
|
||||
EVT RegisterTypeForVT[MVT::LAST_VALUETYPE];
|
||||
|
||||
/// Synthesizable indicates whether it is OK for the compiler to create new
|
||||
/// operations using this type. All Legal types are Synthesizable except
|
||||
/// MMX types on X86. Non-Legal types are not Synthesizable.
|
||||
bool Synthesizable[MVT::LAST_VALUETYPE];
|
||||
|
||||
/// TransformToType - For any value types we are promoting or expanding, this
|
||||
/// contains the value type that we are changing to. For Expanded types, this
|
||||
/// contains one step of the expand (e.g. i64 -> i32), even if there are
|
||||
|
@ -720,7 +720,7 @@ void TargetLowering::computeRegisterProperties() {
|
||||
unsigned NElts = VT.getVectorNumElements();
|
||||
for (unsigned nVT = i+1; nVT <= MVT::LAST_VECTOR_VALUETYPE; ++nVT) {
|
||||
EVT SVT = (MVT::SimpleValueType)nVT;
|
||||
if (isTypeLegal(SVT) && SVT.getVectorElementType() == EltVT &&
|
||||
if (isTypeSynthesizable(SVT) && SVT.getVectorElementType() == EltVT &&
|
||||
SVT.getVectorNumElements() > NElts && NElts != 1) {
|
||||
TransformToType[i] = SVT;
|
||||
ValueTypeActions.setTypeAction(VT, Promote);
|
||||
|
@ -626,11 +626,11 @@ X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
|
||||
// FIXME: In order to prevent SSE instructions being expanded to MMX ones
|
||||
// with -msoft-float, disable use of MMX as well.
|
||||
if (!UseSoftFloat && !DisableMMX && Subtarget->hasMMX()) {
|
||||
addRegisterClass(MVT::v8i8, X86::VR64RegisterClass);
|
||||
addRegisterClass(MVT::v4i16, X86::VR64RegisterClass);
|
||||
addRegisterClass(MVT::v2i32, X86::VR64RegisterClass);
|
||||
addRegisterClass(MVT::v2f32, X86::VR64RegisterClass);
|
||||
addRegisterClass(MVT::v1i64, X86::VR64RegisterClass);
|
||||
addRegisterClass(MVT::v8i8, X86::VR64RegisterClass, false);
|
||||
addRegisterClass(MVT::v4i16, X86::VR64RegisterClass, false);
|
||||
addRegisterClass(MVT::v2i32, X86::VR64RegisterClass, false);
|
||||
addRegisterClass(MVT::v2f32, X86::VR64RegisterClass, false);
|
||||
addRegisterClass(MVT::v1i64, X86::VR64RegisterClass, false);
|
||||
|
||||
setOperationAction(ISD::ADD, MVT::v8i8, Legal);
|
||||
setOperationAction(ISD::ADD, MVT::v4i16, Legal);
|
||||
|
Loading…
x
Reference in New Issue
Block a user