2011-05-03 22:09:39 +00:00
|
|
|
//===-- OptionGroupUInt64.cpp ----------------------------------*- C++ -*-===//
|
|
|
|
|
//
|
2019-01-19 08:50:56 +00:00
|
|
|
// 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
|
2011-05-03 22:09:39 +00:00
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
2011-05-13 20:21:08 +00:00
|
|
|
#include "lldb/Interpreter/OptionGroupUInt64.h"
|
2011-05-03 22:09:39 +00:00
|
|
|
|
2017-03-22 23:33:16 +00:00
|
|
|
#include "lldb/Host/OptionParser.h"
|
2011-05-03 22:09:39 +00:00
|
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
|
|
OptionGroupUInt64::OptionGroupUInt64(uint32_t usage_mask, bool required,
|
|
|
|
|
const char *long_option, int short_option,
|
|
|
|
|
uint32_t completion_type,
|
|
|
|
|
lldb::CommandArgumentType argument_type,
|
|
|
|
|
const char *usage_text,
|
|
|
|
|
uint64_t default_value)
|
|
|
|
|
: m_value(default_value, default_value) {
|
|
|
|
|
m_option_definition.usage_mask = usage_mask;
|
|
|
|
|
m_option_definition.required = required;
|
|
|
|
|
m_option_definition.long_option = long_option;
|
|
|
|
|
m_option_definition.short_option = short_option;
|
2014-07-09 16:32:07 +00:00
|
|
|
m_option_definition.validator = nullptr;
|
2013-09-05 16:42:23 +00:00
|
|
|
m_option_definition.option_has_arg = OptionParser::eRequiredArgument;
|
2018-09-26 18:50:19 +00:00
|
|
|
m_option_definition.enum_values = {};
|
2011-05-03 22:09:39 +00:00
|
|
|
m_option_definition.completion_type = completion_type;
|
|
|
|
|
m_option_definition.argument_type = argument_type;
|
|
|
|
|
m_option_definition.usage_text = usage_text;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
OptionGroupUInt64::~OptionGroupUInt64() {}
|
|
|
|
|
|
2017-05-12 04:51:55 +00:00
|
|
|
Status OptionGroupUInt64::SetOptionValue(uint32_t option_idx,
|
|
|
|
|
llvm::StringRef option_arg,
|
|
|
|
|
ExecutionContext *execution_context) {
|
|
|
|
|
Status error(m_value.SetValueFromString(option_arg));
|
2011-05-03 22:09:39 +00:00
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-11 23:51:28 +00:00
|
|
|
void OptionGroupUInt64::OptionParsingStarting(
|
|
|
|
|
ExecutionContext *execution_context) {
|
2011-05-03 22:09:39 +00:00
|
|
|
m_value.Clear();
|
|
|
|
|
}
|