Searched refs:Prefix (Results 151 - 175 of 224) sorted by relevance

123456789

/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp483 static bool hasPrefix(StringRef SectionName, StringRef Prefix) { argument
484 return SectionName.startswith(Prefix) || SectionName == Prefix.drop_back();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp2601 std::string Prefix = Parser.getTok().getString().lower();
2607 if (Prefix == "vex" || Prefix == "vex2")
2609 else if (Prefix == "vex3")
2611 else if (Prefix == "evex")
2816 unsigned Prefix = local
2823 Flags |= Prefix;
3454 X86Operand &Prefix = static_cast<X86Operand &>(*Operands.back()); local
3455 if (Prefix.isPrefix()) {
3456 Result = Prefix
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenSchedule.cpp105 StringRef Prefix = Original.substr(0, FirstMeta); variable
122 if (InstName.startswith(Prefix) &&
123 (!Regexpr || Regexpr->match(InstName.substr(Prefix.size())))) {
142 std::equal_range(Pseudos.begin(), Pseudos.end(), Prefix, Comp());
144 Prefix, Comp());
150 if (!Regexpr || Regexpr->match(InstName.substr(Prefix.size()))) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp113 SmallString<8> Prefix; local
115 Prefix.push_back(' ');
117 Prefix.append(ArgName.size() > 1 ? ArgPrefixLong : ArgPrefix);
118 return Prefix;
126 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix ||
771 // cl::Prefix options do not preserve '=' when used separately.
774 (PGOpt->getFormattingFlag() == cl::Prefix && MaybeValue[0] != '=')) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSDictionary.cpp34 NSDictionary_Additionals::AdditionalFormatterMatching::Prefix::Prefix( function in class:NSDictionary_Additionals::AdditionalFormatterMatching::Prefix
38 bool NSDictionary_Additionals::AdditionalFormatterMatching::Prefix::Match(
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h262 const Node *Prefix; member in class:final
267 : Node(KDotSuffix), Prefix(Prefix_), Suffix(Suffix_) {}
269 template<typename Fn> void match(Fn F) const { F(Prefix, Suffix); }
272 Prefix->print(s);
1660 const StringView Prefix; member in class:EnclosingExpr
1666 : Node(KEnclosingExpr), Prefix(Prefix_), Infix(Infix_),
1669 template<typename Fn> void match(Fn F) const { F(Prefix, Infix, Postfix); }
1672 S += Prefix;
1796 StringView Prefix; member in class:PrefixExpr
1801 : Node(KPrefixExpr), Prefix(Prefix
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFStreamer.cpp675 void SwitchToEHSection(StringRef Prefix, unsigned Type, unsigned Flags,
1188 inline void ARMELFStreamer::SwitchToEHSection(StringRef Prefix,
1198 SmallString<128> EHSecName(Prefix);
H A DARMInstPrinter.cpp1631 const char *Prefix = "{";
1633 O << Prefix;
1635 Prefix = ", ";
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp39 cl::Prefix, cl::ZeroOrMore, cl::init('2'));
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DLinux.cpp581 StringRef Prefix = local
583 addExternCSystemInclude(DriverArgs, CC1Args, Prefix + dir);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DLiteralSupport.cpp1633 const char *Prefix = ThisTokBuf;
1639 ThisTokEnd -= ThisTokBuf - Prefix;
H A DPPExpressions.cpp267 [&IdentifierName](const std::string &Prefix) {
268 return IdentifierName.startswith(Prefix);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaAvailability.cpp221 StringRef Prefix; member in struct:__anon2009::AttributeInsertion
412 (llvm::Twine(Insertion->Prefix) + "API_AVAILABLE(" + PlatformName +
/freebsd-13-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangAttrEmitter.cpp1424 llvm::SmallString<16> Prefix; local
1433 Prefix = " __attribute__((";
1436 Prefix = " [[";
1444 Prefix = " __declspec(";
1447 Prefix = "[";
1450 Prefix = " ";
1453 Prefix = "#pragma ";
1468 " OS << \"" << Prefix << Spelling;
H A DClangDiagnosticsEmitter.cpp1157 TextPiece *Prefix = D.New<TextPiece>(Severity, Severity); local
1158 Prefix->Text += ": ";
1165 MP->Pieces.insert(MP->Pieces.begin(), Prefix);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCContext.cpp451 MCSectionELF *MCContext::getELFNamedSection(const Twine &Prefix, argument
455 return getELFSection(Prefix + "." + Suffix, Type, Flags, EntrySize, Suffix);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp260 static void error(StringRef Prefix, std::error_code EC) { argument
263 WithColor::error() << Prefix << ": " << EC.message() << "\n";
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp189 cl::aliasopt(StringDump), cl::Prefix);
195 cl::aliasopt(HexDump), cl::Prefix);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopInfo.cpp1033 llvm::any_of(RemovePrefixes, [S](StringRef Prefix) -> bool {
1034 return S->getString().startswith(Prefix);
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp2137 std::string Prefix = Twine("gomp_critical_user_", CriticalName).str(); local
2138 std::string Name = getName({Prefix, "var"});
5708 /// Format is: <Prefix> "." <Decl_mangled_name> "_" "<Decl_start_loc_raw_enc>"
5709 static std::string generateUniqueName(CodeGenModule &CGM, StringRef Prefix, argument
5720 Out << Prefix << Name << "_"
9174 StringRef Prefix = IsInit ? ".init" : ".del"; local
9178 MapperCGF.createBasicBlock(getName({"omp.array", Prefix, ".evaldelete"}));
9180 MapperCGF.createBasicBlock(getName({"omp.array", Prefix}));
9193 DeleteBit, getName({"omp.array", Prefix, ".delete"}));
9196 DeleteBit, getName({"omp.array", Prefix, "
10654 addAArch64VectorName(T VLEN, StringRef LMask, StringRef Prefix, char ISA, StringRef ParSeq, StringRef MangledName, bool OutputBecomesInput, llvm::Function *Fn) argument
10669 addAArch64AdvSIMDNDSNames(unsigned NDS, StringRef Mask, StringRef Prefix, char ISA, StringRef ParSeq, StringRef MangledName, bool OutputBecomesInput, llvm::Function *Fn) argument
10752 StringRef Prefix = "_ZGV"; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp3999 /// into non-numeric and numeric parts (Prefix and Reg). The first boolean flag
4002 static std::pair<bool, bool> parsePhysicalReg(StringRef C, StringRef &Prefix, argument
4011 Prefix = StringRef(B, I - B);
4034 StringRef Prefix; local
4037 std::pair<bool, bool> R = parsePhysicalReg(C, Prefix, Reg);
4042 if ((Prefix == "hi" || Prefix == "lo")) { // Parse hi/lo.
4047 RC = TRI->getRegClass(Prefix == "hi" ?
4050 } else if (Prefix.startswith("$msa")) {
4057 Reg = StringSwitch<unsigned long long>(Prefix)
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp2175 #define MOV_CASE(Prefix, Suffix) \
2176 case X86::Prefix##MOVAPD##Suffix##rm: \
2177 case X86::Prefix##MOVAPS##Suffix##rm: \
2178 case X86::Prefix##MOVUPD##Suffix##rm: \
2179 case X86::Prefix##MOVUPS##Suffix##rm: \
2180 case X86::Prefix##MOVDQA##Suffix##rm: \
2181 case X86::Prefix##MOVDQU##Suffix##rm:
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp1542 for (const auto &Prefix : VerifyPrefixes) {
1545 auto BadChar = llvm::find_if(Prefix, [](char C) {
1548 if (BadChar != Prefix.end() || !isLetter(Prefix[0])) {
1551 Diags->Report(diag::err_drv_invalid_value) << "-verify=" << Prefix;
2201 StringRef Prefix = ""; // FIXME: This isn't the correct default prefix. local
2205 Prefix = A->getValue();
2207 Opts.AddPath(Prefix.str() + A->getValue(), frontend::After, false, true);
2209 Opts.AddPath(Prefix.str() + A->getValue(), frontend::Angled, false, true);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DFunction.h324 void setSectionPrefix(StringRef Prefix);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp660 std::string GVName = std::string(GV->getName()), Prefix = "dfs$"; local
661 GV->setName(Prefix + GVName);
673 ".symver " + Prefix + GVName + "," + Prefix);

Completed in 408 milliseconds

123456789