diff options
| author | Zachary Turner <zturner@google.com> | 2016-09-22 20:22:55 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2016-09-22 20:22:55 +0000 |
| commit | 1f0f5b5b9eeaea93126583b40070091baf3bc92d (patch) | |
| tree | 93be6068ce5a7314fb9bfdf0621f65c03b3cad0b /lldb/source/Interpreter/Args.cpp | |
| parent | 387eb83a509926ed6bd36591d1f235335ec215c0 (diff) | |
| download | bcm5719-llvm-1f0f5b5b9eeaea93126583b40070091baf3bc92d.tar.gz bcm5719-llvm-1f0f5b5b9eeaea93126583b40070091baf3bc92d.zip | |
Convert option tables to ArrayRefs.
This change is very mechanical. All it does is change the
signature of `Options::GetDefinitions()` and `OptionGroup::
GetDefinitions()` to return an `ArrayRef<OptionDefinition>`
instead of a `const OptionDefinition *`. In the case of the
former, it deletes the sentinel entry from every table, and
in the case of the latter, it removes the `GetNumDefinitions()`
method from the interface. These are no longer necessary as
`ArrayRef` carries its own length.
In the former case, iteration was done by using a sentinel
entry, so there was no knowledge of length. Because of this
the individual option tables were allowed to be defined below
the corresponding class (after all, only a pointer was needed).
Now, however, the length must be known at compile time to
construct the `ArrayRef`, and as a result it is necessary to
move every option table before its corresponding class. This
results in this CL looking very big, but in terms of substance
there is not much here.
Differential revision: https://reviews.llvm.org/D24834
llvm-svn: 282188
Diffstat (limited to 'lldb/source/Interpreter/Args.cpp')
| -rw-r--r-- | lldb/source/Interpreter/Args.cpp | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/lldb/source/Interpreter/Args.cpp b/lldb/source/Interpreter/Args.cpp index 25bcac81779..6408dab5775 100644 --- a/lldb/source/Interpreter/Args.cpp +++ b/lldb/source/Interpreter/Args.cpp @@ -1256,7 +1256,7 @@ void Args::ParseArgsForCompletion(Options &options, OptionParser::EnableError(false); int val; - const OptionDefinition *opt_defs = options.GetDefinitions(); + auto opt_defs = options.GetDefinitions(); // Fooey... OptionParser::Parse permutes the GetArgumentVector to move the // options to the front. @@ -1347,13 +1347,11 @@ void Args::ParseArgsForCompletion(Options &options, // See if the option takes an argument, and see if one was supplied. if (long_options_index >= 0) { int opt_defs_index = -1; - for (int i = 0;; i++) { - if (opt_defs[i].short_option == 0) - break; - else if (opt_defs[i].short_option == val) { - opt_defs_index = i; - break; - } + for (size_t i = 0; i < opt_defs.size(); i++) { + if (opt_defs[i].short_option != val) + continue; + opt_defs_index = i; + break; } const OptionDefinition *def = long_options[long_options_index].definition; |

