[llvm] [Xtensa] Implement SEXT, NSA, MINMAX and Loop Xtensa Options. (PR #133818)

Fangrui Song via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 31 21:25:05 PDT 2025


================
@@ -105,6 +105,21 @@ void XtensaInstPrinter::printBranchTarget(const MCInst *MI, int OpNum,
     llvm_unreachable("Invalid operand");
 }
 
+void XtensaInstPrinter::printLoopTarget(const MCInst *MI, int OpNum,
+                                        raw_ostream &OS) {
+  const MCOperand &MC = MI->getOperand(OpNum);
+  if (MI->getOperand(OpNum).isImm()) {
+    int64_t Val = MC.getImm() + 4;
+    OS << ". ";
----------------
MaskRay wrote:

If the operand is an address, you'd need OPERAND_PCREL. See https://reviews.llvm.org/D72172

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


More information about the llvm-commits mailing list