Searched defs:CI (Results 1 - 25 of 144) sorted by relevance

123456

/external/clang/lib/StaticAnalyzer/Frontend/
H A DFrontendActions.cpp16 ASTConsumer *AnalysisAction::CreateASTConsumer(CompilerInstance &CI, argument
18 return CreateAnalysisConsumer(CI.getPreprocessor(),
19 CI.getFrontendOpts().OutputFile,
20 CI.getAnalyzerOpts(),
21 CI.getFrontendOpts().Plugins);
/external/llvm/include/llvm/Transforms/Utils/
H A DBuildLibCalls.h123 CallInst *CI; member in class:llvm::SimplifyFortifiedLibCalls
130 bool fold(CallInst *CI, const DataLayout *TD, const TargetLibraryInfo *TLI);
H A DVectorUtils.h97 getIntrinsicIDForCall(CallInst *CI, const TargetLibraryInfo *TLI) { argument
99 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI)) {
112 Function *F = CI->getCalledFunction();
127 return checkUnaryFloatSignature(*CI, Intrinsic::sin);
131 return checkUnaryFloatSignature(*CI, Intrinsic::cos);
135 return checkUnaryFloatSignature(*CI, Intrinsic::exp);
139 return checkUnaryFloatSignature(*CI, Intrinsic::exp2);
143 return checkUnaryFloatSignature(*CI, Intrinsic::log);
147 return checkUnaryFloatSignature(*CI, Intrinsic::log10);
151 return checkUnaryFloatSignature(*CI, Intrinsi
[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/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/llvm/unittests/ADT/
H A DIntervalMapTest.cpp45 UUMap::const_iterator CI; local
46 CI = map.begin();
47 EXPECT_TRUE(CI == I);
50 EXPECT_TRUE(I2 == CI);
/external/clang/examples/PrintFunctionNames/
H A DPrintFunctionNames.cpp39 ASTConsumer *CreateASTConsumer(CompilerInstance &CI, llvm::StringRef) { argument
43 bool ParseArgs(const CompilerInstance &CI, argument
50 DiagnosticsEngine &D = CI.getDiagnostics();
/external/clang/lib/FrontendTool/
H A DExecuteCompilerInvocation.cpp34 static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) { argument
39 switch (CI.getFrontendOpts().ProgramAction) {
74 if (it->getName() == CI.getFrontendOpts().ActionName) {
76 if (!P->ParseArgs(CI, CI.getFrontendOpts().PluginArgs))
82 CI.getDiagnostics().Report(diag::err_fe_invalid_plugin_name)
83 << CI.getFrontendOpts().ActionName;
90 if (CI.getPreprocessorOutputOpts().RewriteIncludes) {
125 CI.getDiagnostics().Report(diag::err_fe_action_not_available) << Action;
132 static FrontendAction *CreateFrontendAction(CompilerInstance &CI) { argument
[all...]
/external/libcxx/test/containers/sequences/deque/deque.capacity/
H A Dresize_size.pass.cpp45 typedef typename C::const_iterator CI; typedef
50 CI i = c1.begin();
61 typedef typename C::const_iterator CI; typedef
H A Dresize_size_value.pass.cpp45 typedef typename C::const_iterator CI; typedef
50 CI i = c1.begin();
61 typedef typename C::const_iterator CI; typedef
H A Dshrink_to_fit.pass.cpp54 typedef typename C::const_iterator CI; typedef
/external/libcxx/test/containers/sequences/deque/deque.cons/
H A Dassign_size_value.pass.cpp46 typedef typename C::const_iterator CI; typedef
51 for (CI i = c1.begin(); i != c1.end(); ++i)
60 typedef typename C::const_iterator CI; typedef
H A Dassign_iter_iter.pass.cpp58 typedef typename C::const_iterator CI; typedef
68 typedef typename C::const_iterator CI; typedef
69 typedef input_iterator<CI> ICI;
81 typedef typename C::const_iterator CI; typedef
/external/libcxx/test/containers/sequences/deque/deque.modifiers/
H A Demplace.pass.cpp49 typedef typename C::const_iterator CI; typedef
51 CI i = c1.emplace(c1.begin() + P, Emplaceable(1, 2.5));
63 typedef typename C::const_iterator CI; typedef
H A Dinsert_rvalue.pass.cpp49 typedef typename C::const_iterator CI; typedef
51 CI i = c1.insert(c1.begin() + P, MoveOnly(x));
69 typedef typename C::const_iterator CI; typedef
/external/libcxx/test/containers/sequences/deque/deque.special/
H A Dcopy.pass.cpp50 typedef typename C::const_iterator CI; typedef
52 typedef random_access_iterator<CI> RACI;
53 typedef input_iterator<CI> ICI;
H A Dcopy_backward.pass.cpp50 typedef typename C::const_iterator CI; typedef
52 typedef random_access_iterator<CI> RACI;
H A Dmove.pass.cpp50 typedef typename C::const_iterator CI; typedef
52 typedef random_access_iterator<CI> RACI;
H A Dmove_backward.pass.cpp50 typedef typename C::const_iterator CI; typedef
52 typedef random_access_iterator<CI> RACI;
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCUtil.cpp177 const CallInst *CI = cast<CallInst>(I); local
179 if (const Function *F = CI->getCalledFunction()) {
206 return GetCallSiteClass(CI);
/external/clang/lib/Frontend/
H A DASTMerge.cpp19 ASTConsumer *ASTMergeAction::CreateASTConsumer(CompilerInstance &CI, 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...]
/external/clang/unittests/AST/
H A DExternalASTSourceTest.cpp38 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI, argument
/external/clang/unittests/Frontend/
H A DFrontendActionTest.cpp41 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI, argument
/external/llvm/lib/Transforms/Utils/
H A DLowerExpectIntrinsic.cpp62 CallInst *CI = dyn_cast<CallInst>(SI->getCondition()); local
63 if (!CI)
66 Function *Fn = CI->getCalledFunction();
70 Value *ArgValue = CI->getArgOperand(0);
71 ConstantInt *ExpectedValue = dyn_cast<ConstantInt>(CI->getArgOperand(1));
86 MDBuilder(CI->getContext()).createBranchWeights(Weights));
106 CallInst *CI;
110 CI = dyn_cast<CallInst>(BI->getCondition());
114 CI = dyn_cast<CallInst>(CmpI->getOperand(0));
117 if (!CI)
165 CallInst *CI = dyn_cast<CallInst>(BI++); local
[all...]
/external/clang/lib/Rewrite/Frontend/
H A DFrontendActions.cpp33 ASTConsumer *HTMLPrintAction::CreateASTConsumer(CompilerInstance &CI, argument
35 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile))
36 return CreateHTMLPrinter(OS, CI.getPreprocessor());
43 ASTConsumer *FixItAction::CreateASTConsumer(CompilerInstance &CI, 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
153 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
170 CompilerInstance &CI = getCompilerInstance(); local
178 CompilerInstance &CI = getCompilerInstance(); local
186 CompilerInstance &CI = getCompilerInstance(); local
[all...]

Completed in 8677 milliseconds

123456