Searched refs:Prefix (Results 51 - 75 of 208) sorted by relevance

123456789

/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DPassTimingInfo.cpp234 StringRef Prefix = PassID.substr(0, prefix_pos);
235 return Prefix.endswith("PassManager") || Prefix.endswith("PassAdaptor") ||
236 Prefix.endswith("AnalysisManagerProxy");
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_type_hash_itanium.cpp198 VtablePrefix *Prefix = Vptr - 1; local
199 if (!IsAccessibleMemoryRange((uptr)Prefix, sizeof(VtablePrefix)))
201 if (!Prefix->TypeInfo)
204 return Prefix;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DTextNodeDumper.h42 /// Prefix for currently-being-dumped entity.
43 std::string Prefix; member in class:clang::TextTreeStructure
63 Prefix.clear();
76 // A Prefix = ""
77 // |-B Prefix = "| "
78 // | `-C Prefix = "| "
79 // `-D Prefix = " "
80 // |-E Prefix = " | "
81 // `-F Prefix = " "
82 // G Prefix
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyAsmPrinter.cpp232 uint8_t Prefix; member in struct:FeatureEntry
245 Entry.Prefix = 0;
250 Entry.Prefix = I->getZExtValue();
253 if (Entry.Prefix != wasm::WASM_FEATURE_PREFIX_USED &&
254 Entry.Prefix != wasm::WASM_FEATURE_PREFIX_REQUIRED &&
255 Entry.Prefix != wasm::WASM_FEATURE_PREFIX_DISALLOWED)
272 OutStreamer->EmitIntValue(F.Prefix, 1);
/freebsd-11-stable/sys/contrib/dev/acpica/components/disassembler/
H A Ddmbuffer.c1017 UINT32 Prefix[3]; local
1041 Prefix[0] = ((BigEndianId >> 26) & 0x1F) + 0x40;
1042 Prefix[1] = ((BigEndianId >> 21) & 0x1F) + 0x40;
1043 Prefix[2] = ((BigEndianId >> 16) & 0x1F) + 0x40;
1049 if (!ACPI_IS_ASCII (Prefix[i]) ||
1050 !isalpha (Prefix[i]))
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsics.h93 ID getIntrinsicForGCCBuiltin(const char *Prefix, StringRef BuiltinName);
96 ID getIntrinsicForMSBuiltin(const char *Prefix, StringRef BuiltinName);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringRef.h275 /// Check if this string starts with the given \p Prefix.
277 bool startswith(StringRef Prefix) const {
278 return Length >= Prefix.Length &&
279 compareMemory(Data, Prefix.Data, Prefix.Length) == 0;
282 /// Check if this string starts with the given \p Prefix, ignoring case.
284 bool startswith_lower(StringRef Prefix) const;
671 bool consume_front(StringRef Prefix) {
672 if (!startswith(Prefix))
675 *this = drop_front(Prefix
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DDIPrinter.cpp70 StringRef Prefix = (PrintPretty && Inlined) ? " (inlined by) " : ""; local
71 OS << Prefix << FunctionName << Delimiter;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRVRegNamerUtils.cpp131 std::string Prefix = "bb" + std::to_string(CurrentBBNumber) + "_"; local
144 NamedVReg(MO.getReg(), Prefix + getInstructionOpcodeHash(Candidate)));
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerInternal.h100 void WriteUnitToFileWithPrefix(const Unit &U, const char *Prefix);
107 void DumpCurrentUnit(const char *Prefix);
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DGIMatchDag.cpp18 const auto writePorts = [&](StringRef Prefix,
23 OS << Separator << "<" << Prefix << format("%d", Op.index()) << ">"
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DWebAssemblyDisassemblerEmitter.cpp26 // First lets organize all opcodes by (prefix) byte. Prefix 0 is the
43 auto Prefix = Opc >> 8; local
45 auto &CGIP = OpcodeTable[Prefix][Opc];
160 OS << "struct { uint8_t Prefix; const WebAssemblyInstruction *Table; }\n";
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DHurd.cpp150 StringRef Prefix = local
152 addExternCSystemInclude(DriverArgs, CC1Args, Prefix + Dir);
H A DHIP.cpp249 // Prefix for temporary file name.
250 std::string Prefix = llvm::sys::path::stem(Inputs[0].getFilename()).str(); local
252 Prefix += "-" + SubArchName;
256 constructLLVMLinkCommand(C, JA, Inputs, Args, SubArchName, Prefix);
258 Prefix, LLVMLinkCommand);
260 constructLlcCommand(C, JA, Inputs, Args, SubArchName, Prefix, OptCommand,
263 constructLlcCommand(C, JA, Inputs, Args, SubArchName, Prefix, OptCommand);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DAccelTable.h176 void finalize(AsmPrinter *Asm, StringRef Prefix);
295 StringRef Prefix, const MCSymbol *SecBegin,
303 StringRef Prefix, const MCSymbol *SecBegin) {
305 emitAppleAccelTableImpl(Asm, Contents, Prefix, SecBegin, DataT::Atoms);
302 emitAppleAccelTable(AsmPrinter *Asm, AccelTable<DataT> &Contents, StringRef Prefix, const MCSymbol *SecBegin) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileCheck.h81 // \returns a description of \p Prefix.
82 std::string getDescription(StringRef Prefix) const;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DWarnings.cpp35 diag::Flavor Flavor, StringRef Prefix,
39 << (Flavor == diag::Flavor::WarningOrError ? 0 : 1) << (Prefix.str() += Opt)
40 << !Suggestion.empty() << (Prefix.str() += Suggestion);
34 EmitUnknownDiagWarning(DiagnosticsEngine &Diags, diag::Flavor Flavor, StringRef Prefix, StringRef Opt) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DBreakableToken.h252 StringRef Prefix, StringRef Postfix,
276 StringRef Prefix; member in class:clang::format::BreakableStringLiteral
469 // Prefix[i] contains the intended leading "//" with trailing spaces to
475 SmallVector<StringRef, 16> Prefix; member in class:clang::format::BreakableLineCommentSection
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-dis/
H A Dllvm-dis.cpp124 char *Prefix; member in struct:__anon2845::LLVMDisDiagnosticHandler
125 LLVMDisDiagnosticHandler(char *PrefixPtr) : Prefix(PrefixPtr) {}
128 OS << Prefix << ": "; variable
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Option/
H A DOptTable.cpp151 StringRef Prefix = I->getKey(); local
152 for (StringRef::const_iterator C = Prefix.begin(), CE = Prefix.end();
183 StringRef Prefix(*Pre);
184 if (Str.startswith(Prefix)) {
185 StringRef Rest = Str.substr(Prefix.size());
190 return Prefix.size() + StringRef(I->Name).size();
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingFile.c810 char *FilenameBuf, *Prefix; local
827 Prefix = (char *)malloc(Length + 1);
828 if (!Prefix) {
832 memcpy(Prefix, Filename, Length);
833 Prefix[Length] = '\0';
834 lprofCurFilename.ProfilePathPrefix = Prefix;
835 return Prefix;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A DMiscompilation.cpp52 Expected<TestResult> doTest(std::vector<std::string> &Prefix,
61 ReduceMiscompilingPasses::doTest(std::vector<std::string> &Prefix, argument
97 if (Prefix.empty())
102 outs() << "Checking to see if '" << getPassesString(Prefix)
111 if (BD.runPasses(BD.getProgram(), Prefix, BitcodeResult, false /*delete*/,
115 BD.setPassesToRun(Prefix);
151 << "' passes compile correctly after the '" << getPassesString(Prefix)
198 Expected<TestResult> doTest(std::vector<Function *> &Prefix,
207 if (!Prefix.empty()) {
208 Expected<bool> Ret = TestFuncs(Prefix);
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/common/
H A Dadisasm.c282 * Prefix - Path prefix for output
295 char *Prefix,
356 Prefix = AdGenerateFilename ("dsdt", Table->OemTableId);
366 DisasmFilename = FlGenerateFilename (Prefix, FILE_SUFFIX_DISASSEMBLY);
292 AdAmlDisassemble( BOOLEAN OutToFile, char *Filename, char *Prefix, char **OutFilename) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DNativeFormatting.cpp140 bool Prefix = (Style == HexPrintStyle::PrefixLower || local
144 unsigned PrefixChars = Prefix ? 2 : 0;
150 if (Prefix)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetObjectFile.cpp362 StringRef Prefix(".sbss");
363 SmallString<128> Name(Prefix);
406 StringRef Prefix(".sdata");
407 SmallString<128> Name(Prefix);

Completed in 409 milliseconds

123456789