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

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DSimplifyLibCalls.h53 Value *optimizeCall(CallInst *CI);
56 Value *optimizeMemCpyChk(CallInst *CI, IRBuilder<> &B);
57 Value *optimizeMemMoveChk(CallInst *CI, IRBuilder<> &B);
58 Value *optimizeMemSetChk(CallInst *CI, IRBuilder<> &B);
61 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
62 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
63 Value *optimizeMemCCpyChk(CallInst *CI, IRBuilder<> &B);
64 Value *optimizeSNPrintfChk(CallInst *CI, IRBuilder<> &B);
65 Value *optimizeSPrintfChk(CallInst *CI,IRBuilder<> &B);
66 Value *optimizeStrCatChk(CallInst *CI, IRBuilde
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DARCMTActions.cpp16 bool CheckAction::BeginInvocation(CompilerInstance &CI) { argument
17 if (arcmt::checkForManualIssues(CI.getInvocation(), getCurrentInput(),
18 CI.getPCHContainerOperations(),
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.getPCHContainerOperations(),
33 CI.getDiagnostics().getClient());
39 bool MigrateAction::BeginInvocation(CompilerInstance &CI) { argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DFrontendAction.cpp144 CompilerInstance &CI = getCompilerInstance(); local
145 return CI.getPreprocessor().getHeaderSearchInfo().lookupModule(
146 CI.getLangOpts().CurrentModule, /*AllowSearch*/false);
150 FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI, argument
152 std::unique_ptr<ASTConsumer> Consumer = CreateASTConsumer(CI, InFile);
158 for (const std::string &Arg : CI.getFrontendOpts().AddPluginActions) {
167 CI.getDiagnostics().Report(diag::err_fe_invalid_plugin_name) << Arg;
179 if (CI.hasCodeCompletionConsumer())
194 for (size_t i = 0, e = CI.getFrontendOpts().AddPluginActions.size();
196 if (it->getName() == CI
232 ReadOriginalFileName(CompilerInstance &CI, std::string &InputFile, bool IsModuleMap = false) argument
416 loadModuleMapForModuleBuild(CompilerInstance &CI, bool IsSystem, bool IsPreprocessed, std::string &PresumedModuleMapFile, unsigned &Offset) argument
448 prepareToBuildModule(CompilerInstance &CI, StringRef ModuleMapFilename) argument
514 getInputBufferForModule(CompilerInstance &CI, Module *M) argument
538 BeginSourceFile(CompilerInstance &CI, const FrontendInputFile &RealInput) argument
930 CompilerInstance &CI = getCompilerInstance(); local
959 CompilerInstance &CI = getCompilerInstance(); local
1025 CompilerInstance &CI = getCompilerInstance(); local
1050 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
1055 PrepareToExecuteAction(CompilerInstance &CI) argument
1059 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
1063 BeginInvocation(CompilerInstance &CI) argument
1066 BeginSourceFileAction(CompilerInstance &CI) 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
29 AdaptedAction->setCompilerInstance(&CI);
30 return AdaptedAction->BeginSourceFileAction(CI);
34 CompilerInstance &CI = getCompilerInstance(); local
35 CI.getDiagnostics().getClient()->BeginSourceFile(
36 CI.getASTContext().getLangOpts());
37 CI.getDiagnostics().SetArgToStringFn(&FormatASTNodeDiagnosticArgument,
38 &CI
[all...]
H A DFrontendActions.cpp36 CodeCompleteConsumer *GetCodeCompletionConsumer(CompilerInstance &CI) { argument
37 return CI.hasCodeCompletionConsumer() ? &CI.getCodeCompletionConsumer()
41 void EnsureSemaIsCreated(CompilerInstance &CI, FrontendAction &Action) { argument
43 !CI.getFrontendOpts().CodeCompletionAt.FileName.empty())
44 CI.createCodeCompletionConsumer();
46 if (!CI.hasSema())
47 CI.createSema(Action.getTranslationUnitKind(),
48 GetCodeCompletionConsumer(CI));
57 InitOnlyAction::CreateASTConsumer(CompilerInstance &CI, StringRe argument
69 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
77 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
85 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
90 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
95 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
123 ComputeASTConsumerArguments(CompilerInstance &CI, std::string &Sysroot) argument
135 CreateOutputFile(CompilerInstance &CI, StringRef InFile, std::string &OutputFile) argument
157 BeginSourceFileAction(CompilerInstance &CI) argument
163 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
188 BeginSourceFileAction( CompilerInstance &CI) argument
199 CreateOutputFile(CompilerInstance &CI, StringRef InFile) argument
223 BeginSourceFileAction( CompilerInstance &CI) argument
236 CreateOutputFile(CompilerInstance &CI, StringRef InFile) argument
241 PrepareToExecuteAction( CompilerInstance &CI) argument
281 BeginSourceFileAction( CompilerInstance &CI) argument
306 CreateOutputFile(CompilerInstance &CI, StringRef InFile) argument
315 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
320 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
326 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
331 CompilerInstance &CI = getCompilerInstance(); local
484 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
489 CompilerInstance &CI = getCompilerInstance(); local
701 BeginInvocation(CompilerInstance &CI) argument
786 CompilerInstance &CI = getCompilerInstance(); local
883 CompilerInstance &CI = getCompilerInstance(); local
931 CompilerInstance &CI = getCompilerInstance(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp60 static bool isCallingConvCCompatible(CallInst *CI) { argument
61 switch(CI->getCallingConv()) {
72 if (Triple(CI->getModule()->getTargetTriple()).isiOS())
75 auto *FuncTy = CI->getFunctionType();
104 static bool callHasFloatingPointArgument(const CallInst *CI) { argument
105 return any_of(CI->operands(), [](const Use &OI) {
110 static bool callHasFP128Argument(const CallInst *CI) {
111 return any_of(CI->operands(), [](const Use &OI) {
116 static Value *convertStrToNumber(CallInst *CI, StringRef &Str, int64_t Base) {
135 if (!isIntN(CI
[all...]
H A DLibCallsShrinkWrap.cpp78 void visitCallInst(CallInst &CI) { checkCandidate(CI); } argument
81 for (auto &CI : WorkList) {
82 LLVM_DEBUG(dbgs() << "CDCE calls: " << CI->getCalledFunction()->getName()
84 if (perform(CI)) {
93 bool perform(CallInst *CI);
94 void checkCandidate(CallInst &CI);
95 void shrinkWrapCI(CallInst *CI, Value *Cond);
96 bool performCallDomainErrorOnly(CallInst *CI, const LibFunc &Func);
97 bool performCallErrors(CallInst *CI, cons
104 createOrCond(CallInst *CI, CmpInst::Predicate Cmp, float Val, CmpInst::Predicate Cmp2, float Val2) argument
123 createCond(CallInst *CI, CmpInst::Predicate Cmp, float Val) argument
136 performCallDomainErrorOnly(CallInst *CI, const LibFunc &Func) argument
188 performCallRangeErrorOnly(CallInst *CI, const LibFunc &Func) argument
226 performCallErrors(CallInst *CI, const LibFunc &Func) argument
290 checkCandidate(CallInst &CI) argument
319 generateOneRangeCond(CallInst *CI, const LibFunc &Func) argument
341 generateTwoRangeCond(CallInst *CI, const LibFunc &Func) argument
420 generateCondForPow(CallInst *CI, const LibFunc &Func) argument
485 shrinkWrapCI(CallInst *CI, Value *Cond) argument
505 perform(CallInst *CI) argument
[all...]
H A DInjectTLIMappings.cpp44 /// <vparams> = "v", as many as are the number of parameters of CI.
45 /// <scalarname> = the name of the scalar function called by CI.
47 static std::string mangleTLIName(StringRef VectorName, const CallInst &CI, argument
52 for (unsigned I = 0; I < CI.getNumArgOperands(); ++I)
54 Out << "_" << CI.getCalledFunction()->getName() << "(" << VectorName << ")";
68 /// vectorizes the CallInst CI with a vectorization factor of VF
70 /// CI (other than void) need to be widened to a VectorType of VF
72 static void addVariantDeclaration(CallInst &CI, const unsigned VF, argument
74 Module *M = CI.getModule();
77 Type *RetTy = ToVectorTy(CI
101 addMappingsFromTLI(const TargetLibraryInfo &TLI, CallInst &CI) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DFrontendActions.cpp41 HTMLPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { argument
43 CI.createDefaultOutputFile(false, InFile))
44 return CreateHTMLPrinter(std::move(OS), CI.getPreprocessor());
52 FixItAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { argument
96 bool FixItAction::BeginSourceFileAction(CompilerInstance &CI) { argument
105 Rewriter.reset(new FixItRewriter(CI.getDiagnostics(), CI.getSourceManager(),
106 CI.getLangOpts(), FixItOpts.get()));
115 bool FixItRecompile::BeginInvocation(CompilerInstance &CI) { argument
120 const FrontendOptions &FEOpts = CI
164 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) argument
186 CompilerInstance &CI = getCompilerInstance(); local
195 CompilerInstance &CI = getCompilerInstance(); local
204 CompilerInstance &CI; member in class:RewriteIncludesAction::RewriteImportsListener
210 RewriteImportsListener(CompilerInstance &CI, std::shared_ptr<raw_ostream> Out) argument
270 BeginSourceFileAction(CompilerInstance &CI) argument
305 CompilerInstance &CI = getCompilerInstance(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp31 static CallInst *ReplaceCallWith(const char *NewFn, CallInst *CI, argument
36 Module *M = CI->getModule();
44 IRBuilder<> Builder(CI->getParent(), CI->getIterator());
47 NewCI->setName(CI->getName());
48 if (!CI->use_empty())
49 CI->replaceAllUsesWith(NewCI);
203 static void ReplaceFPIntrinsicWithCall(CallInst *CI, const char *Fname, argument
206 CallSite CS(CI);
207 switch (CI
226 LowerIntrinsicCall(CallInst *CI) argument
452 LowerToByteSwap(CallInst *CI) argument
[all...]
H A DScalarizeMaskedMemIntrin.cpp66 bool optimizeCallInst(CallInst *CI, bool &ModifiedDT);
127 static void scalarizeMaskedLoad(CallInst *CI, bool &ModifiedDT) { argument
128 Value *Ptr = CI->getArgOperand(0);
129 Value *Alignment = CI->getArgOperand(1);
130 Value *Mask = CI->getArgOperand(2);
131 Value *Src0 = CI->getArgOperand(3);
134 VectorType *VecType = cast<VectorType>(CI->getType());
138 IRBuilder<> Builder(CI->getContext());
139 Instruction *InsertPt = CI;
140 BasicBlock *IfBlock = CI
265 scalarizeMaskedStore(CallInst *CI, bool &ModifiedDT) argument
390 scalarizeMaskedGather(CallInst *CI, bool &ModifiedDT) argument
514 scalarizeMaskedScatter(CallInst *CI, bool &ModifiedDT) argument
599 scalarizeMaskedExpandLoad(CallInst *CI, bool &ModifiedDT) argument
712 scalarizeMaskedCompressStore(CallInst *CI, bool &ModifiedDT) argument
848 optimizeCallInst(CallInst *CI, bool &ModifiedDT) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DFrontendActions.cpp16 AnalysisAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { argument
17 return CreateAnalysisConsumer(CI);
24 ParseModelFileAction::CreateASTConsumer(CompilerInstance &CI, argument
H A DModelInjector.cpp29 ModelInjector::ModelInjector(CompilerInstance &CI) : CI(CI) {} argument
48 SourceManager &SM = CI.getSourceManager();
51 AnalyzerOptionsRef analyzerOpts = CI.getAnalyzerOpts();
67 auto Invocation = std::make_shared<CompilerInvocation>(CI.getInvocation());
79 CompilerInstance Instance(CI.getPCHContainerOperations());
82 new ForwardingDiagnosticConsumer(CI.getDiagnosticClient()),
89 Instance.setFileManager(&CI.getFileManager());
91 Instance.setPreprocessor(CI
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DIntrinsicLowering.h41 void LowerIntrinsicCall(CallInst *CI);
45 static bool LowerToByteSwap(CallInst *CI);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessorLexer.h94 PPConditionalInfo CI; local
95 CI.IfLoc = DirectiveStart;
96 CI.WasSkipping = WasSkipping;
97 CI.FoundNonSkip = FoundNonSkip;
98 CI.FoundElse = FoundElse;
99 ConditionalStack.push_back(CI);
101 void pushConditionalLevel(const PPConditionalInfo &CI) { argument
102 ConditionalStack.push_back(CI);
108 bool popConditionalLevel(PPConditionalInfo &CI) { argument
111 CI
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DAutoUpgrade.cpp1053 static Value *UpgradeX86VPERMT2Intrinsics(IRBuilder<> &Builder, CallInst &CI, argument
1055 Type *Ty = CI.getType();
1099 Value *Args[] = { CI.getArgOperand(0) , CI.getArgOperand(1),
1100 CI.getArgOperand(2) };
1106 Value *V = Builder.CreateCall(Intrinsic::getDeclaration(CI.getModule(), IID),
1109 : Builder.CreateBitCast(CI.getArgOperand(1),
1111 return EmitX86Select(Builder, CI.getArgOperand(3), V, PassThru);
1114 static Value *UpgradeX86AddSubSatIntrinsics(IRBuilder<> &Builder, CallInst &CI, argument
1116 Type *Ty = CI
1134 upgradeX86Rotate(IRBuilder< &Builder, CallInst &CI, bool IsRotateRight) argument
1161 upgradeX86vpcom(IRBuilder< &Builder, CallInst &CI, unsigned Imm, bool IsSigned) argument
1200 upgradeX86ConcatShift(IRBuilder< &Builder, CallInst &CI, bool IsShiftRight, bool ZeroMask) argument
1274 upgradeAbs(IRBuilder< &Builder, CallInst &CI) argument
1288 upgradeIntMinMax(IRBuilder< &Builder, CallInst &CI, ICmpInst::Predicate Pred) argument
1301 upgradePMULDQ(IRBuilder< &Builder, CallInst &CI, bool IsSigned) argument
1353 upgradeMaskedCompare(IRBuilder< &Builder, CallInst &CI, unsigned CC, bool Signed) argument
1383 UpgradeX86MaskedShift(IRBuilder< &Builder, CallInst &CI, Intrinsic::ID IID) argument
1391 upgradeMaskedMove(IRBuilder< &Builder, CallInst &CI) argument
1406 UpgradeMaskToInt(IRBuilder< &Builder, CallInst &CI) argument
1415 upgradeAVX512MaskToSelect(StringRef Name, IRBuilder<> &Builder, CallInst &CI, Value *&Rep) argument
1668 UpgradeIntrinsicCall(CallInst *CI, Function *NewFn) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSILoadStoreOptimizer.cpp209 static bool dmasksCanBeCombined(const CombineInfo &CI,
212 static bool offsetsCanBeCombined(CombineInfo &CI, const MCSubtargetInfo &STI,
214 static bool widthsFit(const GCNSubtarget &STM, const CombineInfo &CI,
216 static unsigned getNewOpcode(const CombineInfo &CI, const CombineInfo &Paired);
217 static std::pair<unsigned, unsigned> getSubRegIdxs(const CombineInfo &CI,
219 const TargetRegisterClass *getTargetRegisterClass(const CombineInfo &CI,
222 bool findMatchingInst(CombineInfo &CI, CombineInfo &Paired);
226 MachineBasicBlock::iterator mergeRead2Pair(CombineInfo &CI, CombineInfo &Paired);
230 MachineBasicBlock::iterator mergeWrite2Pair(CombineInfo &CI, CombineInfo &Paired);
231 MachineBasicBlock::iterator mergeImagePair(CombineInfo &CI, CombineInf
659 dmasksCanBeCombined(const CombineInfo &CI, const SIInstrInfo &TII, const CombineInfo &Paired) argument
721 offsetsCanBeCombined(CombineInfo &CI, const MCSubtargetInfo &STI, CombineInfo &Paired) argument
809 widthsFit(const GCNSubtarget &STM, const CombineInfo &CI, const CombineInfo &Paired) argument
827 findMatchingInst(CombineInfo &CI, CombineInfo &Paired) argument
953 mergeRead2Pair(CombineInfo &CI, CombineInfo &Paired) argument
1052 mergeWrite2Pair(CombineInfo &CI, CombineInfo &Paired) argument
1119 mergeImagePair(CombineInfo &CI, CombineInfo &Paired) argument
1172 mergeSBufferLoadImmPair(CombineInfo &CI, CombineInfo &Paired) argument
1222 mergeBufferLoadPair(CombineInfo &CI, CombineInfo &Paired) argument
1284 mergeTBufferLoadPair(CombineInfo &CI, CombineInfo &Paired) argument
1351 mergeTBufferStorePair(CombineInfo &CI, CombineInfo &Paired) argument
1413 getNewOpcode(const CombineInfo &CI, const CombineInfo &Paired) argument
1446 getSubRegIdxs(const CombineInfo &CI, const CombineInfo &Paired) argument
1483 getTargetRegisterClass(const CombineInfo &CI, const CombineInfo &Paired) argument
1513 mergeBufferStorePair(CombineInfo &CI, CombineInfo &Paired) argument
1883 addInstToMergeableList(const CombineInfo &CI, std::list<std::list<CombineInfo> > &MergeableInsts) const argument
1921 CombineInfo CI; local
1981 CombineInfo &CI = *I; local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ARCMigrate/
H A DARCMTActions.h21 bool BeginInvocation(CompilerInstance &CI) override;
29 bool BeginInvocation(CompilerInstance &CI) override;
38 bool BeginInvocation(CompilerInstance &CI) override;
39 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
48 bool BeginInvocation(CompilerInstance &CI) override;
68 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
70 bool BeginInvocation(CompilerInstance &CI) override;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DObjCARC.h51 static inline void EraseInstruction(Instruction *CI) { argument
52 Value *OldArg = cast<CallInst>(CI)->getArgOperand(0);
54 bool Unused = CI->use_empty();
58 assert((IsForwarding(GetBasicARCInstKind(CI)) ||
59 (IsNoopOnNull(GetBasicARCInstKind(CI)) &&
62 CI->replaceAllUsesWith(OldArg);
65 CI->eraseFromParent();
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DFrontendActions.h28 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
38 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
55 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
61 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
67 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
73 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
79 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
95 static bool ComputeASTConsumerArguments(CompilerInstance &CI,
101 CreateOutputFile(CompilerInstance &CI, StringRef InFile,
104 bool BeginSourceFileAction(CompilerInstance &CI) overrid
[all...]
H A DFrontendAction.h44 std::unique_ptr<ASTConsumer> CreateWrappedASTConsumer(CompilerInstance &CI,
55 virtual bool PrepareToExecuteAction(CompilerInstance &CI) { return true; } argument
63 /// \param CI - The current compiler instance, provided as a convenience, see
70 virtual std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
79 virtual bool BeginInvocation(CompilerInstance &CI) { return true; } argument
85 virtual bool BeginSourceFileAction(CompilerInstance &CI) { argument
207 bool PrepareToExecute(CompilerInstance &CI) { argument
208 return PrepareToExecuteAction(CI);
216 /// \param CI - The compiler instance this action is being run from. The
230 bool BeginSourceFile(CompilerInstance &CI, cons
[all...]
/freebsd-11-stable/gnu/usr.bin/groff/font/devhtml/
H A DMakefile4 FONTS= R I B BI CR CI CB CBI S
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/FrontendTool/
H A DUtils.h28 std::unique_ptr<FrontendAction> CreateFrontendAction(CompilerInstance &CI);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp240 CallInst *CI = dyn_cast<CallInst>(&I);
241 if (!CI || CI->isTailCall() || isa<DbgInfoIntrinsic>(&I))
244 bool IsNoTail = CI->isNoTailCall() || CI->hasOperandBundles();
246 if (!IsNoTail && CI->doesNotAccessMemory()) {
255 for (auto &Arg : CI->arg_operands()) {
267 return OptimizationRemark(DEBUG_TYPE, "tailcall-readnone", CI)
270 CI->setTailCall();
276 if (!IsNoTail && Escaped == UNESCAPED && !Tracker.AllocaUsers.count(CI)) {
[all...]
/freebsd-11-stable/contrib/llvm-project/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) override;
56 bool BeginInvocation(CompilerInstance &CI) override;
61 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
79 bool BeginSourceFileAction(CompilerInstance &CI) override;

Completed in 426 milliseconds

1234567891011>>