Home
last modified time | relevance | path

Searched refs:Desc (Results 1 – 25 of 190) sorted by relevance

12345678

/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
DDWARFExpression.cpp27 typedef Op::Description Desc; in getDescriptions() typedef
30 Descriptions[DW_OP_addr] = Desc(Op::Dwarf2, Op::SizeAddr); in getDescriptions()
31 Descriptions[DW_OP_deref] = Desc(Op::Dwarf2); in getDescriptions()
32 Descriptions[DW_OP_const1u] = Desc(Op::Dwarf2, Op::Size1); in getDescriptions()
33 Descriptions[DW_OP_const1s] = Desc(Op::Dwarf2, Op::SignedSize1); in getDescriptions()
34 Descriptions[DW_OP_const2u] = Desc(Op::Dwarf2, Op::Size2); in getDescriptions()
35 Descriptions[DW_OP_const2s] = Desc(Op::Dwarf2, Op::SignedSize2); in getDescriptions()
36 Descriptions[DW_OP_const4u] = Desc(Op::Dwarf2, Op::Size4); in getDescriptions()
37 Descriptions[DW_OP_const4s] = Desc(Op::Dwarf2, Op::SignedSize4); in getDescriptions()
38 Descriptions[DW_OP_const8u] = Desc(Op::Dwarf2, Op::Size8); in getDescriptions()
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Commands/
DOptions.td5 Desc<"Supply a sort order when dumping the symbol table.">,
8 Desc<"Do not demangle symbol names before showing them.">;
13 Desc<"Hide aliases in the command list.">;
15 Desc<"Hide user-defined commands from the list.">;
17 Desc<"Include commands prefixed with an underscore.">;
23 Desc<"Apply the new value to the global default value.">;
25 Desc<"Force an empty value to be accepted as the default.">;
31 Desc<"The file into which to write the settings.">;
33 Desc<"Append to saved settings file if it exists.">;
39 Desc<"The file from which to read the settings.">;
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/Interp/
DInterpBlock.h40 Block(const llvm::Optional<unsigned> &DeclID, Descriptor *Desc,
42 : DeclID(DeclID), IsStatic(IsStatic), IsExtern(IsExtern), Desc(Desc) {} in DeclID()
44 Block(Descriptor *Desc, bool IsStatic = false, bool IsExtern = false)
46 Desc(Desc) {}
49 Descriptor *getDescriptor() const { return Desc; } in getDescriptor()
57 bool isTemporary() const { return Desc->IsTemporary; } in isTemporary()
59 InterpSize getSize() const { return Desc->getAllocSize(); } in getSize()
73 if (Desc->CtorFn) in invokeCtor()
74 Desc->CtorFn(this, data(), Desc->IsConst, Desc->IsMutable, in invokeCtor()
75 /*isActive=*/true, Desc); in invokeCtor()
[all …]
DDescriptor.cpp65 auto *Desc = reinterpret_cast<InlineDescriptor *>(ElemPtr); in ctorArrayDesc() local
66 auto *ElemLoc = reinterpret_cast<char *>(Desc + 1); in ctorArrayDesc()
69 Desc->Offset = ElemOffset + sizeof(InlineDescriptor); in ctorArrayDesc()
70 Desc->Desc = SD; in ctorArrayDesc()
71 Desc->IsInitialized = true; in ctorArrayDesc()
72 Desc->IsBase = false; in ctorArrayDesc()
73 Desc->IsActive = IsActive; in ctorArrayDesc()
74 Desc->IsConst = IsConst || D->IsConst; in ctorArrayDesc()
75 Desc->IsMutable = IsMutable || D->IsMutable; in ctorArrayDesc()
77 Fn(B, ElemLoc, Desc->IsConst, Desc->IsMutable, IsActive, D->ElemDesc); in ctorArrayDesc()
[all …]
DProgram.cpp41 Descriptor *Desc = allocateDescriptor(S, CharType, S->getLength() + 1, in createGlobalString() local
49 unsigned Sz = Desc->getAllocSize(); in createGlobalString()
50 auto *G = new (Allocator, Sz) Global(Desc, /*isStatic=*/true, in createGlobalString()
165 Descriptor *Desc; in createGlobal() local
169 Desc = createDescriptor(D, *T, IsConst, IsTemporary); in createGlobal()
171 Desc = createDescriptor(D, Ty.getTypePtr(), IsConst, IsTemporary); in createGlobal()
173 if (!Desc) in createGlobal()
179 auto *G = new (Allocator, Desc->getAllocSize()) in createGlobal()
180 Global(getCurrentDecl(), Desc, IsStatic, IsExtern); in createGlobal()
243 if (Descriptor *Desc = GetBaseDesc(BD, BR)) { in getOrCreateRecord() local
[all …]
DPointer.cpp89 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()
DInterpState.cpp58 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()
DInterpFrame.cpp30 Block *B = new (localBlock(Local.Offset)) Block(Local.Desc); in InterpFrame()
69 auto printDesc = [&OS, &Ctx](Descriptor *Desc) { in print() argument
70 if (auto *D = Desc->asDecl()) { in print()
82 if (auto *E = Desc->asExpr()) { in print()
169 const auto &Desc = Func->getParamDescriptor(Off); in getParamPointer() local
170 size_t BlockSize = sizeof(Block) + Desc.second->getAllocSize(); in getParamPointer()
172 auto *B = new (Memory.get()) Block(Desc.second); in getParamPointer()
175 TYPE_SWITCH(Desc.first, new (B->data()) T(stackRef<T>(Off))); in getParamPointer()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
DTargetProperties.td6Desc<"If true, inject local variables explicitly into the expression text. This will fix symbol re…
13 Desc<"Default architecture to choose, when there's a choice.">;
16 Desc<"Move breakpoints to nearest code.">;
19 Desc<"The language to use when interpreting expressions entered in commands.">;
22 Desc<"Path to a file containing expressions to be prepended to all expressions.">;
25 Desc<"The maximum amount of errors to emit while parsing an expression. "
30 Desc<"Should printed values be shown as their dynamic value.">;
33 Desc<"Should synthetic values be used by default whenever available.">;
36 Desc<"Skip function prologues when setting breakpoints by name.">;
39Desc<"Source path remappings apply substitutions to the paths of source files, typically needed to…
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DStreamChecker.cpp176 SVal getStreamArg(const FnDescription *Desc, const CallEvent &Call) { in getStreamArg() argument
177 assert(Desc && Desc->StreamArgNo != ArgNone && in getStreamArg()
179 return Call.getArgSVal(Desc->StreamArgNo); in getStreamArg()
280 void evalFopen(const FnDescription *Desc, const CallEvent &Call,
283 void preFreopen(const FnDescription *Desc, const CallEvent &Call,
285 void evalFreopen(const FnDescription *Desc, const CallEvent &Call,
288 void evalFclose(const FnDescription *Desc, const CallEvent &Call,
291 void preFread(const FnDescription *Desc, const CallEvent &Call,
294 void preFwrite(const FnDescription *Desc, const CallEvent &Call,
297 void evalFreadFwrite(const FnDescription *Desc, const CallEvent &Call,
[all …]
DObjCSuperDeallocChecker.cpp53 void reportUseAfterDealloc(SymbolRef Sym, StringRef Desc, const Stmt *S,
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()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
DLSUnit.cpp70 const InstrDesc &Desc = IR.getInstruction()->getDesc(); in dispatch() local
71 unsigned IsMemBarrier = Desc.HasSideEffects; in dispatch()
72 assert((Desc.MayLoad || Desc.MayStore) && "Not a memory operation!"); in dispatch()
74 if (Desc.MayLoad) in dispatch()
76 if (Desc.MayStore) in dispatch()
79 if (Desc.MayStore) { in dispatch()
117 if (Desc.MayLoad) { in dispatch()
126 assert(Desc.MayLoad && "Expected a load!"); in dispatch()
196 const InstrDesc &Desc = IR.getInstruction()->getDesc(); in isAvailable() local
197 if (Desc.MayLoad && isLQFull()) in isAvailable()
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Core/
DCoreProperties.td7Desc<"Control the use of external tools and repositories to locate symbol files. Directories liste…
11 Desc<"The path to the clang modules cache directory (-fmodules-cache-path).">;
15Desc<"Debug info path which should be resolved while parsing, relative to the host filesystem.">;
22 Desc<"If true all confirmation prompts will receive their default reply.">;
26 Desc<"The default disassembly format string to use when disassembling instruction sequences.">;
30Desc<"The default frame format string to use when displaying stack frame information for threads."…
34 Desc<"Notify the user explicitly if an expression returns void (default: false).">;
39 Desc<"The debugger command line prompt displayed for the user.">;
44 Desc<"The script language to be used for evaluating user-written scripts.">;
48 Desc<"The number of disassembly lines to show when displaying a stopped context.">;
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
DX86ATTInstPrinter.cpp87 const MCInstrDesc &Desc = MII.get(MI->getOpcode()); in printVecCompareInstr() local
102 if ((Desc.TSFlags & X86II::FormMask) == X86II::MRMSrcMem) { in printVecCompareInstr()
103 if ((Desc.TSFlags & X86II::OpPrefixMask) == X86II::XS) in printVecCompareInstr()
105 else if ((Desc.TSFlags & X86II::OpPrefixMask) == X86II::XD) in printVecCompareInstr()
160 unsigned CurOp = (Desc.TSFlags & X86II::EVEX_K) ? 3 : 2; in printVecCompareInstr()
162 if ((Desc.TSFlags & X86II::FormMask) == X86II::MRMSrcMem) { in printVecCompareInstr()
163 if (Desc.TSFlags & X86II::EVEX_B) { in printVecCompareInstr()
166 if (Desc.TSFlags & X86II::VEX_W) in printVecCompareInstr()
173 if (Desc.TSFlags & X86II::EVEX_L2) in printVecCompareInstr()
174 NumElts = (Desc.TSFlags & X86II::VEX_W) ? 8 : 16; in printVecCompareInstr()
[all …]
DX86IntelInstPrinter.cpp67 const MCInstrDesc &Desc = MII.get(MI->getOpcode()); in printVecCompareInstr() local
85 if ((Desc.TSFlags & X86II::FormMask) == X86II::MRMSrcMem) { in printVecCompareInstr()
86 if ((Desc.TSFlags & X86II::OpPrefixMask) == X86II::XS) in printVecCompareInstr()
88 else if ((Desc.TSFlags & X86II::OpPrefixMask) == X86II::XD) in printVecCompareInstr()
142 if (Desc.TSFlags & X86II::EVEX_K) { in printVecCompareInstr()
152 if ((Desc.TSFlags & X86II::FormMask) == X86II::MRMSrcMem) { in printVecCompareInstr()
153 if (Desc.TSFlags & X86II::EVEX_B) { in printVecCompareInstr()
156 if (Desc.TSFlags & X86II::VEX_W) in printVecCompareInstr()
163 if (Desc.TSFlags & X86II::EVEX_L2) in printVecCompareInstr()
164 NumElts = (Desc.TSFlags & X86II::VEX_W) ? 8 : 16; in printVecCompareInstr()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
DAMDGPUEmitPrintf.cpp69 static Value *callAppendArgs(IRBuilder<> &Builder, Value *Desc, int NumArgs, in callAppendArgs() argument
81 return Builder.CreateCall(Fn, {Desc, NumArgsValue, Arg0, Arg1, Arg2, Arg3, in callAppendArgs()
85 static Value *appendArg(IRBuilder<> &Builder, Value *Desc, Value *Arg, in appendArg() argument
89 return callAppendArgs(Builder, Desc, 1, Arg0, Zero, Zero, Zero, Zero, Zero, in appendArg()
162 static Value *callAppendStringN(IRBuilder<> &Builder, Value *Desc, Value *Str, in callAppendStringN() argument
171 return Builder.CreateCall(Fn, {Desc, Str, Length, IsLastInt32}); in callAppendStringN()
174 static Value *appendString(IRBuilder<> &Builder, Value *Desc, Value *Arg, in appendString() argument
177 return callAppendStringN(Builder, Desc, Arg, Length, IsLast); in appendString()
180 static Value *processArg(IRBuilder<> &Builder, Value *Desc, Value *Arg, in processArg() argument
183 return appendString(Builder, Desc, Arg, IsLast); in processArg()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MCA/
DSupport.cpp50 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()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Interpreter/
DInterpreterProperties.td7Desc<"If true, regular expression alias commands will show the expanded command that will be execu…
11Desc<"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.">;
18Desc<"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.">;
38Desc<"If true, LLDB will repeat the previous command if no command was passed to the interpreter. …
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
DDebugCounter.h71 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
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
DCheckerRegistryData.cpp157 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-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
DWebAssemblyInstPrinter.cpp83 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.OpInfo[I].OperandType != WebAssembly::OPERAND_BASIC_BLOCK) in printInst()
296 const MCInstrDesc &Desc = MII.get(MI->getOpcode()); in printOperand() local
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/M68k/MCTargetDesc/
DM68kMCCodeEmitter.cpp54 const MCInstrDesc &Desc, uint64_t &Buffer,
59 const MCInstrDesc &Desc, uint64_t &Buffer, unsigned Offset,
64 const MCInstrDesc &Desc, uint64_t &Buffer, unsigned Offset,
77 const MCInstrDesc &Desc, in encodeBits() argument
108 const MCInst &MI, const MCInstrDesc &Desc, in encodeReg() argument
138 bool IsPCRel = Desc.OpInfo[MIOpIdx].OperandType == MCOI::OPERAND_PCREL; in encodeReg()
183 const MCInst &MI, const MCInstrDesc &Desc, in encodeImm() argument
199 bool IsPCRel = Desc.OpInfo[MIOpIdx].OperandType == MCOI::OPERAND_PCREL; in encodeImm()
319 const MCInstrDesc &Desc = MCII.get(Opcode); in encodeInstruction() local
351 encodeBits(ThisByte, Bead, MI, Desc, Buffer, Offset, Fixups, STI); in encodeInstruction()
[all …]
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
Dtsan_mutexset.h25 struct Desc { struct
38 Desc Get(uptr i) const; argument
47 Desc descs_[kMaxSize];
64 MutexSet::Desc MutexSet::Get(uptr i) const { return Desc(); } in Get()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
DSIMCCodeEmitter.cpp308 const MCInstrDesc &Desc = MCII.get(Opcode); in encodeInstruction() local
309 unsigned bytes = Desc.getSize(); in encodeInstruction()
313 if ((Desc.TSFlags & SIInstrFlags::VOP3P) || in encodeInstruction()
324 if (AMDGPU::isGFX10Plus(STI) && Desc.TSFlags & SIInstrFlags::MIMG) { in encodeInstruction()
345 for (unsigned i = 0, e = Desc.getNumOperands(); i < e; ++i) { in encodeInstruction()
348 if (!AMDGPU::isSISrcOperand(Desc, i)) in encodeInstruction()
353 if (getLitEncoding(Op, Desc.OpInfo[i], STI) != 255) in encodeInstruction()
420 const MCInstrDesc &Desc = MCII.get(MI.getOpcode()); in getSDWASrcEncoding() local
421 uint32_t Enc = getLitEncoding(MO, Desc.OpInfo[OpNo], STI); in getSDWASrcEncoding()
521 const MCInstrDesc &Desc = MCII.get(MI.getOpcode()); in getMachineOpValue() local
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinterDwarf.cpp40 void AsmPrinter::emitSLEB128(int64_t Value, const char *Desc) const { in emitSLEB128()
41 if (isVerbose() && Desc) in emitSLEB128()
42 OutStreamer->AddComment(Desc); in emitSLEB128()
47 void AsmPrinter::emitULEB128(uint64_t Value, const char *Desc, in emitULEB128() argument
49 if (isVerbose() && Desc) in emitULEB128()
50 OutStreamer->AddComment(Desc); in emitULEB128()
116 void AsmPrinter::emitEncodingByte(unsigned Val, const char *Desc) const { in emitEncodingByte()
118 if (Desc) in emitEncodingByte()
119 OutStreamer->AddComment(Twine(Desc) + " Encoding = " + in emitEncodingByte()

12345678