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

1 2 3 4 56 7 8

  /external/llvm/lib/CodeGen/AsmPrinter/
WinException.cpp 164 MCContext &Ctx = MF->getContext();
166 return Ctx.getOrCreateSymbol("?" + HandlerPrefix + "$" +
508 MCContext &Ctx = Asm->OutContext;
516 Ctx.getOrCreateParentFrameOffsetSymbol(FLinkageName);
518 MCConstantExpr::create(FuncInfo.SEHSetFrameOffset, Ctx);
524 Ctx.createTempSymbol("lsda_begin", /*AlwaysAddSuffix=*/true);
526 Ctx.createTempSymbol("lsda_end", /*AlwaysAddSuffix=*/true);
528 const MCExpr *EntrySize = MCConstantExpr::create(16, Ctx);
529 const MCExpr *EntryCount = MCBinaryExpr::createDiv(LabelDiff, EntrySize, Ctx);
567 MCContext &Ctx = Asm->OutContext
    [all...]
AsmPrinter.cpp     [all...]
  /external/llvm/lib/CodeGen/
LiveDebugVariables.cpp 359 const LLVMContext &Ctx) {
375 printDebugLoc(InlinedAtDL, CommentOS, Ctx);
381 const LLVMContext &Ctx = V->getContext();
388 printDebugLoc(InlinedAtDL, OS, Ctx);
    [all...]
MachineBasicBlock.cpp 54 MCContext &Ctx = MF->getContext();
55 const char *Prefix = Ctx.getAsmInfo()->getPrivateLabelPrefix();
57 CachedMCSymbol = Ctx.getOrCreateSymbol(Twine(Prefix) + "BB" +
    [all...]
  /external/llvm/lib/MC/
MCDwarf.cpp 171 MCContext &Ctx = MCOS->getContext();
172 MCOS->SwitchSection(Ctx.getObjectFileInfo()->getDwarfLineSection());
174 const MCAsmInfo *AsmInfo = Ctx.getAsmInfo();
    [all...]
  /external/llvm/lib/Target/AMDGPU/
SIInstrInfo.cpp 574 LLVMContext &Ctx = MF->getFunction()->getContext();
575 Ctx.emitError("SIInstrInfo::storeRegToStackSlot - Do not know how to"
659 LLVMContext &Ctx = MF->getFunction()->getContext();
660 Ctx.emitError("SIInstrInfo::loadRegFromStackSlot - Do not know how to"
    [all...]
AMDILCFGStructurizer.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86MCInstLower.cpp 46 MCContext &Ctx;
118 : Ctx(mf.getContext()), MF(mf), TM(mf.getTarget()), MAI(*TM.getMCAsmInfo()),
170 Sym = Ctx.getOrCreateSymbol(Name);
217 StubValueTy(Ctx.getOrCreateSymbol(OrigName), false);
244 Expr = MCSymbolRefExpr::create(Sym, MCSymbolRefExpr::VK_TLVP, Ctx);
248 Ctx),
249 Ctx);
268 Expr = MCSymbolRefExpr::create(Sym, Ctx);
271 MCSymbolRefExpr::create(MF.getPICBaseSymbol(), Ctx),
272 Ctx);
    [all...]
  /external/llvm/lib/Transforms/IPO/
SampleProfile.cpp 468 LLVMContext &Ctx = F->getContext();
470 Ctx, DEBUG_TYPE, *F, DLoc,
676 LLVMContext &Ctx = F.getContext();
694 emitOptimizationRemark(Ctx, DEBUG_TYPE, F, DLoc,
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 139 LLVMContext *Ctx;
451 Ctx = &M.getContext();
596 ArrayType::get(Type::getInt64Ty(*Ctx), Edges);
674 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
683 BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", F);
686 FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
721 Type *Int64PtrTy = Type::getInt64PtrTy(*Ctx);
758 Type::getInt8PtrTy(*Ctx), // const char *orig_filename
759 Type::getInt8PtrTy(*Ctx), // const char version[4]
760 Type::getInt32Ty(*Ctx), // uint32_t checksu
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp     [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_context.h 162 struct gl_context *ctx; member in struct:i915_fragment_program
219 GLuint Ctx[I915_CTX_SETUP_SIZE];
343 extern void i915_update_stencil(struct gl_context * ctx);
344 extern void i915_update_provoking_vertex(struct gl_context *ctx);
345 extern void i915_update_sprite_point_enable(struct gl_context *ctx);
365 i915_context(struct gl_context * ctx)
367 return (struct i915_context *) ctx;
372 #define I915_CONTEXT(ctx) i915_context(ctx)
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 510 ASTContext &ctx = getContext(); variable
512 return ctx.getObjCObjectPointerType(T);
513 return ctx.getPointerType(getValueType());
554 const ASTContext &Ctx = getContext();
556 return Ctx.getPointerType(D->getType());
    [all...]
  /external/clang/lib/AST/
ASTDumper.cpp     [all...]
Expr.cpp 213 static void computeDeclRefDependence(const ASTContext &Ctx, NamedDecl *D,
270 if ((Ctx.getLangOpts().CPlusPlus11 ?
271 Var->getType()->isLiteralType(Ctx) :
306 void DeclRefExpr::computeDependence(const ASTContext &Ctx) {
310 computeDeclRefDependence(Ctx, getDecl(), getType(), TypeDependent,
322 DeclRefExpr::DeclRefExpr(const ASTContext &Ctx,
364 computeDependence(Ctx);
594 const DeclContext *Ctx = FD->getDeclContext();
595 while (Ctx && isa<NamedDecl>(Ctx)) {
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp     [all...]
CGStmt.cpp     [all...]
TargetInfo.cpp     [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp     [all...]
SemaLambda.cpp 346 ASTContext &Ctx) {
349 MangleNumbering = Ctx.createMangleNumberingContext();
644 ASTContext &Ctx = getASTContext();
649 CSI.ReturnType = Ctx.VoidTy;
    [all...]
SemaTemplateInstantiate.cpp 62 DeclContext *Ctx = dyn_cast<DeclContext>(D);
63 if (!Ctx) {
64 Ctx = D->getDeclContext();
99 if (Ctx->isTranslationUnit()) {
109 while (!Ctx->isFileContext()) {
112 = dyn_cast<ClassTemplateSpecializationDecl>(Ctx)) {
127 else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Ctx)) {
162 Ctx = Function->getLexicalDeclContext();
166 } else if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Ctx)) {
178 Ctx = Ctx->getParent()
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 151 static bool SummarizeRegion(raw_ostream &os, ASTContext &Ctx,
358 ASTContext &Ctx = svalBuilder.getContext();
362 QualType PtrTy = Ctx.getPointerType(Ctx.CharTy);
499 ASTContext &Ctx = svalBuilder.getContext();
500 QualType CharPtrTy = Ctx.getPointerType(Ctx.CharTy);
836 ASTContext &Ctx = svalBuilder.getContext();
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp 648 ASTContext &Ctx;
669 : RM(rm), Ctx(StateMgr.getContext()),
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 709 const DataLayout &DL, MCContext &Ctx, CallingConv::ID CC, Type *ResultTy,
713 MCSymbol *Sym = Ctx.getOrCreateSymbol(MangledName);
    [all...]

Completed in 853 milliseconds

1 2 3 4 56 7 8