Home
last modified time | relevance | path

Searched refs:NumOpts (Results 1 – 3 of 3) sorted by relevance

/external/llvm/include/llvm/CodeGen/
DRegAllocPBQP.h84 AllowedRegVector() : NumOpts(0), Opts(nullptr) {} in AllowedRegVector()
87 : NumOpts(OptVec.size()), Opts(new unsigned[NumOpts]) { in AllowedRegVector()
92 : NumOpts(Other.NumOpts), Opts(new unsigned[NumOpts]) { in AllowedRegVector()
93 std::copy(Other.Opts.get(), Other.Opts.get() + NumOpts, Opts.get()); in AllowedRegVector()
97 : NumOpts(std::move(Other.NumOpts)), Opts(std::move(Other.Opts)) {} in AllowedRegVector()
100 NumOpts = Other.NumOpts;
101 Opts.reset(new unsigned[NumOpts]);
102 std::copy(Other.Opts.get(), Other.Opts.get() + NumOpts, Opts.get());
107 NumOpts = std::move(Other.NumOpts);
112 unsigned size() const { return NumOpts; } in size()
[all …]
/external/llvm/tools/gold/
Dgold-plugin.cpp754 if (unsigned NumOpts = options::extra.size()) in codegen() local
755 cl::ParseCommandLineOptions(NumOpts, &options::extra[0]); in codegen()
/external/llvm/lib/Support/
DCommandLine.cpp1388 unsigned NumOpts = getNumOptions(); in printGenericOptionDiff() local
1389 for (unsigned i = 0; i != NumOpts; ++i) { in printGenericOptionDiff()
1397 for (unsigned j = 0; j != NumOpts; ++j) { in printGenericOptionDiff()