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

/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DOptRSTEmitter.cpp63 std::vector<StringRef> Prefixes = R->getValueAsListOfStrings("Prefixes"); local
64 if (!Prefixes.empty())
65 OS << Prefixes[0]; local
H A DOptParserEmitter.cpp40 std::vector<StringRef> Prefixes = R.getValueAsListOfStrings("Prefixes"); local
42 if (Prefixes.empty()) {
46 PrefixLength = Prefixes[0].size();
47 return (Twine(Prefixes[0]) + Twine(Name)).str();
258 PrefixesT Prefixes; local
259 Prefixes.insert(std::make_pair(PrefixKeyT(), "prefix_0"));
263 std::vector<StringRef> prf = R.getValueAsListOfStrings("Prefixes");
266 if (Prefixes.insert(std::make_pair(prfkey, (Twine("prefix_") +
274 OS << "// Prefixes\
[all...]
/freebsd-13-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-13-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-13-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/
H A DX86Operand.h49 unsigned Prefixes; member in struct:llvm::final::PrefOp
128 OS << "Prefix:" << Pref.Prefixes;
166 return Pref.Prefixes;
642 CreatePrefix(unsigned Prefixes, SMLoc StartLoc, SMLoc EndLoc) { argument
644 Res->Pref.Prefixes = Prefixes;
H A DX86AsmParser.cpp3509 unsigned Prefixes = getPrefixes(Operands); local
3516 Prefixes |= X86::IP_USE_VEX3;
3518 if (Prefixes)
3519 Inst.setFlags(Prefixes);
3739 unsigned Prefixes = getPrefixes(Operands); local
3750 Prefixes |= X86::IP_USE_VEX3;
3752 if (Prefixes)
3753 Inst.setFlags(Prefixes);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp431 const auto &Prefixes = Diags.getDiagnosticOptions().VerifyPrefixes; local
432 if (!(Prefixes.size() == 1 ? PH.Search(*Prefixes.begin(), true, true)
479 if (!std::binary_search(Prefixes.begin(), Prefixes.end(), DToken))
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DGnu.cpp1895 SmallVector<std::string, 8> Prefixes(D.PrefixDirs.begin(),
1903 Prefixes.push_back(std::string(GCCToolchainDir));
1907 Prefixes.push_back(D.SysRoot);
1908 AddDefaultGCCPrefixes(TargetTriple, Prefixes, D.SysRoot);
1912 Prefixes.push_back(D.InstalledDir + "/..");
1918 AddDefaultGCCPrefixes(TargetTriple, Prefixes, D.SysRoot);
1947 for (const std::string &Prefix : Prefixes) {
1996 const llvm::Triple &TargetTriple, SmallVectorImpl<std::string> &Prefixes,
2022 Prefixes.push_back(CandidatePrefix);
2030 Prefixes
1995 AddDefaultGCCPrefixes( const llvm::Triple &TargetTriple, SmallVectorImpl<std::string> &Prefixes, StringRef SysRoot) argument
[all...]
H A DGnu.h258 SmallVectorImpl<std::string> &Prefixes,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp379 "Prefixes can be added only in 32-bit or 64-bit mode.");
1119 const uint8_t Prefixes = ThisNopLength <= 10 ? 0 : ThisNopLength - 10; local
1120 for (uint8_t i = 0; i < Prefixes; i++)
1122 const uint8_t Rest = ThisNopLength - Prefixes;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp1222 SmallVector<SDValue,8> Prefixes; local
1225 Prefixes.push_back(P);
1232 for (unsigned i = 0, e = Prefixes.size(); i != e; ++i) {
1234 Res = DAG.getNode(ISD::OR, dl, ByteTy, Res, Prefixes[e-i-1]);

Completed in 140 milliseconds