LLVM 20.0.0git
HotnessThresholdParser.h
Go to the documentation of this file.
1//===- HotnessThresholdParser.h - Parser for hotness threshold --*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8///
9/// \file
10/// This file implements a simple parser to decode commandline option for
11/// remarks hotness threshold that supports both int and a special 'auto' value.
12///
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_REMARKS_HOTNESSTHRESHOLDPARSER_H
16#define LLVM_REMARKS_HOTNESSTHRESHOLDPARSER_H
17
19#include "llvm/Support/Error.h"
20#include <optional>
21
22namespace llvm {
23namespace remarks {
24
25// Parse remarks hotness threshold argument value.
26// Valid option values are
27// 1. integer: manually specified threshold; or
28// 2. string 'auto': automatically get threshold from profile summary.
29//
30// Return std::nullopt Optional if 'auto' is specified, indicating the value
31// will be filled later during PSI.
33 if (Arg == "auto")
34 return std::nullopt;
35
36 int64_t Val;
37 if (Arg.getAsInteger(10, Val))
39 "Not an integer: %s", Arg.data());
40
41 // Negative integer effectively means no threshold
42 return Val < 0 ? 0 : Val;
43}
44
45// A simple CL parser for '*-remarks-hotness-threshold='
46class HotnessThresholdParser : public cl::parser<std::optional<uint64_t>> {
47public:
49
50 bool parse(cl::Option &O, StringRef ArgName, StringRef Arg,
51 std::optional<uint64_t> &V) {
52 auto ResultOrErr = parseHotnessThresholdOption(Arg);
53 if (!ResultOrErr)
54 return O.error("Invalid argument '" + Arg +
55 "', only integer or 'auto' is supported.");
56
57 V = *ResultOrErr;
58 return false;
59 }
60};
61
62} // namespace remarks
63} // namespace llvm
64#endif // LLVM_REMARKS_HOTNESSTHRESHOLDPARSER_H
Tagged union holding either a T or a Error.
Definition: Error.h:481
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:51
bool getAsInteger(unsigned Radix, T &Result) const
Parse the current string as an integer of the specified radix.
Definition: StringRef.h:470
constexpr const char * data() const
data - Get a pointer to the start of the string (which may not be null terminated).
Definition: StringRef.h:144
bool parse(cl::Option &O, StringRef ArgName, StringRef Arg, std::optional< uint64_t > &V)
Expected< std::optional< uint64_t > > parseHotnessThresholdOption(StringRef Arg)
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
std::error_code inconvertibleErrorCode()
The value returned by this function can be returned from convertToErrorCode for Error values where no...
Definition: Error.cpp:98
Error createStringError(std::error_code EC, char const *Fmt, const Ts &... Vals)
Create formatted StringError object.
Definition: Error.h:1291
Implement std::hash so that hash_code can be used in STL containers.
Definition: BitVector.h:858