HomeSort by: relevance | last modified time | path
    Searched defs:Prefixes (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
OptRSTEmitter.cpp 63 std::vector<StringRef> Prefixes = R->getValueAsListOfStrings("Prefixes");
64 if (!Prefixes.empty())
65 OS << Prefixes[0];
OptParserEmitter.cpp 39 std::vector<StringRef> Prefixes = R.getValueAsListOfStrings("Prefixes");
42 if (Prefixes.empty()) {
47 PrefixLength = Prefixes[0].size();
48 return (Twine(Prefixes[0]) + Twine(Name)).str();
228 PrefixesT Prefixes;
229 Prefixes.insert(std::make_pair(PrefixKeyT(), "prefix_0"));
232 std::vector<StringRef> RPrefixes = R.getValueAsListOfStrings("Prefixes");
236 if (Prefixes.insert(std::make_pair(PrefixKey, Prefix)).second)
240 // Dump prefixes
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Option/
OptTable.h 46 const char *const *Prefixes;
74 /// The union of all option prefixes. If an argument does not begin with
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 211 // or count range. Because -verify prefixes must start with letters,
431 const auto &Prefixes = Diags.getDiagnosticOptions().VerifyPrefixes;
432 if (!(Prefixes.size() == 1 ? PH.Search(*Prefixes.begin(), true, true)
446 // might be multiple matching -verify prefixes because some might prefix
479 if (!std::binary_search(Prefixes.begin(), Prefixes.end(), DToken))
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/AsmParser/
X86Operand.h 49 unsigned Prefixes;
128 OS << "Prefix:" << Pref.Prefixes;
166 return Pref.Prefixes;
642 CreatePrefix(unsigned Prefixes, SMLoc StartLoc, SMLoc EndLoc) {
644 Res->Pref.Prefixes = Prefixes;
X86AsmParser.cpp 2666 // Return register that are not segment prefixes immediately.
3030 // Parse pseudo prefixes.
3069 // Parse MASM style pseudo prefixes.
3261 // Enhance prefixes integrity robustness. for example, following forms
3263 // repz repnz <insn> ; GAS errors for the use of two similar prefixes
3295 // TODO: there could be several prefixes one after another
4129 unsigned Prefixes = getPrefixes(Operands);
4136 Prefixes |= X86::IP_USE_VEX;
4138 Prefixes |= X86::IP_USE_VEX2;
4140 Prefixes |= X86::IP_USE_VEX3
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp 109 cl::desc("Maximum number of prefixes to use for padding"));
370 /// X86 can reduce the bytes of NOP by padding instructions with prefixes to
381 "Prefixes can be added only in 32-bit or 64-bit mode.");
535 /// Return true if we can insert NOP or prefixes automatically before the
886 assert(Code.size() < 15 && "The number of prefixes must be less than 15.");
889 // specific bits to determine number of prefixes its safe to add. Various
891 // stalls with too many prefixes. For testing purposes, we set the value
1149 const uint8_t Prefixes = ThisNopLength <= 10 ? 0 : ThisNopLength - 10;
1150 for (uint8_t i = 0; i < Prefixes; i++)
1152 const uint8_t Rest = ThisNopLength - Prefixes;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Gnu.cpp 1911 // Compute the set of prefixes for our search.
1912 SmallVector<std::string, 8> Prefixes;
1918 Prefixes.push_back(std::string(GCCToolchainDir));
1922 Prefixes.push_back(D.SysRoot);
1923 AddDefaultGCCPrefixes(TargetTriple, Prefixes, D.SysRoot);
1927 Prefixes.push_back(D.InstalledDir + "/..");
1933 AddDefaultGCCPrefixes(TargetTriple, Prefixes, D.SysRoot);
1960 for (const std::string &Prefix : Prefixes) {
1993 // Skip other prefixes once a GCC installation is found.
2022 const llvm::Triple &TargetTriple, SmallVectorImpl<std::string> &Prefixes,
    [all...]

Completed in 33 milliseconds