Home
last modified time | relevance | path

Searched refs:Prefixes (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DOptionParserEmitter.cpp49 std::vector<StringRef> Prefixes = R.getValueAsListOfStrings("Prefixes"); in getOptionPrefixedName() local
52 if (Prefixes.empty()) in getOptionPrefixedName()
55 return (Prefixes[0] + Twine(Name)).str(); in getOptionPrefixedName()
266 PrefixesT Prefixes; in emitOptionParser() local
267 Prefixes.try_emplace(PrefixKeyT(), 0); in emitOptionParser()
271 Prefixes.try_emplace(PrefixKey, 0); in emitOptionParser()
275 for (const auto &[Prefix, _] : Prefixes) in emitOptionParser()
305 assert(!Prefixes.empty() && in emitOptionParser()
307 assert(Prefixes.begin()->first.empty() && in emitOptionParser()
311 for (auto &[Prefix, PrefixIndex] : Prefixes) { in emitOptionParser()
[all …]
H A DOptionRSTEmitter.cpp49 std::vector<StringRef> Prefixes = R->getValueAsListOfStrings("Prefixes"); in emitOptionRst() local
50 if (!Prefixes.empty()) in emitOptionRst()
51 OS << Prefixes[0]; in emitOptionRst()
/freebsd/contrib/llvm-project/llvm/include/llvm/Option/
H A DOptTable.h99 SmallVectorImpl<StringRef> &Prefixes) const { in appendPrefixes()
101 Prefixes.push_back(StrTable[PrefixOffset]); in appendPrefixes()
209 SmallVectorImpl<StringRef> &Prefixes) const { in appendOptionPrefixes() argument
211 I.appendPrefixes(*StrTable, PrefixesTable, Prefixes); in appendOptionPrefixes()
H A DOptParser.td103 list<string> Prefixes = prefixes;
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DGnu.cpp2157 SmallVector<std::string, 8> Prefixes; in init() local
2163 Prefixes.push_back(std::string(GCCToolchainDir)); in init()
2167 Prefixes.push_back(D.SysRoot); in init()
2168 AddDefaultGCCPrefixes(TargetTriple, Prefixes, D.SysRoot); in init()
2172 Prefixes.push_back(D.Dir + "/.."); in init()
2178 AddDefaultGCCPrefixes(TargetTriple, Prefixes, D.SysRoot); in init()
2202 for (const std::string &Prefix : Prefixes) { in init()
2257 const llvm::Triple &TargetTriple, SmallVectorImpl<std::string> &Prefixes, in AddDefaultGCCPrefixes() argument
2261 Prefixes.push_back(concat(SysRoot, "/boot/system/develop/tools")); in AddDefaultGCCPrefixes()
2296 Prefixes.emplace_back(p.second); in AddDefaultGCCPrefixes()
[all …]
H A DGnu.h262 SmallVectorImpl<std::string> &Prefixes,
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/
H A DX86Operand.h54 unsigned Prefixes; member
138 OS << "Prefix:" << Pref.Prefixes; in print()
176 return Pref.Prefixes; in getPrefix()
723 CreatePrefix(unsigned Prefixes, SMLoc StartLoc, SMLoc EndLoc) { in CreatePrefix()
725 Res->Pref.Prefixes = Prefixes; in CreatePrefix()
H A DX86AsmParser.cpp4156 unsigned Prefixes = getPrefixes(Operands); in matchAndEmitInstruction() local
4163 Prefixes |= X86::IP_USE_REX; in matchAndEmitInstruction()
4165 Prefixes |= X86::IP_USE_REX2; in matchAndEmitInstruction()
4167 Prefixes |= X86::IP_USE_VEX; in matchAndEmitInstruction()
4169 Prefixes |= X86::IP_USE_VEX2; in matchAndEmitInstruction()
4171 Prefixes |= X86::IP_USE_VEX3; in matchAndEmitInstruction()
4173 Prefixes |= X86::IP_USE_EVEX; in matchAndEmitInstruction()
4177 Prefixes |= X86::IP_USE_DISP8; in matchAndEmitInstruction()
4179 Prefixes |= X86::IP_USE_DISP32; in matchAndEmitInstruction()
4181 if (Prefixes) in matchAndEmitInstruction()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp437 const auto &Prefixes = Diags.getDiagnosticOptions().VerifyPrefixes; in ParseDirective() local
438 if (!(Prefixes.size() == 1 ? PH.Search(*Prefixes.begin(), true, true) in ParseDirective()
484 if (!llvm::binary_search(Prefixes, DToken)) in ParseDirective()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp1045 const uint8_t Prefixes = ThisNopLength <= 10 ? 0 : ThisNopLength - 10; in writeNopData() local
1046 for (uint8_t i = 0; i < Prefixes; i++) in writeNopData()
1048 const uint8_t Rest = ThisNopLength - Prefixes; in writeNopData()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltinsBase.td89 // Prefixes
/freebsd/contrib/llvm-project/llvm/lib/Option/
H A DOptTable.cpp146 static bool isInput(const ArrayRef<StringRef> &Prefixes, StringRef Arg) { in isInput() argument
149 for (const StringRef &Prefix : Prefixes) in isInput()
/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp1693 SmallVector<std::pair<StringRef, size_t>> Prefixes; member
1700 Prefixes.push_back({Prefix, Input.find(Prefix)}); in PrefixMatcher()
1702 Prefixes.push_back({Prefix, Input.find(Prefix)}); in PrefixMatcher()
1705 llvm::sort(Prefixes, in PrefixMatcher()
1718 for (auto &[Prefix, Pos] : Prefixes) { in match()
/freebsd/usr.sbin/bsdconfig/share/
H A Dstrings.subr375 # NOTE: Prefixes are case-insensitive.
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp1758 SmallVector<SDValue,8> Prefixes; in LowerHvxConcatVectors() local
1761 Prefixes.push_back(P); in LowerHvxConcatVectors()
1768 for (unsigned i = 0, e = Prefixes.size(); i != e; ++i) { in LowerHvxConcatVectors()
1770 Res = DAG.getNode(ISD::OR, dl, ByteTy, Res, Prefixes[e-i-1]); in LowerHvxConcatVectors()
/freebsd/contrib/flex/src/
H A Dflex.skl108 %# Prefixes.