Home
last modified time | relevance | path

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

12345678910>>...25

/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFExpression.cpp28 typedef Op::Description Desc; in getDescriptions() typedef
31 Descriptions[DW_OP_addr] = Desc(Op::Dwarf2, Op::SizeAddr); in getDescriptions()
32 Descriptions[DW_OP_deref] = Desc(Op::Dwarf2); in getDescriptions()
33 Descriptions[DW_OP_const1u] = Desc(Op::Dwarf2, Op::Size1); in getDescriptions()
34 Descriptions[DW_OP_const1s] = Desc(Op::Dwarf2, Op::SignedSize1); in getDescriptions()
35 Descriptions[DW_OP_const2u] = Desc(Op::Dwarf2, Op::Size2); in getDescriptions()
36 Descriptions[DW_OP_const2s] = Desc(Op::Dwarf2, Op::SignedSize2); in getDescriptions()
37 Descriptions[DW_OP_const4u] = Desc(Op::Dwarf2, Op::Size4); in getDescriptions()
38 Descriptions[DW_OP_const4s] = Desc(Op::Dwarf2, Op::SignedSize4); in getDescriptions()
39 Descriptions[DW_OP_const8u] = Desc(Op::Dwarf2, Op::Size8); in getDescriptions()
[all …]
/external/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 …]
/external/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 …]
/external/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 …]
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()
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()
/external/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 …]
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DStreamChecker.cpp164 SVal getStreamArg(const FnDescription *Desc, const CallEvent &Call) { in getStreamArg() argument
165 assert(Desc && Desc->StreamArgNo != ArgNone && in getStreamArg()
167 return Call.getArgSVal(Desc->StreamArgNo); in getStreamArg()
266 void evalFopen(const FnDescription *Desc, const CallEvent &Call,
269 void preFreopen(const FnDescription *Desc, const CallEvent &Call,
271 void evalFreopen(const FnDescription *Desc, const CallEvent &Call,
274 void evalFclose(const FnDescription *Desc, const CallEvent &Call,
277 void preFread(const FnDescription *Desc, const CallEvent &Call,
280 void preFwrite(const FnDescription *Desc, const CallEvent &Call,
283 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 …]
/external/starlark-go/lib/proto/
Dproto.go186 return FileDescriptor{Desc: desc}, nil
212 if field.Desc.ContainingMessage() != msg.desc() {
215 fdesc = field.Desc
252 return unmarshalData(desc.Desc, []byte(data), true)
262 return unmarshalData(desc.Desc, []byte(data), false)
280 if field.Desc.ContainingMessage() != m.desc() {
284 return starlark.None, setField(m.msg, field.Desc, v)
297 if field.Desc.ContainingMessage() != msg.desc() {
301 return msg.getField(field.Desc), nil
314 msg: newMessage(d.Desc),
[all …]
/external/swiftshader/third_party/llvm-10.0/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()
104 if (Desc.MayLoad) { in dispatch()
113 assert(Desc.MayLoad && "Expected a load!"); in dispatch()
154 const InstrDesc &Desc = IR.getInstruction()->getDesc(); in isAvailable() local
155 if (Desc.MayLoad && isLQFull()) in isAvailable()
[all …]
/external/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 …]
/external/swiftshader/third_party/llvm-10.0/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 …]
/external/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 …]
/external/llvm-project/llvm/lib/Transforms/Utils/
DAMDGPUEmitPrintf.cpp72 static Value *callAppendArgs(IRBuilder<> &Builder, Value *Desc, int NumArgs, in callAppendArgs() argument
84 return Builder.CreateCall(Fn, {Desc, NumArgsValue, Arg0, Arg1, Arg2, Arg3, in callAppendArgs()
88 static Value *appendArg(IRBuilder<> &Builder, Value *Desc, Value *Arg, in appendArg() argument
92 return callAppendArgs(Builder, Desc, 1, Arg0, Zero, Zero, Zero, Zero, Zero, in appendArg()
165 static Value *callAppendStringN(IRBuilder<> &Builder, Value *Desc, Value *Str, in callAppendStringN() argument
174 return Builder.CreateCall(Fn, {Desc, Str, Length, IsLastInt32}); in callAppendStringN()
177 static Value *appendString(IRBuilder<> &Builder, Value *Desc, Value *Arg, in appendString() argument
180 return callAppendStringN(Builder, Desc, Arg, Length, IsLast); in appendString()
183 static Value *processArg(IRBuilder<> &Builder, Value *Desc, Value *Arg, in processArg() argument
186 return appendString(Builder, Desc, Arg, IsLast); in processArg()
[all …]
/external/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 …]
/external/swiftshader/third_party/llvm-10.0/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()
/external/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()
/external/clang/lib/StaticAnalyzer/Checkers/
DObjCSuperDeallocChecker.cpp54 void reportUseAfterDealloc(SymbolRef Sym, StringRef Desc, const Stmt *S,
101 StringRef Desc; in checkPreObjCMessage() local
104 Desc = "[super dealloc] should not be called multiple times"; in checkPreObjCMessage()
106 Desc = StringRef(); in checkPreObjCMessage()
109 reportUseAfterDealloc(ReceiverSymbol, Desc, M.getOriginExpr(), C); in checkPreObjCMessage()
164 StringRef Desc = StringRef(); in checkLocation() local
172 Desc = OS.str(); in checkLocation()
175 reportUseAfterDealloc(BaseSym, Desc, S, C); in checkLocation()
182 StringRef Desc, in reportUseAfterDealloc() argument
193 if (Desc.empty()) in reportUseAfterDealloc()
[all …]
/external/skia/src/gpu/gl/
DGrGLTexture.h21 struct Desc { struct
31 GrGLTexture(GrGLGpu*, SkBudgeted, const Desc&, GrMipmapStatus); argument
55 const Desc&,
63 GrGLTexture(GrGLGpu*, const Desc&, sk_sp<GrGLTextureParameters>, GrMipmapStatus);
67 const Desc&,
73 void init(const Desc&);
/external/llvm/lib/Target/AMDGPU/MCTargetDesc/
DSIMCCodeEmitter.cpp41 bool isSrcOperand(const MCInstrDesc &Desc, unsigned OpNo) const;
78 bool SIMCCodeEmitter::isSrcOperand(const MCInstrDesc &Desc, in isSrcOperand() argument
80 unsigned OpType = Desc.OpInfo[OpNo].OperandType; in isSrcOperand()
196 const MCInstrDesc &Desc = MCII.get(MI.getOpcode()); in encodeInstruction() local
197 unsigned bytes = Desc.getSize(); in encodeInstruction()
210 if (!isSrcOperand(Desc, i)) in encodeInstruction()
213 int RCID = Desc.OpInfo[i].RegClass; in encodeInstruction()
281 const MCInstrDesc &Desc = MCII.get(MI.getOpcode()); in getMachineOpValue() local
282 if (isSrcOperand(Desc, OpNo)) { in getMachineOpValue()
283 int RCID = Desc.OpInfo[OpNo].RegClass; in getMachineOpValue()
[all …]

12345678910>>...25