Searched refs:CI (Results 1 - 25 of 277) sorted by relevance

1234567891011>>

/external/clang/lib/ARCMigrate/
H A DARCMTActions.cpp17 bool CheckAction::BeginInvocation(CompilerInstance &CI) { argument
18 if (arcmt::checkForManualIssues(CI.getInvocation(), getCurrentInput(),
19 CI.getDiagnostics().getClient()))
23 CI.getDiagnostics().setIgnoreAllWarnings(true);
30 bool ModifyAction::BeginInvocation(CompilerInstance &CI) { argument
31 return !arcmt::applyTransformations(CI.getInvocation(), getCurrentInput(),
32 CI.getDiagnostics().getClient());
38 bool MigrateAction::BeginInvocation(CompilerInstance &CI) { argument
39 if (arcmt::migrateWithTemporaryFiles(CI.getInvocation(),
41 CI
[all...]
/external/clang/lib/Frontend/
H A DFrontendAction.cpp138 FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI, argument
140 std::unique_ptr<ASTConsumer> Consumer = CreateASTConsumer(CI, InFile);
144 if (CI.getFrontendOpts().AddPluginActions.size() == 0)
152 for (size_t i = 0, e = CI.getFrontendOpts().AddPluginActions.size();
160 if (it->getName() != CI.getFrontendOpts().AddPluginActions[i])
163 if (P->ParseArgs(CI, CI.getFrontendOpts().AddPluginArgs[i]))
164 Consumers.push_back(P->CreateASTConsumer(CI, InFile));
171 bool FrontendAction::BeginSourceFile(CompilerInstance &CI, argument
176 setCompilerInstance(&CI);
433 CompilerInstance &CI = getCompilerInstance(); local
454 CompilerInstance &CI = getCompilerInstance(); local
519 CompilerInstance &CI = getCompilerInstance(); local
544 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
550 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
554 BeginInvocation(CompilerInstance &CI) argument
557 BeginSourceFileAction(CompilerInstance &CI, StringRef Filename) argument
[all...]
H A DASTMerge.cpp20 ASTMergeAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { argument
21 return AdaptedAction->CreateASTConsumer(CI, InFile);
24 bool ASTMergeAction::BeginSourceFileAction(CompilerInstance &CI, argument
30 AdaptedAction->setCompilerInstance(&CI);
31 return AdaptedAction->BeginSourceFileAction(CI, Filename);
35 CompilerInstance &CI = getCompilerInstance(); local
36 CI.getDiagnostics().getClient()->BeginSourceFile(
37 CI.getASTContext().getLangOpts());
38 CI.getDiagnostics().SetArgToStringFn(&FormatASTNodeDiagnosticArgument,
39 &CI
[all...]
H A DFrontendActions.cpp37 InitOnlyAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { argument
49 ASTPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { argument
50 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile))
51 return CreateASTPrinter(OS, CI.getFrontendOpts().ASTDumpFilter);
56 ASTDumpAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { argument
57 return CreateASTDumper(CI.getFrontendOpts().ASTDumpFilter,
58 CI.getFrontendOpts().ASTDumpDecls,
59 CI.getFrontendOpts().ASTDumpLookups);
63 ASTDeclListAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { argument
68 ASTViewAction::CreateASTConsumer(CompilerInstance &CI, StringRe argument
73 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
79 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
93 ComputeASTConsumerArguments( CompilerInstance &CI, StringRef InFile, std::string &Sysroot, std::string &OutputFile) argument
117 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
257 BeginSourceFileAction(CompilerInstance &CI, StringRef Filename) argument
359 ComputeASTConsumerArguments( CompilerInstance &CI, StringRef InFile, std::string &Sysroot, std::string &OutputFile) argument
387 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
392 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
398 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
403 CompilerInstance &CI = getCompilerInstance(); local
601 CompilerInstance &CI = getCompilerInstance(); local
624 CompilerInstance &CI = getCompilerInstance(); local
696 CompilerInstance &CI = getCompilerInstance(); local
[all...]
/external/llvm/include/llvm/Transforms/Utils/
H A DSimplifyLibCalls.h51 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);
62 /// \brief Checks whether the call \p CI to a fortified libcall is foldable
64 bool isFortifiedCallFoldable(CallInst *CI, unsigned ObjSizeOp,
100 Value *optimizeCall(CallInst *CI);
104 Value *optimizeStrCat(CallInst *CI, IRBuilde
[all...]
H A DVectorUtils.h99 getIntrinsicIDForCall(CallInst *CI, const TargetLibraryInfo *TLI) { argument
101 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI)) {
114 Function *F = CI->getCalledFunction();
129 return checkUnaryFloatSignature(*CI, Intrinsic::sin);
133 return checkUnaryFloatSignature(*CI, Intrinsic::cos);
137 return checkUnaryFloatSignature(*CI, Intrinsic::exp);
141 return checkUnaryFloatSignature(*CI, Intrinsic::exp2);
145 return checkUnaryFloatSignature(*CI, Intrinsic::log);
149 return checkUnaryFloatSignature(*CI, Intrinsic::log10);
153 return checkUnaryFloatSignature(*CI, Intrinsi
[all...]
/external/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp95 static bool callHasFloatingPointArgument(const CallInst *CI) { argument
96 for (CallInst::const_op_iterator it = CI->op_begin(), e = CI->op_end();
187 Value *LibCallSimplifier::optimizeStrCat(CallInst *CI, IRBuilder<> &B) { argument
188 Function *Callee = CI->getCalledFunction();
198 Value *Dst = CI->getArgOperand(0);
199 Value *Src = CI->getArgOperand(1);
235 Value *LibCallSimplifier::optimizeStrNCat(CallInst *CI, IRBuilder<> &B) { argument
236 Function *Callee = CI->getCalledFunction();
246 Value *Dst = CI
277 optimizeStrChr(CallInst *CI, IRBuilder<> &B) argument
322 optimizeStrRChr(CallInst *CI, IRBuilder<> &B) argument
357 optimizeStrCmp(CallInst *CI, IRBuilder<> &B) argument
398 optimizeStrNCmp(CallInst *CI, IRBuilder<> &B) argument
446 optimizeStrCpy(CallInst *CI, IRBuilder<> &B) argument
468 optimizeStpCpy(CallInst *CI, IRBuilder<> &B) argument
498 optimizeStrNCpy(CallInst *CI, IRBuilder<> &B) argument
541 optimizeStrLen(CallInst *CI, IRBuilder<> &B) argument
577 optimizeStrPBrk(CallInst *CI, IRBuilder<> &B) argument
610 optimizeStrTo(CallInst *CI, IRBuilder<> &B) argument
628 optimizeStrSpn(CallInst *CI, IRBuilder<> &B) argument
656 optimizeStrCSpn(CallInst *CI, IRBuilder<> &B) argument
687 optimizeStrStr(CallInst *CI, IRBuilder<> &B) argument
748 optimizeMemChr(CallInst *CI, IRBuilder<> &B) argument
834 optimizeMemCmp(CallInst *CI, IRBuilder<> &B) argument
886 optimizeMemCpy(CallInst *CI, IRBuilder<> &B) argument
898 optimizeMemMove(CallInst *CI, IRBuilder<> &B) argument
910 optimizeMemSet(CallInst *CI, IRBuilder<> &B) argument
951 optimizeUnaryDoubleFP(CallInst *CI, IRBuilder<> &B, bool CheckRetType) argument
988 optimizeBinaryDoubleFP(CallInst *CI, IRBuilder<> &B) argument
1015 optimizeCos(CallInst *CI, IRBuilder<> &B) argument
1038 optimizePow(CallInst *CI, IRBuilder<> &B) argument
1108 optimizeExp2(CallInst *CI, IRBuilder<> &B) argument
1153 CallInst *CI = B.CreateCall2(Callee, One, LdExpArg); local
1163 optimizeFabs(CallInst *CI, IRBuilder<> &B) argument
1187 optimizeSqrt(CallInst *CI, IRBuilder<> &B) argument
1270 optimizeSinCosPi(CallInst *CI, IRBuilder<> &B) argument
1305 isTrigLibCall(CallInst *CI) argument
1326 CallInst *CI = dyn_cast<CallInst>(Val); local
1416 optimizeFFS(CallInst *CI, IRBuilder<> &B) argument
1447 optimizeAbs(CallInst *CI, IRBuilder<> &B) argument
1463 optimizeIsDigit(CallInst *CI, IRBuilder<> &B) argument
1478 optimizeIsAscii(CallInst *CI, IRBuilder<> &B) argument
1492 optimizeToAscii(CallInst *CI, IRBuilder<> &B) argument
1511 optimizeErrorReporting(CallInst *CI, IRBuilder<> &B, int StreamArg) argument
1531 isReportingError(Function *Callee, CallInst *CI, int StreamArg) argument
1555 optimizePrintFString(CallInst *CI, IRBuilder<> &B) argument
1611 optimizePrintF(CallInst *CI, IRBuilder<> &B) argument
1638 optimizeSPrintFString(CallInst *CI, IRBuilder<> &B) argument
1698 optimizeSPrintF(CallInst *CI, IRBuilder<> &B) argument
1725 optimizeFPrintFString(CallInst *CI, IRBuilder<> &B) argument
1774 optimizeFPrintF(CallInst *CI, IRBuilder<> &B) argument
1801 optimizeFWrite(CallInst *CI, IRBuilder<> &B) argument
1836 optimizeFPuts(CallInst *CI, IRBuilder<> &B) argument
1859 optimizePuts(CallInst *CI, IRBuilder<> &B) argument
1892 optimizeStringMemoryLibCall(CallInst *CI, IRBuilder<> &Builder) argument
1958 optimizeCall(CallInst *CI) argument
2194 isFortifiedCallFoldable(CallInst *CI, unsigned ObjSizeOp, unsigned SizeOp, bool isString) argument
2221 optimizeMemCpyChk(CallInst *CI, IRBuilder<> &B) argument
2235 optimizeMemMoveChk(CallInst *CI, IRBuilder<> &B) argument
2249 optimizeMemSetChk(CallInst *CI, IRBuilder<> &B) argument
2263 optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc::Func Func) argument
2308 optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc::Func Func) argument
2324 optimizeCall(CallInst *CI) argument
[all...]
/external/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp65 static CallInst *ReplaceCallWith(const char *NewFn, CallInst *CI, argument
70 Module *M = CI->getParent()->getParent()->getParent();
78 IRBuilder<> Builder(CI->getParent(), CI);
81 NewCI->setName(CI->getName());
82 if (!CI->use_empty())
83 CI->replaceAllUsesWith(NewCI);
317 static void ReplaceFPIntrinsicWithCall(CallInst *CI, const char *Fname, argument
320 CallSite CS(CI);
321 switch (CI
340 LowerIntrinsicCall(CallInst *CI) argument
580 LowerToByteSwap(CallInst *CI) argument
[all...]
H A DGCRootLowering.cpp143 if (CallInst *CI = dyn_cast<CallInst>(I))
144 if (Function *F = CI->getCalledFunction())
211 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(II++)) {
212 Function *F = CI->getCalledFunction();
218 new StoreInst(CI->getArgOperand(0), CI->getArgOperand(2), CI);
219 CI->replaceAllUsesWith(St);
220 CI->eraseFromParent();
226 Value *Ld = new LoadInst(CI
280 VisitCallPoint(MachineBasicBlock::iterator CI) argument
[all...]
/external/clang/lib/Frontend/Rewrite/
H A DFrontendActions.cpp34 HTMLPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { argument
35 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile))
36 return CreateHTMLPrinter(OS, CI.getPreprocessor());
44 FixItAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { argument
87 bool FixItAction::BeginSourceFileAction(CompilerInstance &CI, argument
97 Rewriter.reset(new FixItRewriter(CI.getDiagnostics(), CI.getSourceManager(),
98 CI.getLangOpts(), FixItOpts.get()));
107 bool FixItRecompile::BeginInvocation(CompilerInstance &CI) { argument
112 const FrontendOptions &FEOpts = CI
152 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
174 CompilerInstance &CI = getCompilerInstance(); local
182 CompilerInstance &CI = getCompilerInstance(); local
190 CompilerInstance &CI = getCompilerInstance(); local
[all...]
/external/llvm/tools/bugpoint-passes/
H A DTestPasses.cpp61 if (CallInst *CI = dyn_cast<CallInst>(I)) {
62 if (!CI->use_empty())
63 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
64 CI->getParent()->getInstList().erase(CI); variable
/external/clang/lib/StaticAnalyzer/Frontend/
H A DFrontendActions.cpp17 AnalysisAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { argument
18 return CreateAnalysisConsumer(CI);
25 ParseModelFileAction::CreateASTConsumer(CompilerInstance &CI, argument
H A DModelInjector.cpp28 ModelInjector::ModelInjector(CompilerInstance &CI) : CI(CI) {} argument
47 SourceManager &SM = CI.getSourceManager();
50 AnalyzerOptionsRef analyzerOpts = CI.getAnalyzerOpts();
67 new CompilerInvocation(CI.getInvocation()));
82 new ForwardingDiagnosticConsumer(CI.getDiagnosticClient()),
87 Instance.setVirtualFileSystem(&CI.getVirtualFileSystem());
91 Instance.setFileManager(&CI.getFileManager());
93 Instance.setPreprocessor(&CI
[all...]
H A DModelInjector.h45 ModelInjector(CompilerInstance &CI);
65 CompilerInstance &CI; member in class:clang::ento::ModelInjector
/external/llvm/include/llvm/CodeGen/
H A DIntrinsicLowering.h50 void LowerIntrinsicCall(CallInst *CI);
55 static bool LowerToByteSwap(CallInst *CI);
/external/llvm/lib/Transforms/Scalar/
H A DLowerExpectIntrinsic.cpp45 CallInst *CI = dyn_cast<CallInst>(SI.getCondition()); local
46 if (!CI)
49 Function *Fn = CI->getCalledFunction();
53 Value *ArgValue = CI->getArgOperand(0);
54 ConstantInt *ExpectedValue = dyn_cast<ConstantInt>(CI->getArgOperand(1));
68 MDBuilder(CI->getContext()).createBranchWeights(Weights));
87 CallInst *CI;
91 CI = dyn_cast<CallInst>(BI.getCondition());
95 CI = dyn_cast<CallInst>(CmpI->getOperand(0));
98 if (!CI)
144 CallInst *CI = dyn_cast<CallInst>(BI++); local
[all...]
H A DTailRecursionElimination.cpp106 bool EliminateRecursiveTailCall(CallInst *CI, ReturnInst *Ret,
120 bool CanMoveAboveCall(Instruction *I, CallInst *CI);
121 Value *CanTransformAccumulatorRecursion(Instruction *I, CallInst *CI);
298 CallInst *CI = dyn_cast<CallInst>(&I); local
299 if (!CI || CI->isTailCall())
302 if (CI->doesNotAccessMemory()) {
311 for (auto &Arg : CI->arg_operands()) {
322 F.getContext(), "tailcallelim", F, CI->getDebugLoc(),
324 CI
439 CanMoveAboveCall(Instruction *I, CallInst *CI) argument
475 isDynamicConstant(Value *V, CallInst *CI, ReturnInst *RI) argument
509 getCommonReturnValue(ReturnInst *IgnoreRI, CallInst *CI) argument
535 CanTransformAccumulatorRecursion(Instruction *I, CallInst *CI) argument
614 EliminateRecursiveTailCall(CallInst *CI, ReturnInst *Ret, BasicBlock *&OldEntry, bool &TailCallsAreMarkedTail, SmallVectorImpl<PHINode *> &ArgumentPHIs, bool CannotTailCallElimCallsMarkedTail) argument
844 CallInst *CI = FindTRECandidate(Ret, CannotTailCallElimCallsMarkedTail); local
[all...]
/external/clang/include/clang/Lex/
H A DPreprocessorLexer.h99 PPConditionalInfo CI; local
100 CI.IfLoc = DirectiveStart;
101 CI.WasSkipping = WasSkipping;
102 CI.FoundNonSkip = FoundNonSkip;
103 CI.FoundElse = FoundElse;
104 ConditionalStack.push_back(CI);
106 void pushConditionalLevel(const PPConditionalInfo &CI) { argument
107 ConditionalStack.push_back(CI);
113 bool popConditionalLevel(PPConditionalInfo &CI) { argument
116 CI
[all...]
/external/clang/include/clang/ARCMigrate/
H A DARCMTActions.h22 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;
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILPeepholeOptimizer.cpp85 bool expandBFI(CallInst *CI);
88 bool expandBFM(CallInst *CI);
92 bool isSigned24BitOps(CallInst *CI);
93 void expandSigned24BitOps(CallInst *CI);
97 bool isRWGLocalOpt(CallInst *CI);
101 bool convertAccurateDivide(CallInst *CI);
102 void expandAccurateDivide(CallInst *CI);
111 bool propagateSamplerInst(CallInst *CI);
242 CallInst *CI = isConstVec[x]; local
243 Constant *CV = dyn_cast<Constant>(CI
301 CallInst *CI = dyn_cast<CallInst>(inst); local
669 CallInst *CI = CallInst::Create(Func, Operands, "BitInsertOpt"); local
834 CallInst *CI = CallInst::Create(Func, Operands, "ByteExtractOpt"); local
842 expandBFI(CallInst *CI) argument
881 expandBFM(CallInst *CI) argument
977 isSigned24BitOps(CallInst *CI) argument
995 expandSigned24BitOps(CallInst *CI) argument
1067 isRWGLocalOpt(CallInst *CI) argument
1075 convertAccurateDivide(CallInst *CI) argument
1089 expandAccurateDivide(CallInst *CI) argument
1100 propagateSamplerInst(CallInst *CI) argument
[all...]
/external/llvm/lib/IR/
H A DAutoUpgrade.cpp421 void llvm::UpgradeIntrinsicCall(CallInst *CI, Function *NewFn) { argument
422 Function *F = CI->getCalledFunction();
423 LLVMContext &C = CI->getContext();
425 Builder.SetInsertPoint(CI->getParent(), CI);
437 Rep = Builder.CreateICmpEQ(CI->getArgOperand(0), CI->getArgOperand(1),
440 Rep = Builder.CreateSExt(Rep, CI->getType(), "");
443 Rep = Builder.CreateICmpSGT(CI->getArgOperand(0), CI
[all...]
/external/clang/include/clang/Rewrite/Frontend/
H A DFrontendActions.h25 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
34 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
37 bool BeginSourceFileAction(CompilerInstance &CI,
57 bool BeginInvocation(CompilerInstance &CI) override;
62 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp30 if (ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
31 Offset = CI->getZExtValue();
81 Instruction *InstCombiner::PromoteCastOfAllocation(BitCastInst &CI, argument
83 PointerType *PTy = cast<PointerType>(CI.getType());
146 // things that used it to use the new cast. This will also hack on CI, but it
154 return ReplaceInstUsesWith(CI, New);
235 isEliminableCastPair(const CastInst *CI, ///< First cast instruction argument
239 Type *SrcTy = CI->getOperand(0)->getType(); // A from above
240 Type *MidTy = CI->getType(); // B from above
243 Instruction::CastOps firstOp = Instruction::CastOps(CI
289 commonCastTransforms(CastInst &CI) argument
434 visitTrunc(TruncInst &CI) argument
508 transformZExtICmp(ICmpInst *ICI, Instruction &CI, bool DoXform) argument
757 visitZExt(ZExtInst &CI) argument
893 transformSExtICmp(ICmpInst *ICI, Instruction &CI) argument
1044 visitSExt(SExtInst &CI) argument
1183 visitFPTrunc(FPTruncInst &CI) argument
1334 visitFPExt(CastInst &CI) argument
1404 visitUIToFP(CastInst &CI) argument
1408 visitSIToFP(CastInst &CI) argument
1412 visitIntToPtr(IntToPtrInst &CI) argument
1434 commonPointerCastTransforms(CastInst &CI) argument
1458 visitPtrToInt(PtrToIntInst &CI) argument
1635 ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1)); local
1661 OptimizeIntegerToVectorInsertions(BitCastInst &CI, InstCombiner &IC) argument
1689 OptimizeIntToFloatBitCast(BitCastInst &CI, InstCombiner &IC, const DataLayout &DL) argument
1745 visitBitCast(BitCastInst &CI) argument
1873 visitAddrSpaceCast(AddrSpaceCastInst &CI) argument
[all...]
/external/clang/include/clang/StaticAnalyzer/Frontend/
H A DFrontendActions.h29 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
47 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
/external/clang/include/clang/Frontend/
H A DFrontendAction.h44 std::unique_ptr<ASTConsumer> CreateWrappedASTConsumer(CompilerInstance &CI,
57 /// \param CI - The current compiler instance, provided as a convenience, see
64 virtual std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
73 virtual bool BeginInvocation(CompilerInstance &CI) { return true; } argument
79 virtual bool BeginSourceFileAction(CompilerInstance &CI, argument
197 /// \param CI - The compiler instance this action is being run from. The
211 bool BeginSourceFile(CompilerInstance &CI, const FrontendInputFile &Input);
241 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
246 /// \param CI - The compiler instance, for use in reporting diagnostics.
250 virtual bool ParseArgs(const CompilerInstance &CI,
[all...]

Completed in 1157 milliseconds

1234567891011>>