From: Roman Divacky Date: Tue, 2 Dec 2014 20:03:22 +0000 (+0000) Subject: Introduce CPUStringIsValid() into MCSubtargetInfo and use it for ARM .cpu parsing. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7e6b5955d4951954b8b9108935e8badcf5421363;p=platform%2Fupstream%2Fllvm.git Introduce CPUStringIsValid() into MCSubtargetInfo and use it for ARM .cpu parsing. Previously .cpu directive in ARM assembler didnt switch to the new CPU and therefore acted as a nop. This implemented real action for .cpu and eg. allows to assembler FreeBSD kernel with -integrated-as. llvm-svn: 223147 --- diff --git a/llvm/include/llvm/MC/MCSubtargetInfo.h b/llvm/include/llvm/MC/MCSubtargetInfo.h index 9d09bd8..dba9570 100644 --- a/llvm/include/llvm/MC/MCSubtargetInfo.h +++ b/llvm/include/llvm/MC/MCSubtargetInfo.h @@ -136,6 +136,15 @@ public: /// Initialize an InstrItineraryData instance. void initInstrItins(InstrItineraryData &InstrItins) const; + + /// Check whether the CPU string is valid. + bool CPUStringIsValid(StringRef CPU) { + auto Found = std::find_if(ProcDesc.begin(), ProcDesc.end(), + [=](const SubtargetFeatureKV &KV) { + return CPU == KV.Key; + }); + return Found != ProcDesc.end(); + } }; } // End llvm namespace diff --git a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index 5e91a19..6e7a27a 100644 --- a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp +++ b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp @@ -9083,6 +9083,17 @@ bool ARMAsmParser::parseDirectiveEabiAttr(SMLoc L) { bool ARMAsmParser::parseDirectiveCPU(SMLoc L) { StringRef CPU = getParser().parseStringToEndOfStatement().trim(); getTargetStreamer().emitTextAttribute(ARMBuildAttrs::CPU_name, CPU); + + if (!STI.CPUStringIsValid(CPU)) { + Error(L, "Unknown CPU name"); + return false; + } + + STI.InitMCProcessorInfo(CPU, ""); + STI.InitCPUSchedModel(CPU); + unsigned FB = ComputeAvailableFeatures(STI.getFeatureBits()); + setAvailableFeatures(FB); + return false; } diff --git a/llvm/test/MC/ARM/cpu-test.s b/llvm/test/MC/ARM/cpu-test.s new file mode 100644 index 0000000..766e454 --- /dev/null +++ b/llvm/test/MC/ARM/cpu-test.s @@ -0,0 +1,13 @@ +// RUN: not llvm-mc -o - -triple arm-gnueabi-freebsd11.0 < %s > %t 2> %t2 +// RUN: FileCheck %s < %t +// RUN: FileCheck %s --check-prefix=CHECK-ERROR < %t2 + +// CHECK: .cpu cortex-a8 +.cpu cortex-a8 +// CHECK: dsb sy +dsb +.cpu arm9 +// CHECK-ERROR: error: instruction requires: data-barriers +dsb +// CHECK-ERROR: error: Unknown CPU name +.cpu foobar