Searched refs:Prefixes (Results 1 - 13 of 13) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DOptRSTEmitter.cpp62 std::vector<StringRef> Prefixes = R->getValueAsListOfStrings("Prefixes"); local
63 if (!Prefixes.empty())
64 OS << Prefixes[0]; local
H A DOptParserEmitter.cpp52 PrefixesT Prefixes; local
53 Prefixes.insert(std::make_pair(PrefixKeyT(), "prefix_0"));
57 std::vector<StringRef> prf = R.getValueAsListOfStrings("Prefixes");
60 if (Prefixes.insert(std::make_pair(prfkey, (Twine("prefix_") +
68 OS << "// Prefixes\n\n";
71 for (PrefixesT::const_iterator I = Prefixes.begin(), E = Prefixes.end();
145 std::vector<StringRef> prf = R.getValueAsListOfStrings("Prefixes");
146 OS << Prefixes[PrefixKeyT(prf.begin(), prf.end())] << ", "; local
244 for (std::string S : R.getValueAsListOfStrings("Prefixes")) {
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Option/
H A DOptTable.cpp72 for (const char * const *APre = A.Prefixes,
73 * const *BPre = B.Prefixes;
141 if (const char *const *P = getInfo(i).Prefixes) {
169 static bool isInput(const StringSet<> &Prefixes, StringRef Arg) { argument
172 for (StringSet<>::const_iterator I = Prefixes.begin(),
173 E = Prefixes.end(); I != E; ++I)
182 for (const char * const *Pre = I->Prefixes; *Pre != nullptr; ++Pre) {
196 // Returns true if one of the Prefixes + In.Names matches Option
198 if (In.Prefixes)
199 for (size_t I = 0; In.Prefixes[
[all...]
H A DOption.cpp61 if (Info->Prefixes) {
62 O << " Prefixes:[";
63 for (const char *const *Pre = Info->Prefixes; *Pre != nullptr; ++Pre) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Option/
H A DOptTable.h44 const char *const *Prefixes; member in struct:llvm::opt::OptTable::Info
H A DOption.h127 const char *Prefix = *Info->Prefixes;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/
H A DX86Operand.h51 unsigned Prefixes; member in struct:llvm::final::PrefOp
129 OS << "Prefix:" << Pref.Prefixes;
167 return Pref.Prefixes;
607 CreatePrefix(unsigned Prefixes, SMLoc StartLoc, SMLoc EndLoc) { argument
609 Res->Pref.Prefixes = Prefixes;
H A DX86AsmParser.cpp3212 unsigned Prefixes = getPrefixes(Operands); local
3219 Prefixes |= X86::IP_USE_VEX3;
3221 if (Prefixes)
3222 Inst.setFlags(Prefixes);
3415 unsigned Prefixes = getPrefixes(Operands); local
3426 Prefixes |= X86::IP_USE_VEX3;
3428 if (Prefixes)
3429 Inst.setFlags(Prefixes);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp427 const auto &Prefixes = Diags.getDiagnosticOptions().VerifyPrefixes; local
428 if (!(Prefixes.size() == 1 ? PH.Search(*Prefixes.begin(), true, true)
475 if (!std::binary_search(Prefixes.begin(), Prefixes.end(), DToken))
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DGnu.cpp1845 SmallVector<std::string, 8> Prefixes(D.PrefixDirs.begin(),
1853 Prefixes.push_back(GCCToolchainDir);
1857 Prefixes.push_back(D.SysRoot);
1858 AddDefaultGCCPrefixes(TargetTriple, Prefixes, D.SysRoot);
1862 Prefixes.push_back(D.InstalledDir + "/..");
1868 AddDefaultGCCPrefixes(TargetTriple, Prefixes, D.SysRoot);
1897 for (const std::string &Prefix : Prefixes) {
1946 const llvm::Triple &TargetTriple, SmallVectorImpl<std::string> &Prefixes,
1972 Prefixes.push_back(CandidatePrefix);
1980 Prefixes
1945 AddDefaultGCCPrefixes( const llvm::Triple &TargetTriple, SmallVectorImpl<std::string> &Prefixes, StringRef SysRoot) argument
[all...]
H A DGnu.h253 SmallVectorImpl<std::string> &Prefixes,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp684 const uint8_t Prefixes = ThisNopLength <= 10 ? 0 : ThisNopLength - 10; local
685 for (uint8_t i = 0; i < Prefixes; i++)
687 const uint8_t Rest = ThisNopLength - Prefixes;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp1123 SmallVector<SDValue,8> Prefixes; local
1126 Prefixes.push_back(P);
1133 for (unsigned i = 0, e = Prefixes.size(); i != e; ++i) {
1135 Res = DAG.getNode(ISD::OR, dl, ByteTy, Res, Prefixes[e-i-1]);

Completed in 291 milliseconds