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

1234567

/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.h45 ModelInjector(CompilerInstance &CI);
65 CompilerInstance &CI; member in class:clang::ento::ModelInjector
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...]
/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/lib/FrontendTool/
H A DExecuteCompilerInvocation.cpp34 static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) { argument
39 switch (CI.getFrontendOpts().ProgramAction) {
66 if (it->getName() == CI.getFrontendOpts().ActionName) {
68 if (!P->ParseArgs(CI, CI.getFrontendOpts().PluginArgs))
74 CI.getDiagnostics().Report(diag::err_fe_invalid_plugin_name)
75 << CI.getFrontendOpts().ActionName;
82 if (CI.getPreprocessorOutputOpts().RewriteIncludes)
109 CI.getDiagnostics().Report(diag::err_fe_action_not_available) << Action;
116 static FrontendAction *CreateFrontendAction(CompilerInstance &CI) { argument
[all...]
/external/libcxx/test/std/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/std/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/std/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
H A Dinsert_iter_iter.pass.cpp53 typedef typename C::const_iterator CI; typedef
54 typedef input_iterator<CI> BCI;
57 CI i = c1.insert(c1.begin() + P, BCI(c2.begin()), BCI(c2.end()));
71 typedef typename C::const_iterator CI; typedef
72 typedef forward_iterator<CI> BCI;
75 CI i = c1.insert(c1.begin() + P, BCI(c2.begin()), BCI(c2.end()));
89 typedef typename C::const_iterator CI; typedef
90 typedef bidirectional_iterator<CI> BCI;
93 CI i = c1.insert(c1.begin() + P, BCI(c2.begin()), BCI(c2.end()));
112 typedef typename C::const_iterator CI; typedef
174 typedef typename C::const_iterator CI; typedef
195 typedef typename C::const_iterator CI; typedef
249 typedef typename C::const_iterator CI; typedef
[all...]
/external/libcxx/test/std/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/include/llvm/Transforms/Utils/
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/clang/lib/Frontend/
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...]
/external/llvm/lib/Analysis/
H A DAssumptionCache.cpp42 void AssumptionCache::registerAssumption(CallInst *CI) { argument
43 assert(match(CI, m_Intrinsic<Intrinsic::assume>()) &&
51 AssumeHandles.push_back(CI);
54 assert(CI->getParent() &&
56 assert(&F == CI->getParent()->getParent() &&
/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...]
/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/clang/unittests/Frontend/
H A DFrontendActionTest.cpp46 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
48 return llvm::make_unique<Visitor>(CI, ActOnEndOfTranslationUnit,
55 Visitor(CompilerInstance &CI, bool ActOnEndOfTranslationUnit, argument
57 CI(CI), ActOnEndOfTranslationUnit(ActOnEndOfTranslationUnit),
62 CI.getSema().ActOnEndOfTranslationUnit();
73 CompilerInstance &CI; member in class:__anon2811::TestASTFrontendAction::Visitor

Completed in 565 milliseconds

1234567