Searched refs:Producer (Results 1 - 18 of 18) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCChecker.cpp418 auto Producer = registerProducer(Op.getReg(), Consumer); local
419 if (std::get<0>(Producer) == nullptr) {
425 if (std::get<2>(Producer).isPredicated() &&
429 std::get<0>(Producer)->getLoc(),
435 if (std::get<2>(Producer).Register != Hexagon::NoRegister &&
436 std::get<2>(Producer).Register != Consumer.Register) {
437 reportNote(std::get<0>(Producer)->getLoc(),
445 if (std::get<2>(Producer).Register == Consumer.Register &&
446 Consumer.PredicatedTrue != std::get<2>(Producer).PredicatedTrue) {
448 std::get<0>(Producer)
[all...]
H A DHexagonMCInstrInfo.cpp873 unsigned Producer,
877 if (Producer >= Hexagon::W0 && Producer <= Hexagon::W15)
881 return Consumer == Producer;
872 SubregisterBit(unsigned Consumer, unsigned Producer, unsigned Producer2) argument
H A DHexagonMCCodeEmitter.cpp392 static bool RegisterMatches(unsigned Consumer, unsigned Producer, argument
394 if (Consumer == Producer)
399 if (Producer >= Hexagon::W0 && Producer <= Hexagon::W15)
401 return ((Consumer - Hexagon::V0) >> 1) == (Producer - Hexagon::W0);
764 // Producer is unpredicated
771 // Producer predicate sense matched ours.
H A DHexagonMCInstrInfo.h324 unsigned SubregisterBit(unsigned Consumer, unsigned Producer,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyAsmPrinter.cpp219 for (auto &Producer : *Producers.second) {
220 OutStreamer->EmitULEB128IntValue(Producer.first.size());
221 OutStreamer->EmitBytes(Producer.first);
222 OutStreamer->EmitULEB128IntValue(Producer.second.size());
223 OutStreamer->EmitBytes(Producer.second);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/Disassembler/
H A DHexagonDisassembler.cpp490 unsigned Producer = SubregBit ? local
493 assert(Producer != Hexagon::NoRegister);
494 MCO.setReg(Producer);
496 unsigned Producer = local
498 if (Producer >= Hexagon::W0 && Producer <= Hexagon::W15)
499 Producer = ((Producer - Hexagon::W0) << 1) + SubregBit + Hexagon::V0;
504 assert(Producer != Hexagon::NoRegister);
505 MCO.setReg(Producer);
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Object/
H A DIRSymtab.cpp312 setStr(Hdr.Producer, kExpectedProducerName);
392 StringRef Producer = Hdr->Producer.get(BFC.StrtabForSymtab); local
394 Producer != kExpectedProducerName)
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DIRSymtab.h140 Str Producer; member in struct:llvm::irsymtab::storage::Header
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DModuloSchedule.cpp1352 MachineInstr *Producer = MRI.getUniqueVRegDef(Reg); local
1353 if (!Producer)
1357 if (!Producer->isPHI()) {
1360 if (Producer->getParent() != BB)
1361 // Producer was not inside the loop. Use the register as-is.
1363 int ProducerStage = S.getStage(Producer);
1378 auto LoopProducer = Producer;
1393 // In addition, Consumer's cycle must be scheduled after Producer in the
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp365 outs() << "producer: " << Hdr->Producer.get(BFC.StrtabForSymtab)
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h1168 StringRef Producer, bool IsOptimized, StringRef Flags,
1178 getCanonicalMDString(Context, Producer), IsOptimized,
1188 MDString *Producer, bool IsOptimized, MDString *Flags,
1212 (unsigned SourceLanguage, DIFile *File, StringRef Producer,
1220 (SourceLanguage, File, Producer, IsOptimized, Flags, RuntimeVersion,
1226 (unsigned SourceLanguage, Metadata *File, MDString *Producer,
1233 (SourceLanguage, File, Producer, IsOptimized, Flags, RuntimeVersion,
1167 getImpl(LLVMContext &Context, unsigned SourceLanguage, DIFile *File, StringRef Producer, bool IsOptimized, StringRef Flags, unsigned RuntimeVersion, StringRef SplitDebugFilename, unsigned EmissionKind, DICompositeTypeArray EnumTypes, DIScopeArray RetainedTypes, DIGlobalVariableExpressionArray GlobalVariables, DIImportedEntityArray ImportedEntities, DIMacroNodeArray Macros, uint64_t DWOId, bool SplitDebugInlining, bool DebugInfoForProfiling, unsigned NameTableKind, bool RangesBaseAddress, StorageType Storage, bool ShouldCreate = true) argument
H A DDIBuilder.h118 /// \param Producer Identify the producer of debugging information
139 createCompileUnit(unsigned Lang, DIFile *File, StringRef Producer,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DDebugInfoMetadata.cpp518 MDString *Producer, bool IsOptimized, MDString *Flags,
526 assert(isCanonical(Producer) && "Expected canonical MDString");
531 File, Producer, Flags, SplitDebugFilename,
516 getImpl( LLVMContext &Context, unsigned SourceLanguage, Metadata *File, MDString *Producer, bool IsOptimized, MDString *Flags, unsigned RuntimeVersion, MDString *SplitDebugFilename, unsigned EmissionKind, Metadata *EnumTypes, Metadata *RetainedTypes, Metadata *GlobalVariables, Metadata *ImportedEntities, Metadata *Macros, uint64_t DWOId, bool SplitDebugInlining, bool DebugInfoForProfiling, unsigned NameTableKind, bool RangesBaseAddress, StorageType Storage, bool ShouldCreate) argument
H A DDIBuilder.cpp139 unsigned Lang, DIFile *File, StringRef Producer, bool isOptimized,
151 VMContext, Lang, File, Producer, isOptimized, Flags, RunTimeVer,
138 createCompileUnit( unsigned Lang, DIFile *File, StringRef Producer, bool isOptimized, StringRef Flags, unsigned RunTimeVer, StringRef SplitName, DICompileUnit::DebugEmissionKind Kind, uint64_t DWOId, bool SplitDebugInlining, bool DebugInfoForProfiling, DICompileUnit::DebugNameTableKind NameTableKind, bool RangesBaseAddress) argument
H A DDebugInfo.cpp756 LLVMMetadataRef FileRef, const char *Producer, size_t ProducerLen,
765 StringRef(Producer, ProducerLen), isOptimized,
754 LLVMDIBuilderCreateCompileUnit( LLVMDIBuilderRef Builder, LLVMDWARFSourceLanguage Lang, LLVMMetadataRef FileRef, const char *Producer, size_t ProducerLen, LLVMBool isOptimized, const char *Flags, size_t FlagsLen, unsigned RuntimeVer, const char *SplitName, size_t SplitNameLen, LLVMDWARFEmissionKind Kind, unsigned DWOId, LLVMBool SplitDebugInlining, LLVMBool DebugInfoForProfiling) argument
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm-c/
H A DDebugInfo.h232 * \param Producer Identify the producer of debugging information
235 * \param ProducerLen The length of the C string passed to \c Producer.
256 LLVMMetadataRef FileRef, const char *Producer, size_t ProducerLen,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp820 StringRef Producer = DIUnit->getProducer();
823 std::string ProducerWithFlags = Producer.str() + " " + Flags.str();
826 NewCU.addString(Die, dwarf::DW_AT_producer, Producer);
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp575 std::string Producer = getClangFullVersion(); local
615 LangTag, CUFile, CGOpts.EmitVersionIdentMetadata ? Producer : "",

Completed in 151 milliseconds