| /llvm-project-15.0.7/bolt/test/X86/Inputs/ |
| H A D | plt-sec-8-byte.yaml | 327 Desc: '' 330 Desc: '' 333 Desc: '' 336 Desc: '' 339 Desc: '' 342 Desc: '' 345 Desc: '' 348 Desc: '' 351 Desc: '' 354 Desc: '' [all …]
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFExpression.cpp | 27 typedef Op::Description Desc; in getDescriptions() typedef 42 Descriptions[DW_OP_dup] = Desc(Op::Dwarf2); in getDescriptions() 57 Descriptions[DW_OP_or] = Desc(Op::Dwarf2); in getDescriptions() 66 Descriptions[DW_OP_eq] = Desc(Op::Dwarf2); in getDescriptions() 73 Descriptions[LA] = Desc(Op::Dwarf2); in getDescriptions() 75 Descriptions[LA] = Desc(Op::Dwarf2); in getDescriptions() 126 Desc = getOpDesc(Opcode); in extract() 127 if (Desc.Version == Operation::DwarfNA) in extract() 131 unsigned Size = Desc.Op[Operand]; in extract() 284 unsigned Size = Desc.Op[Operand]; in print() [all …]
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | Options.td | 46 Desc<"Clear all settings.">; 92 Desc<"Enable the breakpoint.">; 94 Desc<"Disable the breakpoint.">; 587 Desc<"Allow user to read.">; 589 Desc<"Allow user to write.">; 593 Desc<"Allow group to read.">; 595 Desc<"Allow group to write.">; 599 Desc<"Allow world to read.">; 601 Desc<"Allow world to write.">; 893 Desc<"Enable verbose dump.">; [all …]
|
| /llvm-project-15.0.7/clang/lib/AST/Interp/ |
| H A D | InterpBlock.h | 38 Block(const llvm::Optional<unsigned> &DeclID, Descriptor *Desc, 40 : DeclID(DeclID), IsStatic(IsStatic), IsExtern(IsExtern), Desc(Desc) {} in DeclID() 44 Desc(Desc) {} 47 Descriptor *getDescriptor() const { return Desc; } in getDescriptor() 55 bool isTemporary() const { return Desc->IsTemporary; } in isTemporary() 57 InterpSize getSize() const { return Desc->getAllocSize(); } in getSize() 71 if (Desc->CtorFn) in invokeCtor() 72 Desc->CtorFn(this, data(), Desc->IsConst, Desc->IsMutable, in invokeCtor() 73 /*isActive=*/true, Desc); in invokeCtor() 82 : IsStatic(IsStatic), IsExtern(IsExtern), IsDead(true), Desc(Desc) {} in Block() [all …]
|
| H A D | Descriptor.cpp | 70 Desc->Desc = SD; in ctorArrayDesc() 71 Desc->IsInitialized = true; in ctorArrayDesc() 72 Desc->IsBase = false; in ctorArrayDesc() 73 Desc->IsActive = IsActive; in ctorArrayDesc() 77 Fn(B, ElemLoc, Desc->IsConst, Desc->IsMutable, IsActive, D->ElemDesc); in ctorArrayDesc() 122 Desc->Offset = SubOff; in ctorRecord() 123 Desc->Desc = F; in ctorRecord() 125 Desc->IsBase = IsBase; in ctorRecord() 130 Fn(B, Ptr + SubOff, Desc->IsConst, Desc->IsMutable, Desc->IsActive, F); in ctorRecord() 146 DtorSub(F.Offset, F.Desc); in dtorRecord() [all …]
|
| H A D | Program.cpp | 64 unsigned Sz = Desc->getAllocSize(); in createGlobalString() 180 Descriptor *Desc; in createGlobal() local 188 if (!Desc) in createGlobal() 291 Descriptor *Desc; in getOrCreateRecord() local 299 if (!Desc) in getOrCreateRecord() 301 Fields.push_back({FD, Size, Desc}); in getOrCreateRecord() 302 Size += align(Desc->getAllocSize()); in getOrCreateRecord() 337 Descriptor *Desc = in createDescriptor() local 339 if (!Desc) in createDescriptor() 356 Descriptor *Desc = in createDescriptor() local [all …]
|
| H A D | InterpState.cpp | 58 Descriptor *Desc = B->getDescriptor(); in deallocate() local 67 if (Desc->MoveFn) in deallocate() 68 Desc->MoveFn(B, B->data(), D->data(), Desc); in deallocate() 71 if (Desc->DtorFn) in deallocate() 72 Desc->DtorFn(B, B->data(), Desc); in deallocate()
|
| H A D | Pointer.cpp | 89 Descriptor *Desc = getDeclDesc(); in toAPValue() local 90 if (auto *VD = Desc->asValueDecl()) in toAPValue() 92 else if (auto *E = Desc->asExpr()) in toAPValue() 118 Descriptor *Desc = Ptr.getFieldDesc(); in toAPValue() local 119 if (auto *BaseOrMember = Desc->asDecl()) { in toAPValue() 137 Descriptor *Desc = getFieldDesc(); in isInitialized() local 138 if (Desc->isPrimitiveArray()) { in isInitialized() 156 Descriptor *Desc = getFieldDesc(); in initialize() local 157 if (Desc->isPrimitiveArray()) { in initialize() 164 Map = InitMap::allocate(Desc->getNumElems()); in initialize()
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | TargetProperties.td | 13 Desc<"Default architecture to choose, when there's a choice.">; 16 Desc<"Move breakpoints to nearest code.">; 69 Desc<"Print the fixed expression text.">; 81 Desc<"Maximum depth to expand children.">; 140 Desc<"Show immediates in disassembly as hexadecimal.">; 223 Desc<"The memory cache line size">; 233 Desc<"If true, stop when the inferior exec's.">; 249 Desc<"Debugger's behavior upon fork or vfork.">; 256 Desc<"Use module cache.">; 260 Desc<"Root directory for cached modules.">; [all …]
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | StreamChecker.cpp | 178 assert(Desc && Desc->StreamArgNo != ArgNone && in getStreamArg() 180 return Call.getArgSVal(Desc->StreamArgNo); in getStreamArg() 461 if (!Desc || !Desc->PreFn) in checkPreCall() 464 Desc->PreFn(this, Desc, Call, C); in checkPreCall() 469 if (!Desc && TestMode) in evalCall() 470 Desc = FnTestDescriptions.lookup(Call); in evalCall() 471 if (!Desc || !Desc->EvalFn) in evalCall() 474 Desc->EvalFn(this, Desc, Call, C); in evalCall() 590 SVal StreamVal = getStreamArg(Desc, Call); in preFread() 615 SVal StreamVal = getStreamArg(Desc, Call); in preFwrite() [all …]
|
| H A D | ObjCSuperDeallocChecker.cpp | 96 StringRef Desc; in checkPreObjCMessage() local 99 Desc = "[super dealloc] should not be called multiple times"; in checkPreObjCMessage() 101 Desc = StringRef(); in checkPreObjCMessage() 104 reportUseAfterDealloc(ReceiverSymbol, Desc, M.getOriginExpr(), C); in checkPreObjCMessage() 158 StringRef Desc = StringRef(); in checkLocation() local 166 Desc = OS.str(); in checkLocation() 169 reportUseAfterDealloc(BaseSym, Desc, S, C); in checkLocation() 176 StringRef Desc, in reportUseAfterDealloc() argument 187 if (Desc.empty()) in reportUseAfterDealloc() 188 Desc = "Use of 'self' after it has been deallocated"; in reportUseAfterDealloc() [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | TaskDispatch.h | 61 : Fn(std::forward<FnT>(Fn)), Desc(DescBuffer.c_str()), in GenericNamedTaskImpl() 63 GenericNamedTaskImpl(FnT &&Fn, const char *Desc) in GenericNamedTaskImpl() argument 64 : Fn(std::forward<FnT>(Fn)), Desc(Desc) { in GenericNamedTaskImpl() 65 assert(Desc && "Description cannot be null"); in GenericNamedTaskImpl() 67 void printDescription(raw_ostream &OS) override { OS << Desc; } in printDescription() 72 const char *Desc; variable 81 std::move(Desc)); in makeGenericNamedTask() 87 makeGenericNamedTask(FnT &&Fn, const char *Desc = nullptr) { 88 if (!Desc) 89 Desc = GenericNamedTask::DefaultDescription; [all …]
|
| /llvm-project-15.0.7/openmp/libomptarget/plugins/remote/lib/ |
| H A D | Utils.cpp | 24 for (auto *CurEntry = Desc->HostEntriesBegin; in loadTargetBinaryDescription() 71 Desc->NumDeviceImages = Request->images_size(); in unloadTargetBinaryDescription() 72 Desc->DeviceImages = new __tgt_device_image[Desc->NumDeviceImages]; in unloadTargetBinaryDescription() 77 Desc->HostEntriesBegin = nullptr; in unloadTargetBinaryDescription() 78 Desc->HostEntriesEnd = nullptr; in unloadTargetBinaryDescription() 90 Desc->HostEntriesEnd = CurEntry; in unloadTargetBinaryDescription() 97 CurEntry = Desc->HostEntriesBegin; in unloadTargetBinaryDescription() 100 if (!Desc->HostEntriesBegin) { in unloadTargetBinaryDescription() 141 delete[] Desc->DeviceImages; in freeTargetBinaryDescription() 143 for (auto *Entry = Desc->HostEntriesBegin; Entry != Desc->HostEntriesEnd; in freeTargetBinaryDescription() [all …]
|
| /llvm-project-15.0.7/llvm/lib/Target/X86/MCTargetDesc/ |
| H A D | X86IntelInstPrinter.cpp | 156 if (Desc.TSFlags & X86II::EVEX_K) { in printVecCompareInstr() 167 if (Desc.TSFlags & X86II::EVEX_B) { in printVecCompareInstr() 181 if (Desc.TSFlags & X86II::EVEX_L2) in printVecCompareInstr() 183 else if (Desc.TSFlags & X86II::VEX_L) in printVecCompareInstr() 212 if (Desc.TSFlags & X86II::EVEX_B) in printVecCompareInstr() 310 if (Desc.TSFlags & X86II::EVEX_K) { in printVecCompareInstr() 321 if (Desc.TSFlags & X86II::EVEX_B) { in printVecCompareInstr() 324 if (Desc.TSFlags & X86II::VEX_W) in printVecCompareInstr() 331 if (Desc.TSFlags & X86II::EVEX_L2) in printVecCompareInstr() 333 else if (Desc.TSFlags & X86II::VEX_L) in printVecCompareInstr() [all …]
|
| H A D | X86ATTInstPrinter.cpp | 177 if (Desc.TSFlags & X86II::EVEX_B) { in printVecCompareInstr() 183 } else if (Desc.TSFlags & X86II::VEX_W) { in printVecCompareInstr() 191 if (Desc.TSFlags & X86II::EVEX_L2) in printVecCompareInstr() 193 else if (Desc.TSFlags & X86II::VEX_L) in printVecCompareInstr() 221 if (Desc.TSFlags & X86II::EVEX_B) in printVecCompareInstr() 333 if (Desc.TSFlags & X86II::EVEX_B) { in printVecCompareInstr() 336 if (Desc.TSFlags & X86II::VEX_W) in printVecCompareInstr() 343 if (Desc.TSFlags & X86II::EVEX_L2) in printVecCompareInstr() 345 else if (Desc.TSFlags & X86II::VEX_L) in printVecCompareInstr() 351 if (Desc.TSFlags & X86II::EVEX_L2) in printVecCompareInstr() [all …]
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_mutexset.h | 25 struct Desc { struct 32 Desc() { internal_memset(this, 0, sizeof(*this)); } in Desc() argument 33 Desc(const Desc& other) { *this = other; } in Desc() function 34 Desc& operator=(const MutexSet::Desc& other) { 45 Desc Get(uptr i) const; 51 Desc descs_[kMaxSize]; 84 MutexSet::Desc MutexSet::Get(uptr i) const { return Desc(); } in Get()
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/ |
| H A D | tsan_mutexset.h | 25 struct Desc { struct 34 Desc() { internal_memset(this, 0, sizeof(*this)); } in Desc() argument 35 Desc(const Desc& other) { *this = other; } in Desc() function 36 Desc& operator=(const MutexSet::Desc& other) { 50 Desc Get(uptr i) const; 56 Desc descs_[kMaxSize]; 91 MutexSet::Desc MutexSet::Get(uptr i) const { return Desc(); } in Get()
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | CoreProperties.td | 11 Desc<"The path to the clang modules cache directory (-fmodules-cache-path).">; 23 Desc<"The path to the LLDB index cache directory.">; 46 Desc<"If true all confirmation prompts will receive their default reply.">; 63 Desc<"The debugger command line prompt displayed for the user.">; 68 Desc<"The script language to be used for evaluating user-written scripts.">; 72 Desc<"The language to use for the REPL.">; 97 Desc<"If true, LLDB will highlight the displayed source code.">; 121 Desc<"The maximum number of columns to use for displaying text.">; 133 Desc<"Whether to use an external editor or not.">; 137 Desc<"Whether to use Ansi color codes or not.">; [all …]
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Utils/ |
| H A D | AMDGPUEmitPrintf.cpp | 56 static Value *callAppendArgs(IRBuilder<> &Builder, Value *Desc, int NumArgs, in callAppendArgs() argument 72 static Value *appendArg(IRBuilder<> &Builder, Value *Desc, Value *Arg, in appendArg() argument 158 return Builder.CreateCall(Fn, {Desc, Str, Length, IsLastInt32}); in callAppendStringN() 166 return callAppendStringN(Builder, Desc, Arg, Length, IsLast); in appendString() 169 static Value *processArg(IRBuilder<> &Builder, Value *Desc, Value *Arg, in processArg() argument 172 return appendString(Builder, Desc, Arg, IsLast); in processArg() 177 return appendArg(Builder, Desc, Arg, IsLast); in processArg() 219 auto Desc = callPrintfBegin(Builder, Builder.getIntN(64, 0)); in emitAMDGPUPrintfCall() local 220 Desc = appendString(Builder, Desc, Fmt, NumOps == 1); in emitAMDGPUPrintfCall() 228 Desc = processArg(Builder, Desc, Args[i], IsCString, IsLast); in emitAMDGPUPrintfCall() [all …]
|
| /llvm-project-15.0.7/openmp/libomptarget/src/ |
| H A D | rtl.cpp | 265 static void registerGlobalCtorsDtorsForImage(__tgt_bin_desc *Desc, in registerGlobalCtorsDtorsForImage() argument 401 void RTLsTy::registerLib(__tgt_bin_desc *Desc) { in registerLib() argument 405 for (int32_t i = 0; i < Desc->NumDeviceImages; ++i) in registerLib() 444 TransTable.HostTable.EntriesEnd = Desc->HostEntriesEnd; in registerLib() 458 registerGlobalCtorsDtorsForImage(Desc, Img, FoundRTL); in registerLib() 473 void RTLsTy::unregisterLib(__tgt_bin_desc *Desc) { in unregisterLib() argument 524 Device.PendingCtorsDtors.erase(Desc); in unregisterLib() 549 for (__tgt_offload_entry *Cur = Desc->HostEntriesBegin; in unregisterLib() 550 Cur < Desc->HostEntriesEnd; ++Cur) { in unregisterLib() 559 DPxPTR(Desc->HostEntriesBegin)); in unregisterLib() [all …]
|
| /llvm-project-15.0.7/llvm/lib/MCA/ |
| H A D | Support.cpp | 50 const MCProcResourceDesc &Desc = *SM.getProcResource(I); in computeProcResourceMasks() local 51 if (Desc.SubUnitsIdxBegin) in computeProcResourceMasks() 59 const MCProcResourceDesc &Desc = *SM.getProcResource(I); in computeProcResourceMasks() local 60 if (!Desc.SubUnitsIdxBegin) in computeProcResourceMasks() 63 for (unsigned U = 0; U < Desc.NumUnits; ++U) { in computeProcResourceMasks() 64 uint64_t OtherMask = Masks[Desc.SubUnitsIdxBegin[U]]; in computeProcResourceMasks() 74 const MCProcResourceDesc &Desc = *SM.getProcResource(I); in computeProcResourceMasks() local 77 << Desc.Name << '\n'); in computeProcResourceMasks()
|
| /llvm-project-15.0.7/llvm/lib/Target/ARM/MCTargetDesc/ |
| H A D | ARMMCTargetDesc.cpp | 181 Desc.OpInfo[I].isOptionalDef()) in isCPSRDefined() 446 if (MemOpIndex + 1 >= Desc.getNumOperands()) in evaluateMemOpAddrForAddrMode_i12() 465 if (MemOpIndex + 2 >= Desc.getNumOperands()) in evaluateMemOpAddrForAddrMode3() 486 if (MemOpIndex + 1 >= Desc.getNumOperands()) in evaluateMemOpAddrForAddrMode5() 505 if (MemOpIndex + 1 >= Desc.getNumOperands()) in evaluateMemOpAddrForAddrMode5FP16() 571 if (!Desc.mayLoad()) in evaluateMemoryOperandAddress() 575 uint64_t TSFlags = Desc.TSFlags; in evaluateMemoryOperandAddress() 582 unsigned OpIndex = Desc.NumDefs; in evaluateMemoryOperandAddress() 583 while (OpIndex < Desc.getNumOperands() && in evaluateMemoryOperandAddress() 586 if (OpIndex == Desc.getNumOperands()) in evaluateMemoryOperandAddress() [all …]
|
| /llvm-project-15.0.7/bolt/lib/RuntimeLibs/ |
| H A D | InstrumentationRuntimeLibrary.cpp | 266 for (const IndCallTargetDescription &Desc : in buildTables() local 271 getOutputAddress(*Desc.Target, Desc.ToLoc.Offset); in buildTables() 278 const size_t LeafNum = Desc.LeafNodes.size(); in buildTables() 280 for (const InstrumentedNode &LeafNode : Desc.LeafNodes) { in buildTables() 284 const size_t EdgesNum = Desc.Edges.size(); in buildTables() 286 for (const EdgeDescription &Edge : Desc.Edges) { in buildTables() 295 const size_t CallsNum = Desc.Calls.size(); in buildTables() 297 for (const CallDescription &Call : Desc.Calls) { in buildTables() 308 const size_t EntryNum = Desc.EntryNodes.size(); in buildTables() 310 for (const EntryNode &EntryNode : Desc.EntryNodes) { in buildTables() [all …]
|
| /llvm-project-15.0.7/lldb/source/Interpreter/ |
| H A D | InterpreterProperties.td | 7 …Desc<"If true, regular expression alias commands will show the expanded command that will be execu… 11 …Desc<"If true, LLDB will prompt you before quitting if there are any live processes being debugged… 15 Desc<"If true, LLDB will save the session's transcripts before quitting.">; 18 …Desc<"A path where LLDB will save the session's transcripts. This is particularly useful when you … 22 Desc<"If true, LLDB will stop running a 'command source' script upon encountering an error.">; 26 Desc<"If true, blank lines will be printed between between REPL submissions.">; 30 Desc<"If true, commands will be echoed before they are evaluated.">; 34 Desc<"If true, commands will be echoed even if they are pure comment lines.">; 38 …Desc<"If true, LLDB will repeat the previous command if no command was passed to the interpreter. … 42 …Desc<"If true, require --overwrite in 'command script add' before overwriting existing user comman…
|
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | DebugCounter.h | 71 static unsigned registerCounter(StringRef Name, StringRef Desc) { in registerCounter() argument 72 return instance().addCounter(std::string(Name), std::string(Desc)); in registerCounter() 135 return std::make_pair(RegisteredCounters[ID], Counters.lookup(ID).Desc); in getCounterInfo() 162 unsigned addCounter(const std::string &Name, const std::string &Desc) { in addCounter() argument 165 Counters[Result].Desc = Desc; in addCounter() 174 std::string Desc; member
|