mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
Revert r151623 "Some ARM implementaions, e.g. A-series, does return stack prediction. ...", it is breaking the Clang build during the Compiler-RT part.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151630 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -89,11 +89,6 @@ def FeatureAvoidPartialCPSR : SubtargetFeature<"avoid-partial-cpsr",
|
||||
"AvoidCPSRPartialUpdate", "true",
|
||||
"Avoid CPSR partial update for OOO execution">;
|
||||
|
||||
// Some processors perform return stack prediction. CodeGen should avoid issue
|
||||
// "normal" call instructions to callees which do not return.
|
||||
def FeatureHasRAS : SubtargetFeature<"ras", "HasRAS", "true",
|
||||
"Has return address stack">;
|
||||
|
||||
/// Some M architectures don't have the DSP extension (v7E-M vs. v7M)
|
||||
def FeatureDSPThumb2 : SubtargetFeature<"t2dsp", "Thumb2DSP", "true",
|
||||
"Supports v7 DSP instructions in Thumb2">;
|
||||
@@ -209,14 +204,13 @@ def : Processor<"arm1156t2f-s", ARMV6Itineraries, [HasV6T2Ops, FeatureVFP2,
|
||||
// V7a Processors.
|
||||
def : Processor<"cortex-a8", CortexA8Itineraries,
|
||||
[ProcA8, HasV7Ops, FeatureNEON, FeatureDB,
|
||||
FeatureDSPThumb2, FeatureHasRAS]>;
|
||||
FeatureDSPThumb2]>;
|
||||
def : Processor<"cortex-a9", CortexA9Itineraries,
|
||||
[ProcA9, HasV7Ops, FeatureNEON, FeatureDB,
|
||||
FeatureDSPThumb2, FeatureHasRAS]>;
|
||||
FeatureDSPThumb2]>;
|
||||
def : Processor<"cortex-a9-mp", CortexA9Itineraries,
|
||||
[ProcA9, HasV7Ops, FeatureNEON, FeatureDB,
|
||||
FeatureDSPThumb2, FeatureMP,
|
||||
FeatureHasRAS]>;
|
||||
FeatureDSPThumb2, FeatureMP]>;
|
||||
|
||||
// V7M Processors.
|
||||
def : ProcNoItin<"cortex-m3", [HasV7Ops,
|
||||
|
Reference in New Issue
Block a user