[llvm] [LLVM][Option] Refactor option name comparison (PR #108219)
Rahul Joshi via llvm-commits
llvm-commits at lists.llvm.org
Fri Sep 13 09:27:04 PDT 2024
================
@@ -0,0 +1,51 @@
+//===- OptStrCmp.h - Option String Comparison -------------------*- C++ -*-===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_OPTION_OPTSTRCMP_H
+#define LLVM_OPTION_OPTSTRCMP_H
+
+#include "llvm/ADT/STLExtras.h"
+#include "llvm/ADT/StringRef.h"
+
+namespace llvm::opt {
+
+// Comparison function for Option strings (option names & prefixes).
+// The ordering is *almost* case-insensitive lexicographic, with an exception.
+// '\0' comes at the end of the alphabet instead of the beginning (thus options
+// precede any other options which prefix them). Additionally, if two options
+// are identical ignoring case, they are ordered according to case sensitive
+// ordering if `FallbackCaseSensitive` is true.
+static int StrCmpOptionName(StringRef A, StringRef B,
----------------
jurahul wrote:
Right, looks like I undid it by mistake :( I do agree though that moving to CPP is the right thing here and I did try it out yestdrday. I do have a question about that. If I just do the simple thing and move it to `LLVMOption` component, I'd have to link in stuff into TableGen that it does not need today (from LLVMOption). If I make it a separate component, I'd have to use PARTIAL_SOURCES_INTENDED, which the build says is not recommended. So I guess I'd move it to a new directory under Options (so llvm/include/Option/OptionStrCmp/OptionStrCmp.h and llvm/lib/Option/OptionStrCmp/OptionStrCmp.cpp). Does that sound ok, or we just link LLVMOption into llvm-tablegen directly?
https://github.com/llvm/llvm-project/pull/108219
More information about the llvm-commits
mailing list