Searched refs:DI (Results 1 - 25 of 177) sorted by relevance

12345678

/freebsd-11-stable/contrib/gcc/config/
H A Ddarwin-64.c37 typedef long DI; typedef
43 DI __ashldi3 (DI x, word_type c);
44 DI __ashrdi3 (DI x, word_type c);
46 word_type __cmpdi2 (DI x, DI y);
48 DI __divdi3 (DI x, DI
[all...]
H A Dfixdfdi.c3 typedef int DItype __attribute__ ((mode (DI)));
4 typedef unsigned int UDItype __attribute__ ((mode (DI)));
H A Dfixsfdi.c3 typedef int DItype __attribute__ ((mode (DI)));
4 typedef unsigned int UDItype __attribute__ ((mode (DI)));
H A Dfloatundisf.c2 typedef int DItype __attribute__ ((mode (DI)));
3 typedef unsigned int UDItype __attribute__ ((mode (DI)));
H A Dfloatundidf.c3 typedef unsigned int UDItype __attribute__ ((mode (DI)));
H A Dfloatdisf.c2 typedef int DItype __attribute__ ((mode (DI)));
3 typedef unsigned int UDItype __attribute__ ((mode (DI)));
H A Dfloatdidf.c4 typedef int DItype __attribute__ ((mode (DI)));
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFEmitter.h31 void EmitDebugAbbrev(raw_ostream &OS, const Data &DI);
32 void EmitDebugStr(raw_ostream &OS, const Data &DI);
34 void EmitDebugAranges(raw_ostream &OS, const Data &DI);
37 void EmitDebugInfo(raw_ostream &OS, const Data &DI);
38 void EmitDebugLine(raw_ostream &OS, const Data &DI);
44 EmitDebugSections(llvm::DWARFYAML::Data &DI, bool ApplyFixups);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86DiscriminateMemOps.cpp110 const auto &DI = MI.getDebugLoc(); local
111 if (!DI)
115 Location Loc = diToLocation(DI);
117 std::max(MemOpDiscriminators[Loc], DI->getBaseDiscriminator());
133 const DILocation *DI = MI.getDebugLoc(); local
134 bool HasDebug = DI;
136 DI = ReferenceDI;
138 Location L = diToLocation(DI);
141 Set.insert(DI->getBaseDiscriminator());
144 DILocation::decodeDiscriminator(DI
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfiling.c62 const __llvm_profile_data *DI; local
63 for (DI = DataBegin; DI < DataEnd; ++DI) {
66 if (!DI->Values)
69 ValueProfNode **ValueCounters = (ValueProfNode **)DI->Values;
72 CurrentVSiteCount += DI->NumValueSites[VKI];
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DDiagnosticHandler.h30 using DiagnosticHandlerTy = void (*)(const DiagnosticInfo &DI, void *Context);
42 virtual bool handleDiagnostics(const DiagnosticInfo &DI) { argument
44 DiagHandlerCallback(DI, DiagnosticContext);
H A DDiagnosticInfo.h169 static bool classof(const DiagnosticInfo *DI) { argument
170 return DI->getKind() == DK_InlineAsm;
209 static bool classof(const DiagnosticInfo *DI) { argument
210 return DI->getKind() == DK_ResourceLimit || DI->getKind() == DK_StackSize;
226 static bool classof(const DiagnosticInfo *DI) { argument
227 return DI->getKind() == DK_StackSize;
254 static bool classof(const DiagnosticInfo *DI) { argument
255 return DI->getKind() == DK_DebugMetadataVersion;
276 static bool classof(const DiagnosticInfo *DI) { argument
300 classof(const DiagnosticInfo *DI) argument
330 classof(const DiagnosticInfo *DI) argument
479 classof(const DiagnosticInfo *DI) argument
661 classof(const DiagnosticInfo *DI) argument
693 classof(const DiagnosticInfo *DI) argument
734 classof(const DiagnosticInfo *DI) argument
786 classof(const DiagnosticInfo *DI) argument
843 classof(const DiagnosticInfo *DI) argument
884 classof(const DiagnosticInfo *DI) argument
920 classof(const DiagnosticInfo *DI) argument
939 classof(const DiagnosticInfo *DI) argument
971 classof(const DiagnosticInfo *DI) argument
998 classof(const DiagnosticInfo *DI) argument
1015 classof(const DiagnosticInfo *DI) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp71 void DWARFYAML::EmitDebugStr(raw_ostream &OS, const DWARFYAML::Data &DI) { argument
72 for (auto Str : DI.DebugStrings) {
78 void DWARFYAML::EmitDebugAbbrev(raw_ostream &OS, const DWARFYAML::Data &DI) { argument
79 for (auto AbbrevDecl : DI.AbbrevDecls) {
94 void DWARFYAML::EmitDebugAranges(raw_ostream &OS, const DWARFYAML::Data &DI) { argument
95 for (auto Range : DI.ARanges) {
97 writeInitialLength(Range.Length, OS, DI.IsLittleEndian);
98 writeInteger((uint16_t)Range.Version, OS, DI.IsLittleEndian);
99 writeInteger((uint32_t)Range.CuOffset, OS, DI.IsLittleEndian);
100 writeInteger((uint8_t)Range.AddrSize, OS, DI
194 DumpVisitor(const DWARFYAML::Data &DI, raw_ostream &Out) argument
199 EmitDebugInfo(raw_ostream &OS, const DWARFYAML::Data &DI) argument
212 EmitDebugLine(raw_ostream &OS, const DWARFYAML::Data &DI) argument
298 EmitDebugSectionImpl(const DWARFYAML::Data &DI, EmitFuncType EmitFunc, StringRef Sec, StringMap<std::unique_ptr<MemoryBuffer>> &OutputBuffers) argument
314 DIEFixupVisitor(DWARFYAML::Data &DI) argument
358 DWARFYAML::Data DI; local
360 YIn >> DI; local
[all...]
H A DDWARFVisitor.h67 VisitorImpl(T &DI) : DebugInfo(DI) {} argument
85 Visitor(Data &DI) : VisitorImpl<Data>(DI) {} argument
90 ConstVisitor(const Data &DI) : VisitorImpl<const Data>(DI) {} argument
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dfunc-id-helper.cpp38 auto &DI = *ResOrErr; local
39 if (DI.FunctionName == DILineInfo::BadString)
42 F << DI.FunctionName;
70 auto &DI = *ResOrErr; local
71 F << sys::path::filename(DI.FileName).str() << ":" << DI.Line << ":"
72 << DI.Column;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DCodeMoverUtils.h46 DependenceInfo &DI);
52 DependenceInfo &DI);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineOptimizationRemarkEmitter.h44 static bool classof(const DiagnosticInfo *DI) { argument
45 return DI->getKind() >= DK_FirstMachineRemark &&
46 DI->getKind() <= DK_LastMachineRemark;
69 static bool classof(const DiagnosticInfo *DI) { argument
70 return DI->getKind() == DK_MachineOptimizationRemark;
95 static bool classof(const DiagnosticInfo *DI) { argument
96 return DI->getKind() == DK_MachineOptimizationRemarkMissed;
121 static bool classof(const DiagnosticInfo *DI) { argument
122 return DI->getKind() == DK_MachineOptimizationRemarkAnalysis;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DUser.cpp101 auto *DI = reinterpret_cast<DescriptorInfo *>(getIntrusiveOperands()) - 1; local
102 assert(DI->SizeInBytes != 0 && "Should not have had a descriptor otherwise!");
105 reinterpret_cast<uint8_t *>(DI) - DI->SizeInBytes, DI->SizeInBytes);
183 auto *DI = reinterpret_cast<DescriptorInfo *>(UseBegin) - 1;
184 uint8_t *Storage = reinterpret_cast<uint8_t *>(DI) - DI->SizeInBytes;
H A DLLVMContext.cpp185 static bool isDiagnosticEnabled(const DiagnosticInfo &DI) { argument
193 if (auto *Remark = dyn_cast<DiagnosticInfoOptimizationBase>(&DI))
215 void LLVMContext::diagnose(const DiagnosticInfo &DI) { argument
216 if (auto *OptDiagBase = dyn_cast<DiagnosticInfoOptimizationBase>(&DI))
222 (!pImpl->RespectDiagnosticFilters || isDiagnosticEnabled(DI)) &&
223 pImpl->DiagHandler->handleDiagnostics(DI))
226 if (!isDiagnosticEnabled(DI))
231 errs() << getDiagnosticMessagePrefix(DI.getSeverity()) << ": ";
232 DI.print(DP);
234 if (DI
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_printer.h67 const DataInfo *DI, const char *strip_path_prefix = "");
/freebsd-11-stable/contrib/gcc/config/s390/
H A Dfixdfdi.h38 typedef int DItype_x __attribute__ ((mode (DI)));
39 typedef unsigned int UDItype_x __attribute__ ((mode (DI)));
111 typedef int DItype_x __attribute__ ((mode (DI)));
112 typedef unsigned int UDItype_x __attribute__ ((mode (DI)));
182 typedef int DItype_x __attribute__ ((mode (DI)));
183 typedef unsigned int UDItype_x __attribute__ ((mode (DI)));
254 typedef int DItype_x __attribute__ ((mode (DI)));
255 typedef unsigned int UDItype_x __attribute__ ((mode (DI)));
329 typedef int DItype_x __attribute__ ((mode (DI)));
330 typedef unsigned int UDItype_x __attribute__ ((mode (DI)));
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DPlistReporter.cpp82 DI = diags.begin(), DE = diags.end(); DI != DE; ++DI) {
84 const StoredDiagnostic &D = *DI;
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DNeonEmitter.cpp515 std::pair<Type, std::string> emitDagSaveTemp(DagInit *DI);
516 std::pair<Type, std::string> emitDagSplat(DagInit *DI);
517 std::pair<Type, std::string> emitDagDup(DagInit *DI);
518 std::pair<Type, std::string> emitDagDupTyped(DagInit *DI);
519 std::pair<Type, std::string> emitDagShuffle(DagInit *DI);
520 std::pair<Type, std::string> emitDagCast(DagInit *DI, bool IsBitCast);
521 std::pair<Type, std::string> emitDagCall(DagInit *DI);
522 std::pair<Type, std::string> emitDagNameReplace(DagInit *DI);
523 std::pair<Type, std::string> emitDagLiteral(DagInit *DI);
524 std::pair<Type, std::string> emitDagOp(DagInit *DI);
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeMoverUtils.cpp95 DependenceInfo &DI) {
164 [&DI, &I](Instruction *CurInst) {
165 auto DepResult = DI.depends(&I, CurInst, true);
179 const PostDominatorTree &PDT, DependenceInfo &DI) {
186 if (isSafeToMoveBefore(I, *MovePos, DT, PDT, DI))
92 isSafeToMoveBefore(Instruction &I, Instruction &InsertPoint, const DominatorTree &DT, const PostDominatorTree &PDT, DependenceInfo &DI) argument
177 moveInstsBottomUp(BasicBlock &FromBB, BasicBlock &ToBB, const DominatorTree &DT, const PostDominatorTree &PDT, DependenceInfo &DI) argument
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DOptParserEmitter.cpp112 if (const DefInit *DI = dyn_cast<DefInit>(R.getValueInit("Group")))
113 OS << getOptionName(*DI->getDef());
160 if (const DefInit *DI = dyn_cast<DefInit>(R.getValueInit("Group"))) {
161 GroupFlags = DI->getDef()->getValueAsListInit("Flags");
162 OS << getOptionName(*DI->getDef());
168 if (const DefInit *DI = dyn_cast<DefInit>(R.getValueInit("Alias")))
169 OS << getOptionName(*DI->getDef());

Completed in 127 milliseconds

12345678