HomeSort by relevance Sort by last modified time
    Searched defs:MD (Results 26 - 50 of 111) sorted by null

12 3 4 5

  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.cpp 88 auto *MD = dyn_cast<MetadataAsValue>(&Op);
89 if (!MD) {
95 if (isa<LocalAsMetadata>(MD->getMetadata()))
98 EnumerateMetadata(MD->getMetadata());
134 if (auto *MD = dyn_cast<MetadataAsValue>(V))
135 return getMetadataID(MD->getMetadata());
184 const llvm::Metadata *MD = I->first;
186 MD->print(OS);
244 void ValueEnumerator::EnumerateNamedMDNode(const NamedMDNode *MD) {
245 for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.cpp 88 auto *MD = dyn_cast<MetadataAsValue>(&Op);
89 if (!MD) {
95 if (isa<LocalAsMetadata>(MD->getMetadata()))
98 EnumerateMetadata(MD->getMetadata());
134 if (auto *MD = dyn_cast<MetadataAsValue>(V))
135 return getMetadataID(MD->getMetadata());
184 const llvm::Metadata *MD = I->first;
186 MD->print(OS);
244 void ValueEnumerator::EnumerateNamedMDNode(const NamedMDNode *MD) {
245 for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.cpp 88 auto *MD = dyn_cast<MetadataAsValue>(&Op);
89 if (!MD) {
95 if (isa<LocalAsMetadata>(MD->getMetadata()))
98 EnumerateMetadata(MD->getMetadata());
134 if (auto *MD = dyn_cast<MetadataAsValue>(V))
135 return getMetadataID(MD->getMetadata());
184 const llvm::Metadata *MD = I->first;
186 MD->print(OS);
244 void ValueEnumerator::EnumerateNamedMDNode(const NamedMDNode *MD) {
245 for (unsigned i = 0, e = MD->getNumOperands(); i != e; ++i
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
rdatatype.py 36 MD = 3
98 'MD' : MD,
  /external/clang/lib/StaticAnalyzer/Checkers/
IvarInvalidationChecker.cpp 76 void addInvalidationMethod(const ObjCMethodDecl *MD) {
77 InvalidationMethods.insert(MD);
84 bool hasMethod(const ObjCMethodDecl *MD) {
89 if (*I == MD) {
610 const ObjCMethodDecl *MD = ME->getMethodDecl();
611 if (MD) {
612 MD = cast<ObjCMethodDecl>(MD->getCanonicalDecl());
613 MethToIvarMapTy::const_iterator IvI = PropertyGetterToIvarMap.find(MD);
634 const ObjCMethodDecl *MD = PA->getImplicitPropertySetter()
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 160 const MDNode *MD; // For MO_Metadata.
501 return Contents.MD;
707 Op.Contents.MD = Meta;
  /external/llvm/include/llvm/IR/
ValueMap.h 103 MDMapT &MD() {
  /external/llvm/lib/IR/
AutoUpgrade.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonBitTracker.cpp     [all...]
HexagonExpandCondsets.cpp 718 MachineOperand &MD = MI->getOperand(0); // Definition
720 assert(MD.isDef());
721 unsigned DR = MD.getReg(), DSR = MD.getSubReg();
    [all...]
  /external/clang/include/clang/AST/
VTableBuilder.h 72 static VTableComponent MakeFunction(const CXXMethodDecl *MD) {
73 assert(!isa<CXXDestructorDecl>(MD) &&
77 reinterpret_cast<uintptr_t>(MD));
90 static VTableComponent MakeUnusedFunction(const CXXMethodDecl *MD) {
91 assert(!isa<CXXDestructorDecl>(MD) &&
94 reinterpret_cast<uintptr_t>(MD));
317 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl()->getCanonicalDecl());
318 computeVTableRelatedInformation(MD->getParent());
322 ThunksMapTy::const_iterator I = Thunks.find(MD);
  /external/clang/lib/CodeGen/
CGVTables.cpp 37 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
42 if (const CXXDestructorDecl* DD = dyn_cast<CXXDestructorDecl>(MD))
46 getCXXABI().getMangleContext().mangleThunk(MD, Thunk, Out);
53 static void setThunkVisibility(CodeGenModule &CGM, const CXXMethodDecl *MD,
55 CGM.setGlobalVisibility(Fn, MD);
66 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
67 setThunkVisibility(CGM, MD, Thunk, ThunkFn);
147 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
148 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
177 Address ThisPtr(&*AI, CGM.getClassPointerAlignment(MD->getParent()))
    [all...]
  /external/clang/lib/Frontend/
PrintPreprocessedOutput.cpp 168 const MacroDirective *MD) override;
172 const MacroDefinition &MD) override;
350 const MacroDirective *MD) {
351 const MacroInfo *MI = MD->getMacroInfo();
363 const MacroDefinition &MD) {
701 auto *MD = I->second.getLatest();
702 if (MD && MD->isDefined())
703 MacrosByID.push_back(id_macro_pair(I->first, MD->getMacroInfo()));
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 265 if (const ObjCMethodDecl* MD = dyn_cast<ObjCMethodDecl>(D))
266 return MD->getReturnType();
295 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
296 return MD->isVariadic();
468 const CXXMethodDecl *MD = cast<CXXMethodDecl>(D);
469 if (!MD->isVirtual())
491 const CXXMethodDecl *Result = MD->getCorrespondingMethodInClass(RD, true);
497 assert(!RD->isDerivedFrom(MD->getParent()) && "Couldn't find known method");
504 //assert(!MD->getParent()->isDerivedFrom(RD) && "Bad DynamicTypeInfo");
533 const CXXMethodDecl *MD = cast<CXXMethodDecl>(CalleeCtx->getDecl())
    [all...]
ExprEngineCallAndReturn.cpp 721 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
722 return isContainerClass(Ctx, MD->getParent());
    [all...]
BugReporterVisitors.cpp     [all...]
PathDiagnostic.cpp 851 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
852 return MD->getSourceRange();
    [all...]
  /external/clang/tools/libclang/
IndexingContext.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 322 SmallVector<std::pair<unsigned, MDNode *>, 8> MD;
323 LI.getAllMetadata(MD);
329 for (const auto &MDPair : MD) {
394 SmallVector<std::pair<unsigned, MDNode *>, 8> MD;
395 SI.getAllMetadata(MD);
400 for (const auto &MDPair : MD) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 51 MemoryDependenceAnalysis *MD;
56 DSE() : FunctionPass(ID), AA(nullptr), MD(nullptr), DT(nullptr) {
65 MD = &getAnalysis<MemoryDependenceAnalysis>();
76 AA = nullptr; MD = nullptr; DT = nullptr;
123 MemoryDependenceAnalysis &MD,
139 MD.removeInstruction(DeadInst);
512 DeleteDeadInstruction(DeadInst, *MD, *TLI);
555 MemDepResult InstDep = MD->getDependency(Inst);
596 DeleteDeadInstruction(DepWrite, *MD, *TLI);
648 InstDep = MD->getPointerDependencyFrom(Loc, false
    [all...]
MemCpyOptimizer.cpp 309 MemoryDependenceAnalysis *MD;
315 MD = nullptr;
475 MD->removeInstruction(SI);
505 MemDepResult ldep = MD->getDependency(LI);
538 MD->removeInstruction(SI);
540 MD->removeInstruction(LI);
748 MD->removeInstruction(C);
759 MD->removeInstruction(cpy);
803 MD->getPointerDependencyFrom(MemoryLocation::getForSource(MDep), false,
834 MD->removeInstruction(M)
    [all...]
  /external/clang/lib/AST/
DeclBase.cpp 792 CXXMethodDecl *MD = cast<CXXMethodDecl>(D);
793 if (MD->getOverloadedOperator() == OO_Call &&
794 MD->getParent()->isLambda())
795 return getNonClosureContext(MD->getParent()->getParent());
796 return MD;
799 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
800 return MD;
    [all...]
DeclObjC.cpp 89 ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(*Meth);
90 if (MD && MD->isInstanceMethod() == isInstance)
91 return MD;
107 ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(*Meth);
108 if (MD && MD->isInstanceMethod() && !MD->isImplicit())
116 if (ObjCMethodDecl *MD = Cat->getInstanceMethod(Sel))
117 if (!MD->isImplicit()
    [all...]
  /external/clang/lib/Analysis/
Consumed.cpp 809 CXXMethodDecl* MD = Call->getMethodDecl();
810 if (!MD)
813 handleCall(Call, Call->getImplicitObjectArgument(), MD);
814 propagateReturnType(Call, MD);
    [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp 162 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC))
163 contextClass = MD->getParent()->getCanonicalDecl();
    [all...]

Completed in 1948 milliseconds

12 3 4 5