| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFExpression.cpp | 23 typedef Op::Description Desc; typedef 26 std::vector<Desc> Descriptions; in getOpDescriptions() 71 Descriptions[LA] = Desc(Op::Dwarf2); in getOpDescriptions() 73 Descriptions[LA] = Desc(Op::Dwarf2); in getOpDescriptions() 112 static Desc getDescImpl(ArrayRef<Desc> Descriptions, unsigned Opcode) { in getDescImpl() 129 std::vector<Desc> Descriptions; in getSubOpDescriptions() 147 Desc = getOpDesc(Opcode); in extract() 151 Operands.resize(Desc.Op.size()); in extract() 154 unsigned Size = Desc.Op[Operand]; in extract() 292 if (!Desc.Op.size() || Desc.Op[0] != Operation::SizeSubOpLEB) in getSubCode() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | InterpBlock.h | 54 : DeclID(DeclID), IsStatic(IsStatic), IsExtern(IsExtern), Desc(Desc) {} in DeclID() 58 Desc(Desc) {} 80 size_t DataOffset = Desc->getMetadataSize(); in data() 85 size_t DataOffset = Desc->getMetadataSize(); in data() 108 if (Desc->CtorFn) in invokeCtor() 109 Desc->CtorFn(this, data(), Desc->IsConst, Desc->IsMutable, in invokeCtor() 110 /*isActive=*/true, Desc); in invokeCtor() 116 if (Desc->DtorFn) in invokeDtor() 117 Desc->DtorFn(this, data(), Desc); in invokeDtor() 127 : IsStatic(IsStatic), IsExtern(IsExtern), IsDead(true), Desc(Desc) {} in Block() [all …]
|
| H A D | Descriptor.cpp | 87 Desc->Desc = SD; in ctorArrayDesc() 88 Desc->IsInitialized = true; in ctorArrayDesc() 89 Desc->IsBase = false; in ctorArrayDesc() 90 Desc->IsActive = IsActive; in ctorArrayDesc() 94 Fn(B, ElemLoc, Desc->IsConst, Desc->IsFieldMutable, IsActive, in ctorArrayDesc() 141 Desc->Offset = SubOff; in ctorRecord() 142 Desc->Desc = F; in ctorRecord() 144 Desc->IsBase = IsBase; in ctorRecord() 149 Fn(B, Ptr + SubOff, Desc->IsConst, Desc->IsFieldMutable, Desc->IsActive, in ctorRecord() 166 DtorSub(F.Offset, F.Desc); in dtorRecord() [all …]
|
| H A D | Program.cpp | 57 Descriptor *Desc = in createGlobalString() local 66 unsigned Sz = Desc->getAllocSize(); in createGlobalString() 151 auto *G = new (Allocator, Desc->getAllocSize()) in getOrCreateDummy() 190 Descriptor *Desc; in createGlobal() local 199 if (!Desc) in createGlobal() 205 auto *G = new (Allocator, Desc->getAllocSize()) in createGlobal() 293 Descriptor *Desc; in getOrCreateRecord() local 301 if (!Desc) in getOrCreateRecord() 303 Fields.push_back({FD, BaseSize, Desc}); in getOrCreateRecord() 304 BaseSize += align(Desc->getAllocSize()); in getOrCreateRecord() [all …]
|
| H A D | EvalEmitter.cpp | 67 InlineDescriptor &Desc = *reinterpret_cast<InlineDescriptor *>(B->rawData()); in createLocal() local 68 Desc.Desc = D; in createLocal() 69 Desc.Offset = sizeof(InlineDescriptor); in createLocal() 70 Desc.IsActive = true; in createLocal() 71 Desc.IsBase = false; in createLocal() 72 Desc.IsFieldMutable = false; in createLocal() 73 Desc.IsConst = false; in createLocal() 74 Desc.IsInitialized = false; in createLocal() 178 InlineDescriptor &Desc = *reinterpret_cast<InlineDescriptor *>(B->rawData()); in emitSetLocal() local 179 Desc.IsInitialized = true; in emitSetLocal()
|
| H A D | InterpState.cpp | 50 const Descriptor *Desc = B->getDescriptor(); in deallocate() local 51 assert(Desc); in deallocate() 62 if (Desc->MoveFn) { in deallocate() 63 Desc->MoveFn(B, B->data(), D->data(), Desc); in deallocate() 64 if (Desc->getMetadataSize() > 0) in deallocate() 65 std::memcpy(D->rawData(), B->rawData(), Desc->getMetadataSize()); in deallocate()
|
| H A D | Pointer.cpp | 97 const Descriptor *Desc = getDeclDesc(); in toAPValue() local 98 if (auto *VD = Desc->asValueDecl()) in toAPValue() 100 else if (auto *E = Desc->asExpr()) in toAPValue() 111 } else if (Desc->asExpr()) { in toAPValue() 130 const Descriptor *Desc = Ptr.getFieldDesc(); in toAPValue() local 162 const Descriptor *Desc = getFieldDesc(); in isInitialized() local 163 assert(Desc); in isInitialized() 164 if (Desc->isPrimitiveArray()) { in isInitialized() 185 const Descriptor *Desc = getFieldDesc(); in initialize() local 187 assert(Desc); in initialize() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Commands/ |
| H A D | Options.td | 53 Desc<"Clear all settings.">; 99 Desc<"Enable the breakpoint.">; 101 Desc<"Disable the breakpoint.">; 583 Desc<"Allow user to read.">; 585 Desc<"Allow user to write.">; 589 Desc<"Allow group to read.">; 591 Desc<"Allow group to write.">; 595 Desc<"Allow world to read.">; 597 Desc<"Allow world to write.">; 896 Desc<"Enable verbose dump.">; [all …]
|
| /freebsd-14.2/contrib/llvm-project/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.">; 81 Desc<"Print the fixed expression text.">; 97 Desc<"Maximum depth to expand children.">; 156 Desc<"Show immediates in disassembly as hexadecimal.">; 239 Desc<"The memory cache line size">; 249 Desc<"If true, stop when the inferior exec's.">; 276 Desc<"Debugger's behavior upon fork or vfork.">; 283 Desc<"Use module cache.">; 287 Desc<"Root directory for cached modules.">; [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | StreamChecker.cpp | 180 assert(Desc && Desc->StreamArgNo != ArgNone && in getStreamArg() 182 return Call.getArgSVal(Desc->StreamArgNo); in getStreamArg() 555 const FnDescription *Desc = lookupFn(Call); in checkPreCall() local 556 if (!Desc || !Desc->PreFn) in checkPreCall() 559 Desc->PreFn(this, Desc, Call, C); in checkPreCall() 564 if (!Desc && TestMode) in evalCall() 565 Desc = FnTestDescriptions.lookup(Call); in evalCall() 566 if (!Desc || !Desc->EvalFn) in evalCall() 569 Desc->EvalFn(this, Desc, Call, C); in evalCall() 699 SVal StreamVal = getStreamArg(Desc, Call); in preReadWrite() [all …]
|
| H A D | ObjCSuperDeallocChecker.cpp | 97 StringRef Desc; in checkPreObjCMessage() local 100 Desc = "[super dealloc] should not be called multiple times"; in checkPreObjCMessage() 102 Desc = StringRef(); in checkPreObjCMessage() 105 reportUseAfterDealloc(ReceiverSymbol, Desc, M.getOriginExpr(), C); in checkPreObjCMessage() 159 StringRef Desc = StringRef(); in checkLocation() local 167 Desc = OS.str(); in checkLocation() 170 reportUseAfterDealloc(BaseSym, Desc, S, C); in checkLocation() 177 StringRef Desc, in reportUseAfterDealloc() argument 188 if (Desc.empty()) in reportUseAfterDealloc() 189 Desc = "Use of 'self' after it has been deallocated"; in reportUseAfterDealloc() [all …]
|
| /freebsd-14.2/contrib/llvm-project/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 …]
|
| /freebsd-14.2/contrib/llvm-project/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()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/ |
| H A D | X86ATTInstPrinter.cpp | 177 if (Desc.TSFlags & X86II::EVEX_B) { in printVecCompareInstr() 183 } else if (Desc.TSFlags & X86II::REX_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::REX_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 …]
|
| 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::REX_W) in printVecCompareInstr() 331 if (Desc.TSFlags & X86II::EVEX_L2) in printVecCompareInstr() 333 else if (Desc.TSFlags & X86II::VEX_L) in printVecCompareInstr() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Core/ |
| H A D | CoreProperties.td | 27 Desc<"The path to the LLDB index cache directory.">; 50 Desc<"If true all confirmation prompts will receive their default reply.">; 67 Desc<"The debugger command line prompt displayed for the user.">; 84 Desc<"The language to use for the REPL.">; 109 Desc<"If true, LLDB will highlight the displayed source code.">; 133 Desc<"The maximum number of columns to use for displaying text.">; 145 Desc<"Whether to use an external editor or not.">; 149 Desc<"External editor to use when use-external-editor is enabled.">; 153 Desc<"Whether to use Ansi color codes or not.">; 169 Desc<"Whether to cache source files in memory or not.">; [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/ |
| H A D | RISCVBaseInfo.h | 191 const uint64_t TSFlags = Desc.TSFlags; in getVLOpNum() 198 return Desc.getNumOperands() - Offset; in getVLOpNum() 202 const uint64_t TSFlags = Desc.TSFlags; in getSEWOpNum() 207 return Desc.getNumOperands() - Offset; in getSEWOpNum() 211 assert(hasVecPolicyOp(Desc.TSFlags)); in getVecPolicyOpNum() 212 return Desc.getNumOperands() - 1; in getVecPolicyOpNum() 218 const uint64_t TSFlags = Desc.TSFlags; in getFRMOpNum() 227 return getVLOpNum(Desc) - 1; in getFRMOpNum() 241 return getVLOpNum(Desc) - 1; in getVXRMOpNum() 249 return Desc.getNumDefs() < Desc.getNumOperands() && in isFirstDefTiedToFirstUse() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MCA/ |
| H A D | Support.cpp | 51 const MCProcResourceDesc &Desc = *SM.getProcResource(I); in computeProcResourceMasks() local 52 if (Desc.SubUnitsIdxBegin) in computeProcResourceMasks() 60 const MCProcResourceDesc &Desc = *SM.getProcResource(I); in computeProcResourceMasks() local 61 if (!Desc.SubUnitsIdxBegin) in computeProcResourceMasks() 64 for (unsigned U = 0; U < Desc.NumUnits; ++U) { in computeProcResourceMasks() 65 uint64_t OtherMask = Masks[Desc.SubUnitsIdxBegin[U]]; in computeProcResourceMasks() 75 const MCProcResourceDesc &Desc = *SM.getProcResource(I); in computeProcResourceMasks() local 78 << Desc.Name << '\n'); in computeProcResourceMasks()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ |
| H A D | ARMMCTargetDesc.cpp | 180 Desc.operands()[I].isOptionalDef()) in isCPSRDefined() 444 if (MemOpIndex + 1 >= Desc.getNumOperands()) in evaluateMemOpAddrForAddrMode_i12() 462 if (MemOpIndex + 2 >= Desc.getNumOperands()) in evaluateMemOpAddrForAddrMode3() 482 if (MemOpIndex + 1 >= Desc.getNumOperands()) in evaluateMemOpAddrForAddrMode5() 501 if (MemOpIndex + 1 >= Desc.getNumOperands()) in evaluateMemOpAddrForAddrMode5FP16() 567 if (!Desc.mayLoad()) in evaluateMemoryOperandAddress() 571 uint64_t TSFlags = Desc.TSFlags; in evaluateMemoryOperandAddress() 578 unsigned OpIndex = Desc.NumDefs; in evaluateMemoryOperandAddress() 579 while (OpIndex < Desc.getNumOperands() && in evaluateMemoryOperandAddress() 582 if (OpIndex == Desc.getNumOperands()) in evaluateMemoryOperandAddress() [all …]
|
| /freebsd-14.2/contrib/llvm-project/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.">; 19 Desc<"If true, LLDB will open the saved session's transcripts in the external editor.">; 22 …Desc<"A path where LLDB will save the session's transcripts. This is particularly useful when you … 26 Desc<"If true, LLDB will stop running a 'command source' script upon encountering an error.">; 30 Desc<"If true, blank lines will be printed between between REPL submissions.">; 34 Desc<"If true, commands will be echoed before they are evaluated.">; 38 Desc<"If true, commands will be echoed even if they are pure comment lines.">; 42 …Desc<"If true, LLDB will repeat the previous command if no command was passed to the interpreter. … [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | DebugCounter.h | 69 static unsigned registerCounter(StringRef Name, StringRef Desc) { in registerCounter() argument 70 return instance().addCounter(std::string(Name), std::string(Desc)); in registerCounter() 133 return std::make_pair(RegisteredCounters[ID], Counters.lookup(ID).Desc); in getCounterInfo() 160 unsigned addCounter(const std::string &Name, const std::string &Desc) { in addCounter() argument 163 Counters[Result].Desc = Desc; in addCounter() 172 std::string Desc; member
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/TableGen/ |
| H A D | TableGenBackend.h | 36 Opt(StringRef Name, FnT CB, StringRef Desc, bool ByDefault = false) { 39 Action->getParser().addLiteralOption(Name, CB, Desc); 47 OptClass(StringRef Name, StringRef Desc) : Opt(Name, run, Desc) {} in OptClass() argument 54 void emitSourceFileHeader(StringRef Desc, raw_ostream &OS,
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVDeadRegisterDefinitions.cpp | 64 const MCInstrDesc &Desc = MI.getDesc(); in runOnMachineFunction() local 65 if (!Desc.mayLoad() && !Desc.mayStore() && in runOnMachineFunction() 66 !Desc.hasUnmodeledSideEffects()) in runOnMachineFunction() 71 for (int I = 0, E = Desc.getNumDefs(); I != E; ++I) { in runOnMachineFunction() 87 const TargetRegisterClass *RC = TII->getRegClass(Desc, I, TRI, MF); in runOnMachineFunction()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | CheckerRegistryData.cpp | 157 Print(Out, Checker, Checker.Desc); in printCheckerWithDescList() 164 ("(Enable only for development!) " + Checker.Desc).str()); in printCheckerWithDescList() 169 Print(Out, Checker, Checker.Desc); in printCheckerWithDescList() 203 StringRef Desc) { in printCheckerOptionList() argument 204 AnalyzerOptions::printFormattedEntry(Out, {FullOption, Desc}, in printCheckerOptionList() 215 std::string Desc = in printCheckerOptionList() local 226 Print(Out, FullOption, Desc); in printCheckerOptionList() 234 llvm::Twine("(Enable only for development!) " + Desc).str()); in printCheckerOptionList() 239 Print(Out, FullOption, Desc); in printCheckerOptionList()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
| H A D | WebAssemblyInstPrinter.cpp | 83 const MCInstrDesc &Desc = MII.get(MI->getOpcode()); in printInst() local 84 if (Desc.isVariadic()) { in printInst() 85 if ((Desc.getNumOperands() == 0 && MI->getNumOperands() > 0) || in printInst() 86 Desc.variadicOpsAreDefs()) in printInst() 88 unsigned Start = Desc.getNumOperands(); in printInst() 90 if (Desc.variadicOpsAreDefs()) { in printInst() 95 bool NeedsComma = Desc.getNumOperands() > 0 && !Desc.variadicOpsAreDefs(); in printInst() 237 unsigned NumFixedOperands = Desc.NumOperands; in printInst() 243 if (Desc.operands()[I].OperandType != WebAssembly::OPERAND_BASIC_BLOCK) in printInst() 296 const MCInstrDesc &Desc = MII.get(MI->getOpcode()); in printOperand() local [all …]
|