Home
last modified time | relevance | path

Searched refs:CMD (Results 1 – 21 of 21) sorted by relevance

/llvm-project-15.0.7/clang/test/Index/
H A Dcompile_commands.json22 …mpilation-db lookup /home/john.doe/MyProject/project.cpp %s | FileCheck -check-prefix=FILE-1-CMD %s
23 # FILE-1-CMD: workdir:'/home/john.doe/MyProject' cmdline:'clang++ -o project.o -c /home/john.doe/M…
25 …pilation-db lookup /home/john.doe/MyProject/project2.cpp %s | FileCheck -check-prefix=FILE-2-CMD %s
26 # FILE-2-CMD: workdir:'/home/john.doe/MyProjectA' cmdline:'clang++ -o project2.o -c /home/john.doe/…
27 # FILE-2-CMD: workdir:'/home/john.doe/MyProjectB' cmdline:'clang++ -DFEATURE=1 -o project2-feature.…
/llvm-project-15.0.7/llvm/lib/Target/M68k/
H A DM68kInstrArithmetic.td69 bits<4> CMD>
74 CMD, (operand "$dst", 3),
94 CMD, (operand "$opd", 3),
108 (descend CMD, (operand "$dst", 3),
135 (descend CMD, (operand "$dst", 3),
150 (descend 0b0000, CMD,
171 (descend CMD, (operand "$opd", 3),
183 (descend 0b0000, CMD,
332 let Inst = (descend CMD,
576 let Inst = (descend CMD,
[all …]
/llvm-project-15.0.7/lld/test/ELF/
H A Dppc64-sort-small-cm-relocs.s24 # RUN: FileCheck %s -check-prefix=SEC-CMD < %t.map
85 # SEC-CMD: .got
86 # SEC-CMD-NEXT: <internal>:(.got)
87 # SEC-CMD-NEXT: .toc
88 # SEC-CMD-NEXT: {{.*}}4.o:(.toc)
89 # SEC-CMD-NEXT: {{.*}}1.o:(.toc)
90 # SEC-CMD-NEXT: {{.*}}2.o:(.toc)
91 # SEC-CMD-NEXT: {{.*}}3.o:(.toc)
/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Darc-weak-property.m16 // CHECK-NEXT: [[CMD:%.*]] = alloca i8*,
18 // CHECK-NEXT: store i8* {{%.*}}, i8** [[CMD]]
30 // CHECK-NEXT: [[CMD:%.*]] = alloca i8*,
33 // CHECK-NEXT: store i8* {{%.*}}, i8** [[CMD]]
46 // CHECK-NEXT: [[CMD:%.*]] = alloca i8*,
48 // CHECK-NEXT: store i8* {{%.*}}, i8** [[CMD]]
H A Darc.m446 // CHECK-NEXT: [[CMD:%.*]] = alloca i8*, align
449 // CHECK-NEXT: store i8* {{%.*}}, i8** [[CMD]]
468 // CHECK-NEXT: [[CMD:%.*]] = alloca i8*, align
470 // CHECK-NEXT: store i8* {{%.*}}, i8** [[CMD]]
668 // CHECK-NEXT: [[CMD:%.*]] = alloca i8*,
670 // CHECK-NEXT: store i8* {{%.*}}, i8** [[CMD]]
711 // CHECK-NEXT: [[CMD:%.*]] = alloca i8*, align 8
713 // CHECK-NEXT: store i8* {{%.*}}, i8** [[CMD]]
753 // CHECK-NEXT: [[CMD:%.*]] = alloca i8*, align 8
757 // CHECK-NEXT: store i8* {{%.*}}, i8** [[CMD]]
/llvm-project-15.0.7/clang/test/CodeGen/
H A Dthinlto_embed_bitcode.ll12 ; RUN: llvm-readelf -S %t-opt.o | FileCheck %s --check-prefixes=CHECK-ELF,CHECK-ELF-NO-CMD
19 ; RUN: llvm-readelf -S %t.o | FileCheck %s --check-prefixes=CHECK-ELF,CHECK-ELF-CMD
21 ; RUN: FileCheck %s --check-prefixes=CHECK-EMBEDDED-CMD <%t-embedded.cmd
38 ; CHECK-ELF-CMD: .llvmcmd
39 ; CHECK-ELF-NO-CMD-NOT: .llvmcmd
47 ; CHECK-EMBEDDED-CMD: x86_64-unknown-linux-gnu{{.*$}}
48 ; CHECK-EMBEDDED-CMD-NOT: x86_64-unknown-linux-gnu
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DHover.cpp484 assert(CMD->hasBody()); in getterVariableName()
485 if (CMD->getNumParams() != 0 || CMD->isVariadic()) in getterVariableName()
503 assert(CMD->hasBody()); in setterVariableName()
504 if (CMD->isConst() || CMD->getNumParams() != 1 || CMD->isVariadic()) in setterVariableName()
506 const ParmVarDecl *Arg = CMD->getParamDecl(0); in setterVariableName()
562 if (const auto *CMD = llvm::dyn_cast<CXXMethodDecl>(ND)) { in synthesizeDocumentation() local
564 if (CMD->getDeclName().isIdentifier() && !CMD->isStatic() && in synthesizeDocumentation()
565 (CMD = llvm::dyn_cast_or_null<CXXMethodDecl>(CMD->getDefinition())) && in synthesizeDocumentation()
566 CMD->hasBody()) { in synthesizeDocumentation()
567 if (const auto GetterField = getterVariableName(CMD)) in synthesizeDocumentation()
[all …]
H A DSemanticHighlighting.cpp198 if (const auto *CMD = llvm::dyn_cast<CXXMethodDecl>(D)) { in isConst() local
199 if (CMD->isConst()) in isConst()
225 if (const auto *CMD = llvm::dyn_cast<CXXMethodDecl>(D)) in isStatic() local
226 return CMD->isStatic(); in isStatic()
237 if (const auto *CMD = llvm::dyn_cast<CXXMethodDecl>(D)) in isAbstract() local
238 return CMD->isPure(); in isAbstract()
245 if (const auto *CMD = llvm::dyn_cast<CXXMethodDecl>(D)) in isVirtual() local
246 return CMD->isVirtual(); in isVirtual()
H A DXRefs.cpp382 if (const auto *CMD = llvm::dyn_cast<CXXMethodDecl>(D)) { in locateASTReferent() local
386 if (CMD->isPure()) { in locateASTReferent()
389 VirtualMethods.insert(getSymbolID(CMD)); in locateASTReferent()
397 for (const NamedDecl *ND : CMD->overridden_methods()) in locateASTReferent()
1314 void getOverriddenMethods(const CXXMethodDecl *CMD, in getOverriddenMethods() argument
1316 if (!CMD) in getOverriddenMethods()
1318 for (const CXXMethodDecl *Base : CMD->overridden_methods()) { in getOverriddenMethods()
1397 if (const auto *CMD = llvm::dyn_cast<CXXMethodDecl>(ND)) { in findReferences() local
1398 if (CMD->isVirtual()) { in findReferences()
1399 if (auto ID = getSymbolID(CMD)) in findReferences()
[all …]
/llvm-project-15.0.7/clang/test/Frontend/
H A Dembed-bitcode-noopt.ll10 ; RUN: llvm-objcopy --dump-section=.llvmcmd=- %t.o /dev/null | FileCheck %s --check-prefix=CHECK-CMD
20 ; CHECK-CMD: -O2
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DValueMapper.cpp567 if (auto *CMD = dyn_cast<ConstantAsMetadata>(Op)) in tryToMapOperand() local
568 assert((!*MappedOp || M.getVM().count(CMD->getValue()) || in tryToMapOperand()
602 static ConstantAsMetadata *wrapConstantAsMetadata(const ConstantAsMetadata &CMD, in wrapConstantAsMetadata() argument
604 if (CMD.getValue() == MappedV) in wrapConstantAsMetadata()
605 return const_cast<ConstantAsMetadata *>(&CMD); in wrapConstantAsMetadata()
619 if (auto *CMD = dyn_cast<ConstantAsMetadata>(Op)) in getMappedOp() local
620 return wrapConstantAsMetadata(*CMD, M.getVM().lookup(CMD->getValue())); in getMappedOp()
841 if (auto *CMD = dyn_cast<ConstantAsMetadata>(MD)) { in mapSimpleMetadata() local
846 return wrapConstantAsMetadata(*CMD, mapValue(CMD->getValue())); in mapSimpleMetadata()
/llvm-project-15.0.7/clang-tools-extra/clang-move/
H A DMove.cpp231 if (const auto *CMD = Result.Nodes.getNodeAs<CXXMethodDecl>("class_method")) in run() local
232 MatchClassMethod(CMD, SM); in run()
242 void MatchClassMethod(const CXXMethodDecl *CMD, SourceManager *SM) { in MatchClassMethod() argument
245 if (!CMD->isInlined()) { in MatchClassMethod()
246 MoveTool->getMovedDecls().push_back(CMD); in MatchClassMethod()
247 MoveTool->addRemovedDecl(CMD); in MatchClassMethod()
250 if (const auto *FTD = CMD->getDescribedFunctionTemplate()) in MatchClassMethod()
253 MoveTool->getUnremovedDeclsInOldHeader().erase(CMD); in MatchClassMethod()
/llvm-project-15.0.7/polly/lib/External/isl/imath/tests/linux/
H A DDockerfile14 CMD make distclean examples check
/llvm-project-15.0.7/compiler-rt/cmake/Modules/
H A DCompilerRTCompile.cmake122 set(CMD variable
144 COMMAND bash -c "${CMD}"
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaStmt.cpp679 if (isa<CXXConstructorDecl, CXXDestructorDecl>(CMD)) { in checkMustTailAttr()
681 << IsCallee << isa<CXXDestructorDecl>(CMD); in checkMustTailAttr()
683 Diag(CMD->getBeginLoc(), diag::note_musttail_structors_forbidden) in checkMustTailAttr()
684 << isa<CXXDestructorDecl>(CMD); in checkMustTailAttr()
688 if (CMD->isStatic()) in checkMustTailAttr()
691 Type.This = CMD->getThisType()->getPointeeType(); in checkMustTailAttr()
694 Type.Func = CMD->getType()->castAs<FunctionProtoType>(); in checkMustTailAttr()
712 } else if (const auto *CMD = dyn_cast<CXXMethodDecl>(CurContext)) { in checkMustTailAttr() local
714 if (!GetMethodType(CMD, CallerType, false)) in checkMustTailAttr()
728 if (const CXXMethodDecl *CMD = in checkMustTailAttr() local
[all …]
H A DSemaDeclObjC.cpp3942 if (const auto *CMD = in DiagnoseCategoryDirectMembersProtocolConformance() local
3944 if (CMD->isDirectMethod()) in DiagnoseCategoryDirectMembersProtocolConformance()
3945 DirectMembers.push_back(CMD); in DiagnoseCategoryDirectMembersProtocolConformance()
/llvm-project-15.0.7/llvm/lib/Bitcode/Reader/
H A DMetadataLoader.cpp1758 if (auto *CMD = dyn_cast_or_null<ConstantAsMetadata>(CUorFn)) in parseOneMetadata() local
1759 if (auto *F = dyn_cast<Function>(CMD->getValue())) { in parseOneMetadata()
1933 if (auto *CMD = dyn_cast_or_null<ConstantAsMetadata>(Expr)) { in parseOneMetadata() local
1934 if (auto *GV = dyn_cast<GlobalVariable>(CMD->getValue())) { in parseOneMetadata()
1937 } else if (auto *CI = dyn_cast<ConstantInt>(CMD->getValue())) { in parseOneMetadata()
/llvm-project-15.0.7/libcxx/utils/ci/
H A DDockerfile108 CMD buildkite-agent start
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/
H A DEasilySwappableParametersCheck.cpp1100 PreparedConversion(const CXXMethodDecl *CMD, MixFlags F, in PreparedConversion()
1102 : ConversionFun(CMD), Flags(F), Seq(S) {} in PreparedConversion()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGObjCMac.cpp1347 void GenerateCategory(const ObjCCategoryImplDecl *CMD) override;
1637 void GenerateCategory(const ObjCCategoryImplDecl *CMD) override;
H A DCGObjCGNU.cpp605 void GenerateCategory(const ObjCCategoryImplDecl *CMD) override;