Searched refs:NumOpts (Results 1 – 9 of 9) sorted by relevance
/external/llvm/include/llvm/CodeGen/ |
D | RegAllocPBQP.h | 85 AllowedRegVector() : NumOpts(0), Opts(nullptr) {} in AllowedRegVector() 88 : NumOpts(OptVec.size()), Opts(new unsigned[NumOpts]) { in AllowedRegVector() 93 : NumOpts(Other.NumOpts), Opts(new unsigned[NumOpts]) { in AllowedRegVector() 94 std::copy(Other.Opts.get(), Other.Opts.get() + NumOpts, Opts.get()); in AllowedRegVector() 98 : NumOpts(std::move(Other.NumOpts)), Opts(std::move(Other.Opts)) {} in AllowedRegVector() 101 NumOpts = Other.NumOpts; 102 Opts.reset(new unsigned[NumOpts]); 103 std::copy(Other.Opts.get(), Other.Opts.get() + NumOpts, Opts.get()); 108 NumOpts = std::move(Other.NumOpts); 113 unsigned size() const { return NumOpts; } in size() [all …]
|
/external/llvm-project/llvm/include/llvm/CodeGen/ |
D | RegAllocPBQP.h | 102 : NumOpts(OptVec.size()), Opts(new MCRegister[NumOpts]) { in AllowedRegVector() 106 unsigned size() const { return NumOpts; } in size() 110 if (NumOpts != Other.NumOpts) 112 return std::equal(Opts.get(), Opts.get() + NumOpts, Other.Opts.get()); 120 unsigned NumOpts = 0; 126 MCRegister *OEnd = OptRegs.Opts.get() + OptRegs.NumOpts; in hash_value() 127 return hash_combine(OptRegs.NumOpts, in hash_value() 186 : RS(Other.RS), NumOpts(Other.NumOpts), DeniedOpts(Other.DeniedOpts), in NodeMetadata() 187 OptUnsafeEdges(new unsigned[NumOpts]), VReg(Other.VReg), in NodeMetadata() 193 if (NumOpts > 0) { in NodeMetadata() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | RegAllocPBQP.h | 100 : NumOpts(OptVec.size()), Opts(new unsigned[NumOpts]) { in AllowedRegVector() 104 unsigned size() const { return NumOpts; } in size() 108 if (NumOpts != Other.NumOpts) 110 return std::equal(Opts.get(), Opts.get() + NumOpts, Other.Opts.get()); 118 unsigned NumOpts = 0; 124 unsigned *OEnd = OptRegs.Opts.get() + OptRegs.NumOpts; in hash_value() 125 return hash_combine(OptRegs.NumOpts, in hash_value() 184 : RS(Other.RS), NumOpts(Other.NumOpts), DeniedOpts(Other.DeniedOpts), in NodeMetadata() 185 OptUnsafeEdges(new unsigned[NumOpts]), VReg(Other.VReg), in NodeMetadata() 191 if (NumOpts > 0) { in NodeMetadata() [all …]
|
/external/llvm-project/llvm/tools/gold/ |
D | gold-plugin.cpp | 1109 if (unsigned NumOpts = options::extra.size()) in allSymbolsReadHook() local 1110 cl::ParseCommandLineOptions(NumOpts, &options::extra[0]); in allSymbolsReadHook()
|
/external/llvm/lib/Support/ |
D | CommandLine.cpp | 1593 unsigned NumOpts = getNumOptions(); in printGenericOptionDiff() local 1594 for (unsigned i = 0; i != NumOpts; ++i) { in printGenericOptionDiff() 1602 for (unsigned j = 0; j != NumOpts; ++j) { in printGenericOptionDiff()
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | CommandLine.cpp | 1623 unsigned NumOpts = getNumOptions(); in printGenericOptionDiff() local 1624 for (unsigned i = 0; i != NumOpts; ++i) { in printGenericOptionDiff() 1632 for (unsigned j = 0; j != NumOpts; ++j) { in printGenericOptionDiff()
|
/external/llvm/tools/gold/ |
D | gold-plugin.cpp | 1468 if (unsigned NumOpts = options::extra.size()) in allSymbolsReadHook() local 1469 cl::ParseCommandLineOptions(NumOpts, &options::extra[0]); in allSymbolsReadHook()
|
/external/llvm-project/llvm/lib/Support/ |
D | CommandLine.cpp | 2012 unsigned NumOpts = getNumOptions(); in printGenericOptionDiff() local 2013 for (unsigned i = 0; i != NumOpts; ++i) { in printGenericOptionDiff() 2021 for (unsigned j = 0; j != NumOpts; ++j) { in printGenericOptionDiff()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | CommandLine.cpp | 1994 unsigned NumOpts = getNumOptions(); in printGenericOptionDiff() local 1995 for (unsigned i = 0; i != NumOpts; ++i) { in printGenericOptionDiff() 2003 for (unsigned j = 0; j != NumOpts; ++j) { in printGenericOptionDiff()
|