[Mlir-commits] [mlir] [MLIR] Add support for frame pointers in MLIR (PR #72145)

Mehdi Amini llvmlistbot at llvm.org
Fri Nov 24 02:43:51 PST 2023


================
@@ -47,6 +47,15 @@ def LinkageAttr : LLVM_Attr<"Linkage", "linkage"> {
   let assemblyFormat = "`<` $linkage `>`";
 }
 
+//===----------------------------------------------------------------------===//
+// FramePointerKindAttr
+//===----------------------------------------------------------------------===//
+
+def FramePointerKindAttr : LLVM_Attr<"FramePointerKind", ""> {
+  let parameters = (ins "framePointerKind::FramePointerKind":$framePointerKind);
+  let assemblyFormat = "$framePointerKind";
----------------
joker-eph wrote:

I would rather not mix inherent attribute with discardable attributes. But that's not gonna be automatic: you need to modify LLVMFuncOp::print() / LLVMFuncOp::parse() implementations.

https://github.com/llvm/llvm-project/pull/72145


More information about the Mlir-commits mailing list