Home
last modified time | relevance | path

Searched defs:CI (Results 1 – 25 of 245) sorted by relevance

12345678910

/external/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp95 static bool callHasFloatingPointArgument(const CallInst *CI) { in callHasFloatingPointArgument()
187 Value *LibCallSimplifier::optimizeStrCat(CallInst *CI, IRBuilder<> &B) { in optimizeStrCat()
235 Value *LibCallSimplifier::optimizeStrNCat(CallInst *CI, IRBuilder<> &B) { in optimizeStrNCat()
277 Value *LibCallSimplifier::optimizeStrChr(CallInst *CI, IRBuilder<> &B) { in optimizeStrChr()
322 Value *LibCallSimplifier::optimizeStrRChr(CallInst *CI, IRBuilder<> &B) { in optimizeStrRChr()
357 Value *LibCallSimplifier::optimizeStrCmp(CallInst *CI, IRBuilder<> &B) { in optimizeStrCmp()
398 Value *LibCallSimplifier::optimizeStrNCmp(CallInst *CI, IRBuilder<> &B) { in optimizeStrNCmp()
446 Value *LibCallSimplifier::optimizeStrCpy(CallInst *CI, IRBuilder<> &B) { in optimizeStrCpy()
468 Value *LibCallSimplifier::optimizeStpCpy(CallInst *CI, IRBuilder<> &B) { in optimizeStpCpy()
498 Value *LibCallSimplifier::optimizeStrNCpy(CallInst *CI, IRBuilder<> &B) { in optimizeStrNCpy()
[all …]
DBuildLibCalls.cpp51 CallInst *CI = B.CreateCall(StrLen, CastToCStr(Ptr, B), "strlen"); in EmitStrLen() local
77 CallInst *CI = B.CreateCall2(StrNLen, CastToCStr(Ptr, B), MaxLen, "strnlen"); in EmitStrNLen() local
103 CallInst *CI = B.CreateCall2(StrChr, CastToCStr(Ptr, B), in EmitStrChr() local
127 CallInst *CI = B.CreateCall3(StrNCmp, CastToCStr(Ptr1, B), in EmitStrNCmp() local
152 CallInst *CI = B.CreateCall2(StrCpy, CastToCStr(Dst, B), CastToCStr(Src, B), in EmitStrCpy() local
177 CallInst *CI = B.CreateCall3(StrNCpy, CastToCStr(Dst, B), CastToCStr(Src, B), in EmitStrNCpy() local
204 CallInst *CI = B.CreateCall4(MemCpy, Dst, Src, Len, ObjSize); in EmitMemCpyChk() local
225 CallInst *CI = B.CreateCall3(MemChr, CastToCStr(Ptr, B), Val, Len, "memchr"); in EmitMemChr() local
250 CallInst *CI = B.CreateCall3(MemCmp, CastToCStr(Ptr1, B), CastToCStr(Ptr2, B), in EmitMemCmp() local
286 CallInst *CI = B.CreateCall(Callee, Op, Name); in EmitUnaryFloatFnCall() local
[all …]
/external/clang/lib/Frontend/Rewrite/
DFrontendActions.cpp34 HTMLPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
44 FixItAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
87 bool FixItAction::BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction()
107 bool FixItRecompile::BeginInvocation(CompilerInstance &CI) { in BeginInvocation()
152 RewriteObjCAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
174 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction() local
182 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction() local
190 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction() local
/external/clang/lib/Frontend/
DFrontendActions.cpp37 InitOnlyAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
49 ASTPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
56 ASTDumpAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
63 ASTDeclListAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
68 ASTViewAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
73 DeclContextPrintAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
79 GeneratePCHAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
94 CompilerInstance &CI, StringRef InFile, std::string &Sysroot, in ComputeASTConsumerArguments()
117 GenerateModuleAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
257 bool GenerateModuleAction::BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction()
[all …]
DFrontendAction.cpp138 FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI, in CreateWrappedASTConsumer()
171 bool FrontendAction::BeginSourceFile(CompilerInstance &CI, in BeginSourceFile()
433 CompilerInstance &CI = getCompilerInstance(); in Execute() local
454 CompilerInstance &CI = getCompilerInstance(); in EndSourceFile() local
519 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction() local
544 PreprocessorFrontendAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
550 WrapperFrontendAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
554 bool WrapperFrontendAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation()
557 bool WrapperFrontendAction::BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction()
DASTMerge.cpp20 ASTMergeAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
24 bool ASTMergeAction::BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction()
35 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction() local
/external/clang/lib/ARCMigrate/
DARCMTActions.cpp17 bool CheckAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation()
30 bool ModifyAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation()
38 bool MigrateAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp30 if (ConstantInt *CI = dyn_cast<ConstantInt>(Val)) { in DecomposeSimpleLinearExpr() local
81 Instruction *InstCombiner::PromoteCastOfAllocation(BitCastInst &CI, in PromoteCastOfAllocation()
235 isEliminableCastPair(const CastInst *CI, ///< First cast instruction in isEliminableCastPair()
275 if (const CastInst *CI = dyn_cast<CastInst>(V)) in ShouldOptimizeCast() local
289 Instruction *InstCombiner::commonCastTransforms(CastInst &CI) { in commonCastTransforms()
383 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) { in CanEvaluateTruncated() local
393 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) { in CanEvaluateTruncated() local
434 Instruction *InstCombiner::visitTrunc(TruncInst &CI) { in visitTrunc()
508 Instruction *InstCombiner::transformZExtICmp(ICmpInst *ICI, Instruction &CI, in transformZExtICmp()
757 Instruction *InstCombiner::visitZExt(ZExtInst &CI) { in visitZExt()
[all …]
DInstCombineCompares.cpp172 static bool isHighOnes(const ConstantInt *CI) { in isHighOnes()
522 if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(i))) { in EvaluateGEPOffsetExpression() local
550 ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(i)); in EvaluateGEPOffsetExpression() local
742 Value *X, ConstantInt *CI, in FoldICmpAddOpCst()
1950 if (CastInst *CI = dyn_cast<CastInst>(ICI.getOperand(1))) { in visitICmpInstWithCastAndCast() local
1975 ConstantInt *CI = dyn_cast<ConstantInt>(ICI.getOperand(1)); in visitICmpInstWithCastAndCast() local
2282 if (ConstantInt *CI = dyn_cast<ConstantInt>(BO->getOperand(1))) { in ProcessUMulZExtIdiom() local
2311 ConstantInt *CI; in ProcessUMulZExtIdiom() local
2329 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)) { in ProcessUMulZExtIdiom() local
2341 if (ConstantInt *CI = dyn_cast<ConstantInt>(OtherVal)) { in ProcessUMulZExtIdiom() local
[all …]
/external/clang/lib/StaticAnalyzer/Frontend/
DFrontendActions.cpp17 AnalysisAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
25 ParseModelFileAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
/external/libcxx/test/std/containers/sequences/deque/deque.modifiers/
Dinsert_iter_iter.pass.cpp53 typedef typename C::const_iterator CI; in test() typedef
71 typedef typename C::const_iterator CI; in test() typedef
89 typedef typename C::const_iterator CI; in test() typedef
112 typedef typename C::const_iterator CI; in testN() typedef
174 typedef typename C::const_iterator CI; in testI() typedef
195 typedef typename C::const_iterator CI; in testNI() typedef
249 typedef typename C::const_iterator CI; in test_move() typedef
Dinsert_value.pass.cpp46 typedef typename C::const_iterator CI; in test() typedef
66 typedef typename C::const_iterator CI; in testN() typedef
97 typedef typename C::const_iterator CI; in self_reference_test() typedef
Dinsert_size_value.pass.cpp48 typedef typename C::const_iterator CI; in test() typedef
68 typedef typename C::const_iterator CI; in testN() typedef
115 typedef typename C::const_iterator CI; in self_reference_test() typedef
/external/clang/include/clang/Lex/
DPreprocessorLexer.h99 PPConditionalInfo CI; in pushConditionalLevel() local
106 void pushConditionalLevel(const PPConditionalInfo &CI) { in pushConditionalLevel()
113 bool popConditionalLevel(PPConditionalInfo &CI) { in popConditionalLevel()
/external/llvm/lib/Transforms/Scalar/
DTailRecursionElimination.cpp298 CallInst *CI = dyn_cast<CallInst>(&I); in markTails() local
439 bool TailCallElim::CanMoveAboveCall(Instruction *I, CallInst *CI) { in CanMoveAboveCall()
475 static bool isDynamicConstant(Value *V, CallInst *CI, ReturnInst *RI) { in isDynamicConstant()
509 static Value *getCommonReturnValue(ReturnInst *IgnoreRI, CallInst *CI) { in getCommonReturnValue()
536 CallInst *CI) { in CanTransformAccumulatorRecursion()
573 CallInst *CI = nullptr; in FindTRECandidate() local
614 bool TailCallElim::EliminateRecursiveTailCall(CallInst *CI, ReturnInst *Ret, in EliminateRecursiveTailCall()
816 if (CallInst *CI = FindTRECandidate(BI, CannotTailCallElimCallsMarkedTail)){ in FoldReturnAndProcessPred() local
844 CallInst *CI = FindTRECandidate(Ret, CannotTailCallElimCallsMarkedTail); in ProcessReturningBlock() local
DLowerExpectIntrinsic.cpp45 CallInst *CI = dyn_cast<CallInst>(SI.getCondition()); in handleSwitchExpect() local
87 CallInst *CI; in handleBranchExpect() local
144 CallInst *CI = dyn_cast<CallInst>(BI++); in lowerExpectIntrinsic() local
DBDCE.cpp156 if (ConstantInt *CI = in determineLiveOperandBits() local
172 if (ConstantInt *CI = in determineLiveOperandBits() local
185 if (ConstantInt *CI = in determineLiveOperandBits() local
/external/mesa3d/src/gallium/drivers/radeon/
DAMDILPeepholeOptimizer.cpp242 CallInst *CI = isConstVec[x]; in doIsConstCallConversionIfNeeded() local
301 CallInst *CI = dyn_cast<CallInst>(inst); in optimizeCallInst() local
669 CallInst *CI = CallInst::Create(Func, Operands, "BitInsertOpt"); in optimizeBitInsert() local
834 CallInst *CI = CallInst::Create(Func, Operands, "ByteExtractOpt"); in optimizeBitExtract() local
842 AMDGPUPeepholeOpt::expandBFI(CallInst *CI) in expandBFI()
881 AMDGPUPeepholeOpt::expandBFM(CallInst *CI) in expandBFM()
977 AMDGPUPeepholeOpt::isSigned24BitOps(CallInst *CI) in isSigned24BitOps()
995 AMDGPUPeepholeOpt::expandSigned24BitOps(CallInst *CI) in expandSigned24BitOps()
1067 AMDGPUPeepholeOpt::isRWGLocalOpt(CallInst *CI) in isRWGLocalOpt()
1075 AMDGPUPeepholeOpt::convertAccurateDivide(CallInst *CI) in convertAccurateDivide()
[all …]
/external/llvm/lib/IR/
DInstruction.cpp278 if (const CmpInst *CI = dyn_cast<CmpInst>(I1)) in haveSameSpecialState() local
280 if (const CallInst *CI = dyn_cast<CallInst>(I1)) in haveSameSpecialState() local
284 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1)) in haveSameSpecialState() local
451 if (const CallInst *CI = dyn_cast<CallInst>(this)) in mayThrow() local
457 if (const CallInst *CI = dyn_cast<CallInst>(this)) in mayReturn() local
/external/libcxx/test/std/containers/sequences/deque/deque.cons/
Dassign_iter_iter.pass.cpp58 typedef typename C::const_iterator CI; in testN() typedef
68 typedef typename C::const_iterator CI; in testI() typedef
81 typedef typename C::const_iterator CI; in testNI() typedef
/external/clang/lib/FrontendTool/
DExecuteCompilerInvocation.cpp34 static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) { in CreateFrontendBaseAction()
116 static FrontendAction *CreateFrontendAction(CompilerInstance &CI) { in CreateFrontendAction()
/external/clang/examples/PrintFunctionNames/
DPrintFunctionNames.cpp39 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
44 bool ParseArgs(const CompilerInstance &CI, in ParseArgs()
/external/llvm/lib/Transforms/IPO/
DPruneEH.cpp118 if (CallInst *CI = dyn_cast<CallInst>(I)) { in runOnSCC() local
213 if (CallInst *CI = dyn_cast<CallInst>(I++)) in SimplifyFunction() local
245 if (CallInst *CI = dyn_cast<CallInst>(I)) { in DeleteBasicBlock() local
/external/clang/unittests/Frontend/
DFrontendActionTest.cpp46 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
55 Visitor(CompilerInstance &CI, bool ActOnEndOfTranslationUnit, in Visitor()
73 CompilerInstance &CI; member in __anon6de035050111::TestASTFrontendAction::Visitor
/external/clang/include/clang/Frontend/
DFrontendAction.h73 virtual bool BeginInvocation(CompilerInstance &CI) { return true; } in BeginInvocation()
79 virtual bool BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction()

12345678910