[PATCH] D158400: change code
lei kang via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 21 02:28:49 PDT 2023
leikang123 updated this revision to Diff 551943.
leikang123 added a comment.
[NFC][llvm]
add xtensa.h head file code
define xtensa.td file,not define xtensa.h head file code.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D158400/new/
https://reviews.llvm.org/D158400
Files:
llvm/lib/Target/Xtensa/Xtensa.h
llvm/lib/Target/Xtensa/Xtensa.td
Index: llvm/lib/Target/Xtensa/Xtensa.td
===================================================================
--- llvm/lib/Target/Xtensa/Xtensa.td
+++ llvm/lib/Target/Xtensa/Xtensa.td
@@ -0,0 +1,62 @@
+//===- Xtensa.td - Describe the Xtensa Target Machine ------*- tablegen -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+//===----------------------------------------------------------------------===//
+// Target-independent interfaces
+//===----------------------------------------------------------------------===//
+
+include "llvm/Target/Target.td"
+
+//===----------------------------------------------------------------------===//
+// xtensa Subtarget Features.
+//===----------------------------------------------------------------------===//
+def FeatureDensity : SubtargetFeature<"density", "HasDensity", "true",
+ "Enable Density instructions">;
+def HasDensity : Predicate<"Subtarget->hasDensity()">,
+ AssemblerPredicate<(all_of FeatureDensity)>;
+//===----------------------------------------------------------------------===//
+// Xtensa supported processors.
+//===----------------------------------------------------------------------===//
+class Proc<string Name, list<SubtargetFeature> Features>
+ : Processor<Name, NoItineraries, Features>;
+
+def : Proc<"generic", []>;
+
+//===----------------------------------------------------------------------===//
+// Register File Description
+//===----------------------------------------------------------------------===//
+
+include "XtensaRegisterInfo.td"
+
+//===----------------------------------------------------------------------===//
+// Instruction Descriptions
+//===----------------------------------------------------------------------===//
+
+include "XtensaInstrInfo.td"
+
+def XtensaInstrInfo : InstrInfo;
+
+//===----------------------------------------------------------------------===//
+// Target Declaration
+//===----------------------------------------------------------------------===//
+
+def XtensaAsmParser : AsmParser {
+ let ShouldEmitMatchRegisterAltName = 1;
+}
+
+def XtensaInstPrinter : AsmWriter {
+ string AsmWriterClassName = "InstPrinter";
+}
+
+def Xtensa : Target {
+ let InstructionSet = XtensaInstrInfo;
+ let AssemblyWriters = [XtensaInstPrinter];
+ let AssemblyParsers = [XtensaAsmParser];
+}
\ No newline at end of file
Index: llvm/lib/Target/Xtensa/Xtensa.h
===================================================================
--- llvm/lib/Target/Xtensa/Xtensa.h
+++ llvm/lib/Target/Xtensa/Xtensa.h
@@ -21,6 +21,5 @@
class XtensaTargetMachine;
class FunctionPass;
}
-
#define ENABLE_GPRESTORE
#endif
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D158400.551943.patch
Type: text/x-patch
Size: 2982 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230821/9b7b738c/attachment.bin>
More information about the llvm-commits
mailing list