More flexible TargetLowering LSR hooks for testing whether an immediate is

a legal target address immediate or scale.

llvm-svn: 35073
This commit is contained in:
Evan Cheng 2007-03-12 23:28:50 +00:00
parent 720acdfb31
commit 3ab7ea7965
2 changed files with 33 additions and 16 deletions

View File

@ -64,16 +64,6 @@ X86TargetLowering::X86TargetLowering(TargetMachine &TM)
setUseUnderscoreLongJmp(true); setUseUnderscoreLongJmp(true);
} }
// Add legal addressing mode scale values.
addLegalAddressScale(8);
addLegalAddressScale(4);
addLegalAddressScale(2);
// Enter the ones which require both scale + index last. These are more
// expensive.
addLegalAddressScale(9);
addLegalAddressScale(5);
addLegalAddressScale(3);
// Set up the register classes. // Set up the register classes.
addRegisterClass(MVT::i8, X86::GR8RegisterClass); addRegisterClass(MVT::i8, X86::GR8RegisterClass);
addRegisterClass(MVT::i16, X86::GR16RegisterClass); addRegisterClass(MVT::i16, X86::GR16RegisterClass);
@ -4016,13 +4006,16 @@ const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
} }
} }
/// isLegalAddressImmediate - Return true if the integer value or /// isLegalAddressImmediate - Return true if the integer value can be used
/// GlobalValue can be used as the offset of the target addressing mode. /// as the offset of the target addressing mode for load / store of the
bool X86TargetLowering::isLegalAddressImmediate(int64_t V) const { /// given type.
bool X86TargetLowering::isLegalAddressImmediate(int64_t V,const Type *Ty) const{
// X86 allows a sign-extended 32-bit immediate field. // X86 allows a sign-extended 32-bit immediate field.
return (V > -(1LL << 32) && V < (1LL << 32)-1); return (V > -(1LL << 32) && V < (1LL << 32)-1);
} }
/// isLegalAddressImmediate - Return true if the GlobalValue can be used as
/// the offset of the target addressing mode.
bool X86TargetLowering::isLegalAddressImmediate(GlobalValue *GV) const { bool X86TargetLowering::isLegalAddressImmediate(GlobalValue *GV) const {
// In 64-bit mode, GV is 64-bit so it won't fit in the 32-bit displacement // In 64-bit mode, GV is 64-bit so it won't fit in the 32-bit displacement
// field unless we are in small code model. // field unless we are in small code model.
@ -4033,6 +4026,21 @@ bool X86TargetLowering::isLegalAddressImmediate(GlobalValue *GV) const {
return (!Subtarget->GVRequiresExtraLoad(GV, getTargetMachine(), false)); return (!Subtarget->GVRequiresExtraLoad(GV, getTargetMachine(), false));
} }
/// isLegalAddressScale - Return true if the integer value can be used as the
/// scale of the target addressing mode for load / store of the given type.
bool X86TargetLowering::isLegalAddressScale(int64_t S, const Type *Ty) const {
switch (S) {
default:
return false;
case 2: case 4: case 8:
return true;
// FIXME: These require both scale + index last and thus more expensive.
// How to tell LSR to try for 2, 4, 8 first?
case 3: case 5: case 9:
return true;
}
}
/// isShuffleMaskLegal - Targets can use this to indicate that they only /// isShuffleMaskLegal - Targets can use this to indicate that they only
/// support *some* VECTOR_SHUFFLE operations, those with specific masks. /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values

View File

@ -335,11 +335,20 @@ namespace llvm {
getRegForInlineAsmConstraint(const std::string &Constraint, getRegForInlineAsmConstraint(const std::string &Constraint,
MVT::ValueType VT) const; MVT::ValueType VT) const;
/// isLegalAddressImmediate - Return true if the integer value or /// isLegalAddressImmediate - Return true if the integer value can be used
/// GlobalValue can be used as the offset of the target addressing mode. /// as the offset of the target addressing mode for load / store of the
virtual bool isLegalAddressImmediate(int64_t V) const; /// given type.
virtual bool isLegalAddressImmediate(int64_t V, const Type *Ty) const;
/// isLegalAddressImmediate - Return true if the GlobalValue can be used as
/// the offset of the target addressing mode.
virtual bool isLegalAddressImmediate(GlobalValue *GV) const; virtual bool isLegalAddressImmediate(GlobalValue *GV) const;
/// isLegalAddressScale - Return true if the integer value can be used as
/// the scale of the target addressing mode for load / store of the given
/// type.
virtual bool isLegalAddressScale(int64_t S, const Type *Ty) const;
/// isShuffleMaskLegal - Targets can use this to indicate that they only /// isShuffleMaskLegal - Targets can use this to indicate that they only
/// support *some* VECTOR_SHUFFLE operations, those with specific masks. /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
/// By default, if a target supports the VECTOR_SHUFFLE node, all mask /// By default, if a target supports the VECTOR_SHUFFLE node, all mask