HomeSort by relevance Sort by last modified time
    Searched defs:Ctx (Results 151 - 175 of 185) sorted by null

1 2 3 4 5 67 8

  /external/llvm/lib/Target/AMDGPU/AsmParser/
AMDGPUAsmParser.cpp 58 MCContext *Ctx;
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonCommonGEP.cpp 137 LLVMContext *Ctx;
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 852 MCContext &Ctx = getContext();
867 MCSymbol *Sym = Ctx.createTempSymbol();
870 Ctx);
871 Expr = Value == 0 ? Base : MCBinaryExpr::createAdd(Base, Expr, Ctx);
908 Sym = MCSymbolRefExpr::create(Ctx.getOrCreateSymbol(Identifier),
909 Kind, Ctx);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 227 LLVMContext *Ctx;
411 ArgTypes.push_back(Type::getInt8PtrTy(*Ctx));
437 Ctx = &M.getContext();
438 ShadowTy = IntegerType::get(*Ctx, ShadowWidth);
440 IntptrTy = DL.getIntPtrType(*Ctx);
460 Type::getVoidTy(*Ctx), Type::getInt8PtrTy(*Ctx), /*isVarArg=*/false);
461 Type *DFSanSetLabelArgs[3] = { ShadowTy, Type::getInt8PtrTy(*Ctx), IntptrTy };
462 DFSanSetLabelFnTy = FunctionType::get(Type::getVoidTy(*Ctx),
465 Type::getVoidTy(*Ctx), None, /*isVarArg=*/false)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
InductiveRangeCheckElimination.cpp 596 LLVMContext &Ctx;
619 : F(*L.getHeader()->getParent()), Ctx(L.getHeader()->getContext()),
    [all...]
GVN.cpp     [all...]
RewriteStatepointsForGC.cpp     [all...]
  /external/clang/lib/AST/
Decl.cpp 47 TranslationUnitDecl::TranslationUnitDecl(ASTContext &ctx)
49 DeclContext(TranslationUnit), Ctx(ctx), AnonymousNamespace(nullptr) {
50 Hidden = Ctx.getLangOpts().ModulesLocalVisibility;
    [all...]
  /external/clang/lib/CodeGen/
CGStmtOpenMP.cpp 50 ASTContext &Ctx = CGF.getContext();
53 AddrLV.getAddress().getPointer(), Ctx.getUIntPtrType(),
54 Ctx.getPointerType(DstType), SourceLocation());
56 CGF.MakeNaturalAlignAddrLValue(CastedPtr, Ctx.getPointerType(DstType))
62 QualType RefType = Ctx.getLValueReferenceType(DstType);
82 ASTContext &Ctx = CGM.getContext();
99 ArgType = Ctx.getUIntPtrType();
123 CGM.getTypes().arrangeFreeFunctionDeclaration(Ctx.VoidTy, Args, ExtInfo,
135 StartFunction(CD, Ctx.VoidTy, F, FuncInfo, Args, CD->getLocation(),
    [all...]
CGOpenMPRuntime.cpp     [all...]
CodeGenModule.cpp     [all...]
ItaniumCXXABI.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocChecker.cpp 531 void MallocChecker::initIdentifierInfo(ASTContext &Ctx) const {
534 II_alloca = &Ctx.Idents.get("alloca");
535 II_malloc = &Ctx.Idents.get("malloc");
536 II_free = &Ctx.Idents.get("free");
537 II_realloc = &Ctx.Idents.get("realloc");
538 II_reallocf = &Ctx.Idents.get("reallocf");
539 II_calloc = &Ctx.Idents.get("calloc");
540 II_valloc = &Ctx.Idents.get("valloc");
541 II_strdup = &Ctx.Idents.get("strdup");
542 II_strndup = &Ctx.Idents.get("strndup")
    [all...]
RetainCountChecker.cpp 598 /// Ctx - The ASTContext object for the analyzed ASTs.
599 ASTContext &Ctx;
692 IdentifierInfo* ClsII = &Ctx.Idents.get(Cls);
693 Selector S = isNullary ? GetNullarySelector(name, Ctx)
694 : GetUnarySelector(name, Ctx);
700 IdentifierInfo* ClsII = &Ctx.Idents.get(Cls);
701 Selector S = GetNullarySelector(nullaryName, Ctx);
707 Selector S = getKeywordSelector(Ctx, argp);
714 addMethodSummary(&Ctx.Idents.get(Cls), ObjCMethodSummaries, Summ, argp);
721 addMethodSummary(&Ctx.Idents.get(Cls),ObjCClassMethodSummaries, Summ, argp)
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp     [all...]
  /external/clang/include/clang/AST/
DeclObjC.h 49 void set(void *const* InList, unsigned Elts, ASTContext &Ctx);
60 void set(T* const* InList, unsigned Elts, ASTContext &Ctx) {
61 ObjCListBase::set(reinterpret_cast<void*const*>(InList), Elts, Ctx);
89 const SourceLocation *Locs, ASTContext &Ctx);
553 ObjCTypeParamDecl(ASTContext &ctx, DeclContext *dc,
558 : TypedefNameDecl(ObjCTypeParam, ctx, dc, nameLoc, nameLoc, name,
564 static ObjCTypeParamDecl *Create(ASTContext &ctx, DeclContext *dc,
572 static ObjCTypeParamDecl *CreateDeserialized(ASTContext &ctx, unsigned ID);
639 static ObjCTypeParamList *create(ASTContext &ctx,
    [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp 910 const DeclContext *Ctx = R.Declaration->getDeclContext();
911 if (const NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Ctx))
914 else if (const TagDecl *Tag = dyn_cast<TagDecl>(Ctx))
    [all...]
SemaDeclAttr.cpp 139 static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
151 return ClsName == &Ctx.Idents.get("NSString") ||
152 ClsName == &Ctx.Idents.get("NSMutableString");
155 static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
168 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
    [all...]
SemaExprCXX.cpp 228 if (DeclContext *Ctx = computeDeclContext(SS, EnteringContext)) {
230 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx))
316 const DeclContext *Ctx = S->getEntity();
317 if (const CXXRecordDecl *Class = dyn_cast_or_null<CXXRecordDecl>(Ctx))
    [all...]
SemaStmt.cpp     [all...]
SemaTemplate.cpp     [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 375 static void DumpCXCommentInternal(struct CommentASTDumpingContext *Ctx,
381 Ctx->IndentLevel++;
382 for (i = 0, e = Ctx->IndentLevel; i != e; ++i)
543 DumpCXCommentInternal(Ctx, clang_Comment_getChild(Comment, i));
547 Ctx->IndentLevel--;
551 struct CommentASTDumpingContext Ctx;
552 Ctx.IndentLevel = 1;
554 DumpCXCommentInternal(&Ctx, Comment);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp     [all...]

Completed in 812 milliseconds

1 2 3 4 5 67 8