| /NextBSD/contrib/llvm/tools/clang/lib/Frontend/ |
| HD | FrontendAction.cpp | 138 FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI, in CreateWrappedASTConsumer() argument 140 std::unique_ptr<ASTConsumer> Consumer = CreateASTConsumer(CI, InFile); in CreateWrappedASTConsumer() 144 if (CI.getFrontendOpts().AddPluginActions.size() == 0) in CreateWrappedASTConsumer() 152 for (size_t i = 0, e = CI.getFrontendOpts().AddPluginActions.size(); in CreateWrappedASTConsumer() 160 if (it->getName() != CI.getFrontendOpts().AddPluginActions[i]) in CreateWrappedASTConsumer() 163 if (P->ParseArgs(CI, CI.getFrontendOpts().AddPluginArgs[i])) in CreateWrappedASTConsumer() 164 Consumers.push_back(P->CreateASTConsumer(CI, InFile)); in CreateWrappedASTConsumer() 171 bool FrontendAction::BeginSourceFile(CompilerInstance &CI, in BeginSourceFile() argument 176 setCompilerInstance(&CI); in BeginSourceFile() 180 if (!BeginInvocation(CI)) in BeginSourceFile() [all …]
|
| HD | FrontendActions.cpp | 38 InitOnlyAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() argument 50 ASTPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() argument 51 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile)) in CreateASTConsumer() 52 return CreateASTPrinter(OS, CI.getFrontendOpts().ASTDumpFilter); in CreateASTConsumer() 57 ASTDumpAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() argument 58 return CreateASTDumper(CI.getFrontendOpts().ASTDumpFilter, in CreateASTConsumer() 59 CI.getFrontendOpts().ASTDumpDecls, in CreateASTConsumer() 60 CI.getFrontendOpts().ASTDumpLookups); in CreateASTConsumer() 64 ASTDeclListAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() argument 69 ASTViewAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() argument [all …]
|
| HD | ASTMerge.cpp | 20 ASTMergeAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() argument 21 return AdaptedAction->CreateASTConsumer(CI, InFile); in CreateASTConsumer() 24 bool ASTMergeAction::BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction() argument 30 AdaptedAction->setCompilerInstance(&CI); in BeginSourceFileAction() 31 return AdaptedAction->BeginSourceFileAction(CI, Filename); in BeginSourceFileAction() 35 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction() local 36 CI.getDiagnostics().getClient()->BeginSourceFile( in ExecuteAction() 37 CI.getASTContext().getLangOpts()); in ExecuteAction() 38 CI.getDiagnostics().SetArgToStringFn(&FormatASTNodeDiagnosticArgument, in ExecuteAction() 39 &CI.getASTContext()); in ExecuteAction() [all …]
|
| /NextBSD/contrib/llvm/lib/Transforms/Utils/ |
| HD | SimplifyLibCalls.cpp | 95 static bool callHasFloatingPointArgument(const CallInst *CI) { in callHasFloatingPointArgument() argument 96 for (CallInst::const_op_iterator it = CI->op_begin(), e = CI->op_end(); in callHasFloatingPointArgument() 187 Value *LibCallSimplifier::optimizeStrCat(CallInst *CI, IRBuilder<> &B) { in optimizeStrCat() argument 188 Function *Callee = CI->getCalledFunction(); in optimizeStrCat() 198 Value *Dst = CI->getArgOperand(0); in optimizeStrCat() 199 Value *Src = CI->getArgOperand(1); in optimizeStrCat() 235 Value *LibCallSimplifier::optimizeStrNCat(CallInst *CI, IRBuilder<> &B) { in optimizeStrNCat() argument 236 Function *Callee = CI->getCalledFunction(); in optimizeStrNCat() 246 Value *Dst = CI->getArgOperand(0); in optimizeStrNCat() 247 Value *Src = CI->getArgOperand(1); in optimizeStrNCat() [all …]
|
| HD | BuildLibCalls.cpp | 51 CallInst *CI = B.CreateCall(StrLen, CastToCStr(Ptr, B), "strlen"); in EmitStrLen() local 53 CI->setCallingConv(F->getCallingConv()); in EmitStrLen() 55 return CI; in EmitStrLen() 77 CallInst *CI = B.CreateCall(StrNLen, {CastToCStr(Ptr, B), MaxLen}, "strnlen"); in EmitStrNLen() local 79 CI->setCallingConv(F->getCallingConv()); in EmitStrNLen() 81 return CI; in EmitStrNLen() 103 CallInst *CI = B.CreateCall( in EmitStrChr() local 106 CI->setCallingConv(F->getCallingConv()); in EmitStrChr() 107 return CI; in EmitStrChr() 127 CallInst *CI = B.CreateCall( in EmitStrNCmp() local [all …]
|
| /NextBSD/contrib/llvm/include/llvm/Transforms/Utils/ |
| HD | SimplifyLibCalls.h | 51 Value *optimizeCall(CallInst *CI); 54 Value *optimizeMemCpyChk(CallInst *CI, IRBuilder<> &B); 55 Value *optimizeMemMoveChk(CallInst *CI, IRBuilder<> &B); 56 Value *optimizeMemSetChk(CallInst *CI, IRBuilder<> &B); 59 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc::Func Func); 60 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc::Func Func); 64 bool isFortifiedCallFoldable(CallInst *CI, unsigned ObjSizeOp, 100 Value *optimizeCall(CallInst *CI); 104 Value *optimizeStrCat(CallInst *CI, IRBuilder<> &B); 105 Value *optimizeStrNCat(CallInst *CI, IRBuilder<> &B); [all …]
|
| /NextBSD/contrib/llvm/lib/CodeGen/ |
| HD | IntrinsicLowering.cpp | 65 static CallInst *ReplaceCallWith(const char *NewFn, CallInst *CI, in ReplaceCallWith() argument 70 Module *M = CI->getParent()->getParent()->getParent(); in ReplaceCallWith() 78 IRBuilder<> Builder(CI->getParent(), CI); in ReplaceCallWith() 81 NewCI->setName(CI->getName()); in ReplaceCallWith() 82 if (!CI->use_empty()) in ReplaceCallWith() 83 CI->replaceAllUsesWith(NewCI); in ReplaceCallWith() 317 static void ReplaceFPIntrinsicWithCall(CallInst *CI, const char *Fname, in ReplaceFPIntrinsicWithCall() argument 320 CallSite CS(CI); in ReplaceFPIntrinsicWithCall() 321 switch (CI->getArgOperand(0)->getType()->getTypeID()) { in ReplaceFPIntrinsicWithCall() 324 ReplaceCallWith(Fname, CI, CS.arg_begin(), CS.arg_end(), in ReplaceFPIntrinsicWithCall() [all …]
|
| HD | GCRootLowering.cpp | 143 if (CallInst *CI = dyn_cast<CallInst>(I)) in CouldBecomeSafePoint() local 144 if (Function *F = CI->getCalledFunction()) in CouldBecomeSafePoint() 211 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(II++)) { in PerformDefaultLowering() local 212 Function *F = CI->getCalledFunction(); in PerformDefaultLowering() 218 new StoreInst(CI->getArgOperand(0), CI->getArgOperand(2), CI); in PerformDefaultLowering() 219 CI->replaceAllUsesWith(St); in PerformDefaultLowering() 220 CI->eraseFromParent(); in PerformDefaultLowering() 226 Value *Ld = new LoadInst(CI->getArgOperand(1), "", CI); in PerformDefaultLowering() 227 Ld->takeName(CI); in PerformDefaultLowering() 228 CI->replaceAllUsesWith(Ld); in PerformDefaultLowering() [all …]
|
| HD | ShadowStackGCLowering.cpp | 134 if (CallInst *CI = dyn_cast<CallInst>(II)) in Next() local 135 if (!CI->getCalledFunction() || in Next() 136 !CI->getCalledFunction()->getIntrinsicID()) in Next() 137 Calls.push_back(CI); in Next() 162 CallInst *CI = cast<CallInst>(Calls[--I]); in Next() local 165 BasicBlock *CallBB = CI->getParent(); in Next() 167 CallBB->splitBasicBlock(CI, CallBB->getName() + ".cont"); in Next() 171 NewBB->getInstList().remove(CI); in Next() 175 CallSite CS(CI); in Next() 179 InvokeInst::Create(CI->getCalledValue(), NewBB, CleanupBB, Args, in Next() [all …]
|
| /NextBSD/contrib/llvm/tools/clang/lib/Frontend/Rewrite/ |
| HD | FrontendActions.cpp | 34 HTMLPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() argument 35 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile)) in CreateASTConsumer() 36 return CreateHTMLPrinter(OS, CI.getPreprocessor()); in CreateASTConsumer() 44 FixItAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() argument 88 bool FixItAction::BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction() argument 98 Rewriter.reset(new FixItRewriter(CI.getDiagnostics(), CI.getSourceManager(), in BeginSourceFileAction() 99 CI.getLangOpts(), FixItOpts.get())); in BeginSourceFileAction() 108 bool FixItRecompile::BeginInvocation(CompilerInstance &CI) { in BeginInvocation() argument 113 const FrontendOptions &FEOpts = CI.getFrontendOpts(); in BeginInvocation() 115 if (FixAction->BeginSourceFile(CI, FEOpts.Inputs[0])) { in BeginInvocation() [all …]
|
| /NextBSD/contrib/llvm/lib/Transforms/InstCombine/ |
| HD | InstCombineCasts.cpp | 30 if (ConstantInt *CI = dyn_cast<ConstantInt>(Val)) { in DecomposeSimpleLinearExpr() local 31 Offset = CI->getZExtValue(); in DecomposeSimpleLinearExpr() 81 Instruction *InstCombiner::PromoteCastOfAllocation(BitCastInst &CI, in PromoteCastOfAllocation() argument 83 PointerType *PTy = cast<PointerType>(CI.getType()); in PromoteCastOfAllocation() 154 return ReplaceInstUsesWith(CI, New); in PromoteCastOfAllocation() 235 isEliminableCastPair(const CastInst *CI, ///< First cast instruction in isEliminableCastPair() argument 239 Type *SrcTy = CI->getOperand(0)->getType(); // A from above in isEliminableCastPair() 240 Type *MidTy = CI->getType(); // B from above in isEliminableCastPair() 243 Instruction::CastOps firstOp = Instruction::CastOps(CI->getOpcode()); in isEliminableCastPair() 275 if (const CastInst *CI = dyn_cast<CastInst>(V)) in ShouldOptimizeCast() local [all …]
|
| HD | InstCombineCalls.cpp | 326 Instruction *InstCombiner::visitCallInst(CallInst &CI) { in visitCallInst() argument 327 auto Args = CI.arg_operands(); in visitCallInst() 328 if (Value *V = SimplifyCall(CI.getCalledValue(), Args.begin(), Args.end(), DL, in visitCallInst() 330 return ReplaceInstUsesWith(CI, V); in visitCallInst() 332 if (isFreeCall(&CI, TLI)) in visitCallInst() 333 return visitFree(CI); in visitCallInst() 337 if (CI.getParent()->getParent()->doesNotThrow() && in visitCallInst() 338 !CI.doesNotThrow()) { in visitCallInst() 339 CI.setDoesNotThrow(); in visitCallInst() 340 return &CI; in visitCallInst() [all …]
|
| /NextBSD/contrib/llvm/lib/Transforms/Scalar/ |
| HD | TailRecursionElimination.cpp | 106 bool EliminateRecursiveTailCall(CallInst *CI, ReturnInst *Ret, 120 bool CanMoveAboveCall(Instruction *I, CallInst *CI); 121 Value *CanTransformAccumulatorRecursion(Instruction *I, CallInst *CI); 301 CallInst *CI = dyn_cast<CallInst>(&I); in markTails() local 302 if (!CI || CI->isTailCall()) in markTails() 305 if (CI->doesNotAccessMemory()) { in markTails() 314 for (auto &Arg : CI->arg_operands()) { in markTails() 325 F.getContext(), "tailcallelim", F, CI->getDebugLoc(), in markTails() 327 CI->setTailCall(); in markTails() 333 if (Escaped == UNESCAPED && !Tracker.AllocaUsers.count(CI)) { in markTails() [all …]
|
| HD | LowerExpectIntrinsic.cpp | 45 CallInst *CI = dyn_cast<CallInst>(SI.getCondition()); in handleSwitchExpect() local 46 if (!CI) in handleSwitchExpect() 49 Function *Fn = CI->getCalledFunction(); in handleSwitchExpect() 53 Value *ArgValue = CI->getArgOperand(0); in handleSwitchExpect() 54 ConstantInt *ExpectedValue = dyn_cast<ConstantInt>(CI->getArgOperand(1)); in handleSwitchExpect() 68 MDBuilder(CI->getContext()).createBranchWeights(Weights)); in handleSwitchExpect() 87 CallInst *CI; in handleBranchExpect() local 91 CI = dyn_cast<CallInst>(BI.getCondition()); in handleBranchExpect() 95 CI = dyn_cast<CallInst>(CmpI->getOperand(0)); in handleBranchExpect() 98 if (!CI) in handleBranchExpect() [all …]
|
| /NextBSD/contrib/llvm/lib/IR/ |
| HD | AutoUpgrade.cpp | 324 void llvm::UpgradeIntrinsicCall(CallInst *CI, Function *NewFn) { in UpgradeIntrinsicCall() argument 325 Function *F = CI->getCalledFunction(); in UpgradeIntrinsicCall() 326 LLVMContext &C = CI->getContext(); in UpgradeIntrinsicCall() 328 Builder.SetInsertPoint(CI->getParent(), CI); in UpgradeIntrinsicCall() 340 Rep = Builder.CreateICmpEQ(CI->getArgOperand(0), CI->getArgOperand(1), in UpgradeIntrinsicCall() 343 Rep = Builder.CreateSExt(Rep, CI->getType(), ""); in UpgradeIntrinsicCall() 346 Rep = Builder.CreateICmpSGT(CI->getArgOperand(0), CI->getArgOperand(1), in UpgradeIntrinsicCall() 349 Rep = Builder.CreateSExt(Rep, CI->getType(), ""); in UpgradeIntrinsicCall() 354 Builder.SetInsertPoint(CI->getParent(), CI); in UpgradeIntrinsicCall() 362 Value *Arg0 = CI->getArgOperand(0); in UpgradeIntrinsicCall() [all …]
|
| /NextBSD/contrib/llvm/tools/clang/lib/ARCMigrate/ |
| HD | ARCMTActions.cpp | 17 bool CheckAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation() argument 18 if (arcmt::checkForManualIssues(CI.getInvocation(), getCurrentInput(), in BeginInvocation() 19 CI.getPCHContainerOperations(), in BeginInvocation() 20 CI.getDiagnostics().getClient())) in BeginInvocation() 24 CI.getDiagnostics().setIgnoreAllWarnings(true); in BeginInvocation() 31 bool ModifyAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation() argument 32 return !arcmt::applyTransformations(CI.getInvocation(), getCurrentInput(), in BeginInvocation() 33 CI.getPCHContainerOperations(), in BeginInvocation() 34 CI.getDiagnostics().getClient()); in BeginInvocation() 40 bool MigrateAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation() argument [all …]
|
| /NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ |
| HD | ModelInjector.cpp | 28 ModelInjector::ModelInjector(CompilerInstance &CI) : CI(CI) {} in ModelInjector() argument 47 SourceManager &SM = CI.getSourceManager(); in onBodySynthesis() 50 AnalyzerOptionsRef analyzerOpts = CI.getAnalyzerOpts(); in onBodySynthesis() 67 new CompilerInvocation(CI.getInvocation())); in onBodySynthesis() 79 CompilerInstance Instance(CI.getPCHContainerOperations()); in onBodySynthesis() 82 new ForwardingDiagnosticConsumer(CI.getDiagnosticClient()), in onBodySynthesis() 87 Instance.setVirtualFileSystem(&CI.getVirtualFileSystem()); in onBodySynthesis() 91 Instance.setFileManager(&CI.getFileManager()); in onBodySynthesis() 93 Instance.setPreprocessor(&CI.getPreprocessor()); in onBodySynthesis() 94 Instance.setASTContext(&CI.getASTContext()); in onBodySynthesis()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Frontend/ |
| HD | FrontendActions.h | 29 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, 44 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, 50 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, 56 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, 62 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, 68 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, 74 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, 89 ComputeASTConsumerArguments(CompilerInstance &CI, StringRef InFile, 99 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, 114 bool BeginSourceFileAction(CompilerInstance &CI, StringRef Filename) override; [all …]
|
| HD | FrontendAction.h | 44 std::unique_ptr<ASTConsumer> CreateWrappedASTConsumer(CompilerInstance &CI, 64 virtual std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, 73 virtual bool BeginInvocation(CompilerInstance &CI) { return true; } in BeginInvocation() argument 79 virtual bool BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction() argument 211 bool BeginSourceFile(CompilerInstance &CI, const FrontendInputFile &Input); 241 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, 250 virtual bool ParseArgs(const CompilerInstance &CI, 259 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, 276 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, 278 bool BeginInvocation(CompilerInstance &CI) override; [all …]
|
| /NextBSD/contrib/llvm/lib/Analysis/ |
| HD | VectorUtils.cpp | 117 llvm::Intrinsic::ID llvm::getIntrinsicIDForCall(CallInst *CI, in getIntrinsicIDForCall() argument 120 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI)) { in getIntrinsicIDForCall() 132 Function *F = CI->getCalledFunction(); in getIntrinsicIDForCall() 147 return checkUnaryFloatSignature(*CI, Intrinsic::sin); in getIntrinsicIDForCall() 151 return checkUnaryFloatSignature(*CI, Intrinsic::cos); in getIntrinsicIDForCall() 155 return checkUnaryFloatSignature(*CI, Intrinsic::exp); in getIntrinsicIDForCall() 159 return checkUnaryFloatSignature(*CI, Intrinsic::exp2); in getIntrinsicIDForCall() 163 return checkUnaryFloatSignature(*CI, Intrinsic::log); in getIntrinsicIDForCall() 167 return checkUnaryFloatSignature(*CI, Intrinsic::log10); in getIntrinsicIDForCall() 171 return checkUnaryFloatSignature(*CI, Intrinsic::log2); in getIntrinsicIDForCall() [all …]
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Lex/ |
| HD | PreprocessorLexer.h | 99 PPConditionalInfo CI; in pushConditionalLevel() local 100 CI.IfLoc = DirectiveStart; in pushConditionalLevel() 101 CI.WasSkipping = WasSkipping; in pushConditionalLevel() 102 CI.FoundNonSkip = FoundNonSkip; in pushConditionalLevel() 103 CI.FoundElse = FoundElse; in pushConditionalLevel() 104 ConditionalStack.push_back(CI); in pushConditionalLevel() 106 void pushConditionalLevel(const PPConditionalInfo &CI) { in pushConditionalLevel() argument 107 ConditionalStack.push_back(CI); in pushConditionalLevel() 113 bool popConditionalLevel(PPConditionalInfo &CI) { in popConditionalLevel() argument 116 CI = ConditionalStack.pop_back_val(); in popConditionalLevel()
|
| /NextBSD/contrib/llvm/tools/clang/lib/FrontendTool/ |
| HD | ExecuteCompilerInvocation.cpp | 34 static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) { in CreateFrontendBaseAction() argument 39 switch (CI.getFrontendOpts().ProgramAction) { in CreateFrontendBaseAction() 66 if (it->getName() == CI.getFrontendOpts().ActionName) { in CreateFrontendBaseAction() 68 if (!P->ParseArgs(CI, CI.getFrontendOpts().PluginArgs)) in CreateFrontendBaseAction() 74 CI.getDiagnostics().Report(diag::err_fe_invalid_plugin_name) in CreateFrontendBaseAction() 75 << CI.getFrontendOpts().ActionName; in CreateFrontendBaseAction() 82 if (CI.getPreprocessorOutputOpts().RewriteIncludes) in CreateFrontendBaseAction() 109 CI.getDiagnostics().Report(diag::err_fe_action_not_available) << Action; in CreateFrontendBaseAction() 116 static FrontendAction *CreateFrontendAction(CompilerInstance &CI) { in CreateFrontendAction() argument 118 FrontendAction *Act = CreateFrontendBaseAction(CI); in CreateFrontendAction() [all …]
|
| /NextBSD/contrib/llvm/tools/clang/lib/CodeGen/ |
| HD | CodeGenAction.cpp | 616 GetOutputStream(CompilerInstance &CI, StringRef InFile, BackendAction Action) { in GetOutputStream() argument 619 return CI.createDefaultOutputFile(false, InFile, "s"); in GetOutputStream() 621 return CI.createDefaultOutputFile(false, InFile, "ll"); in GetOutputStream() 623 return CI.createDefaultOutputFile(true, InFile, "bc"); in GetOutputStream() 627 return CI.createNullOutputFile(); in GetOutputStream() 629 return CI.createDefaultOutputFile(true, InFile, "o"); in GetOutputStream() 636 CodeGenAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() argument 638 raw_pwrite_stream *OS = GetOutputStream(CI, InFile, BA); in CreateASTConsumer() 646 const std::string &LinkBCFile = CI.getCodeGenOpts().LinkBitcodeFile; in CreateASTConsumer() 648 auto BCBuf = CI.getFileManager().getBufferForFile(LinkBCFile); in CreateASTConsumer() [all …]
|
| /NextBSD/contrib/llvm/utils/TableGen/ |
| HD | AsmMatcherEmitter.cpp | 259 for (const ClassInfo *CI : SuperClasses) in isSubsetOf() local 260 if (CI->isSubsetOf(RHS)) in isSubsetOf() 608 ClassInfo *CI; member 614 X.CI = ci; in create() 1075 if (ClassInfo *CI = AsmOperandClasses[MatchClass]) in getOperandClass() local 1076 return CI; in getOperandClass() 1084 if (ClassInfo *CI = RegisterClassClasses[ClassRec]) in getOperandClass() local 1085 return CI; in getOperandClass() 1091 if (ClassInfo *CI = RegisterClassClasses[Rec]) in getOperandClass() local 1092 return CI; in getOperandClass() [all …]
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/ARCMigrate/ |
| HD | ARCMTActions.h | 22 bool BeginInvocation(CompilerInstance &CI) override; 30 bool BeginInvocation(CompilerInstance &CI) override; 39 bool BeginInvocation(CompilerInstance &CI) override; 40 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, 49 bool BeginInvocation(CompilerInstance &CI) override; 68 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, 70 bool BeginInvocation(CompilerInstance &CI) override;
|