Home
last modified time | relevance | path

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

12345678910>>...23

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp60 static bool isCallingConvCCompatible(CallInst *CI) { in isCallingConvCCompatible()
104 static bool callHasFloatingPointArgument(const CallInst *CI) { in callHasFloatingPointArgument()
110 static bool callHasFP128Argument(const CallInst *CI) { in callHasFP128Argument()
116 static Value *convertStrToNumber(CallInst *CI, StringRef &Str, int64_t Base) { in convertStrToNumber()
141 static bool isLocallyOpenedFile(Value *File, CallInst *CI, IRBuilder<> &B, in isLocallyOpenedFile()
175 static bool canTransformToMemCmp(CallInst *CI, Value *Str, uint64_t Len, in canTransformToMemCmp()
190 static void annotateDereferenceableBytes(CallInst *CI, in annotateDereferenceableBytes()
217 static void annotateNonNullBasedOnAccess(CallInst *CI, in annotateNonNullBasedOnAccess()
235 static void annotateNonNullAndDereferenceable(CallInst *CI, ArrayRef<unsigned> ArgNos, in annotateNonNullAndDereferenceable()
255 Value *LibCallSimplifier::optimizeStrCat(CallInst *CI, IRBuilder<> &B) { in optimizeStrCat()
[all …]
DLibCallsShrinkWrap.cpp78 void visitCallInst(CallInst &CI) { checkCandidate(CI); } in visitCallInst()
81 for (auto &CI : WorkList) { in perform() local
104 Value *createOrCond(CallInst *CI, CmpInst::Predicate Cmp, float Val, in createOrCond()
123 Value *createCond(CallInst *CI, CmpInst::Predicate Cmp, float Val) { in createCond()
136 bool LibCallsShrinkWrap::performCallDomainErrorOnly(CallInst *CI, in performCallDomainErrorOnly()
188 bool LibCallsShrinkWrap::performCallRangeErrorOnly(CallInst *CI, in performCallRangeErrorOnly()
226 bool LibCallsShrinkWrap::performCallErrors(CallInst *CI, in performCallErrors()
290 void LibCallsShrinkWrap::checkCandidate(CallInst &CI) { in checkCandidate()
319 Value *LibCallsShrinkWrap::generateOneRangeCond(CallInst *CI, in generateOneRangeCond()
341 Value *LibCallsShrinkWrap::generateTwoRangeCond(CallInst *CI, in generateTwoRangeCond()
[all …]
DInjectTLIMappings.cpp47 static std::string mangleTLIName(StringRef VectorName, const CallInst &CI, in mangleTLIName()
72 static void addVariantDeclaration(CallInst &CI, const unsigned VF, in addVariantDeclaration()
101 static void addMappingsFromTLI(const TargetLibraryInfo &TLI, CallInst &CI) { in addMappingsFromTLI()
141 if (auto CI = dyn_cast<CallInst>(&I)) in runImpl() local
DBuildLibCalls.cpp840 CallInst *CI = B.CreateCall(Callee, Operands, FuncName); in emitLibCall() local
922 CallInst *CI = B.CreateCall(MemCpy, {Dst, Src, Len, ObjSize}); in emitMemCpyChk() local
1050 CallInst *CI = B.CreateCall(Callee, Op, Name); in emitUnaryFloatFnCallHelper() local
1092 CallInst *CI = B.CreateCall(Callee, { Op1, Op2 }, Name); in emitBinaryFloatFnCallHelper() local
1139 CallInst *CI = B.CreateCall(PutChar, in emitPutChar() local
1162 CallInst *CI = B.CreateCall(PutS, castToCStr(Str, B), PutsName); in emitPutS() local
1182 CallInst *CI = B.CreateCall(F, {Char, File}, FPutcName); in emitFPutC() local
1202 CallInst *CI = B.CreateCall(F, {Char, File}, FPutcUnlockedName); in emitFPutCUnlocked() local
1221 CallInst *CI = B.CreateCall(F, {castToCStr(Str, B), File}, FPutsName); in emitFPutS() local
1240 CallInst *CI = B.CreateCall(F, {castToCStr(Str, B), File}, FPutsUnlockedName); in emitFPutSUnlocked() local
[all …]
DEscapeEnumerator.cpp59 if (CallInst *CI = dyn_cast<CallInst>(&II)) in Next() local
88 CallInst *CI = cast<CallInst>(Calls[--I]); in Next() local
/external/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp85 static bool callHasFloatingPointArgument(const CallInst *CI) { in callHasFloatingPointArgument()
110 Value *LibCallSimplifier::optimizeStrCat(CallInst *CI, IRBuilder<> &B) { in optimizeStrCat()
149 Value *LibCallSimplifier::optimizeStrNCat(CallInst *CI, IRBuilder<> &B) { in optimizeStrNCat()
182 Value *LibCallSimplifier::optimizeStrChr(CallInst *CI, IRBuilder<> &B) { in optimizeStrChr()
222 Value *LibCallSimplifier::optimizeStrRChr(CallInst *CI, IRBuilder<> &B) { in optimizeStrRChr()
249 Value *LibCallSimplifier::optimizeStrCmp(CallInst *CI, IRBuilder<> &B) { in optimizeStrCmp()
282 Value *LibCallSimplifier::optimizeStrNCmp(CallInst *CI, IRBuilder<> &B) { in optimizeStrNCmp()
321 Value *LibCallSimplifier::optimizeStrCpy(CallInst *CI, IRBuilder<> &B) { in optimizeStrCpy()
338 Value *LibCallSimplifier::optimizeStpCpy(CallInst *CI, IRBuilder<> &B) { in optimizeStpCpy()
362 Value *LibCallSimplifier::optimizeStrNCpy(CallInst *CI, IRBuilder<> &B) { in optimizeStrNCpy()
[all …]
DBuildLibCalls.cpp727 CallInst *CI = B.CreateCall(StrLen, castToCStr(Ptr, B), "strlen"); in emitStrLen() local
745 CallInst *CI = B.CreateCall( in emitStrChr() local
763 CallInst *CI = B.CreateCall( in emitStrNCmp() local
781 CallInst *CI = in emitStrCpy() local
798 CallInst *CI = B.CreateCall( in emitStrNCpy() local
822 CallInst *CI = B.CreateCall(MemCpy, {Dst, Src, Len, ObjSize}); in emitMemCpyChk() local
839 CallInst *CI = B.CreateCall(MemChr, {castToCStr(Ptr, B), Val, Len}, "memchr"); in emitMemChr() local
858 CallInst *CI = B.CreateCall( in emitMemCmp() local
890 CallInst *CI = B.CreateCall(Callee, Op, Name); in emitUnaryFloatFnCall() local
906 CallInst *CI = B.CreateCall(Callee, {Op1, Op2}, Name); in emitBinaryFloatFnCall() local
[all …]
/external/tensorflow/tensorflow/tools/ci_build/
DREADME.md80 #### [Mellanox](https://www.mellanox.com/) TensorFlow CI
82 ##### How to start CI
88 ##### CI Steps
98 ##### Test Environment
108 ##### Support (Mellanox)
/external/clang/lib/Frontend/Rewrite/
DFrontendActions.cpp35 HTMLPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
45 FixItAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
89 bool FixItAction::BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction()
109 bool FixItRecompile::BeginInvocation(CompilerInstance &CI) { in BeginInvocation()
154 RewriteObjCAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
175 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction() local
183 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction() local
191 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction() local
/external/clang/lib/Frontend/
DFrontendActions.cpp38 InitOnlyAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
50 ASTPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
57 ASTDumpAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
64 ASTDeclListAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
69 ASTViewAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
74 DeclContextPrintAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
80 GeneratePCHAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
106 CompilerInstance &CI, StringRef InFile, std::string &Sysroot, in ComputeASTConsumerArguments()
129 GenerateModuleAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
267 bool GenerateModuleAction::BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction()
[all …]
DFrontendAction.cpp138 FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI, in CreateWrappedASTConsumer()
189 bool FrontendAction::BeginSourceFile(CompilerInstance &CI, in BeginSourceFile()
451 CompilerInstance &CI = getCompilerInstance(); in Execute() local
474 CompilerInstance &CI = getCompilerInstance(); in EndSourceFile() local
538 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction() local
563 PreprocessorFrontendAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
569 WrapperFrontendAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
573 bool WrapperFrontendAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation()
576 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()
31 bool ModifyAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation()
40 bool MigrateAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DTypeMetadataUtils.cpp26 const CallInst *CI, DominatorTree &DT) { in findCallsAtConstantOffset()
40 } else if (auto CI = dyn_cast<CallInst>(User)) { in findCallsAtConstantOffset() local
53 int64_t Offset, const CallInst *CI, DominatorTree &DT) { in findLoadCallsAtConstantOffset()
75 SmallVectorImpl<CallInst *> &Assumes, const CallInst *CI, in findDevirtualizableCallsForTypeTest()
101 const CallInst *CI, DominatorTree &DT) { in findDevirtualizableCallsForTypeCheckedLoad()
DAssumptionCache.cpp57 static void findAffectedValues(CallInst *CI, in findAffectedValues()
114 void AssumptionCache::updateAffectedValues(CallInst *CI) { in updateAffectedValues()
125 void AssumptionCache::unregisterAssumption(CallInst *CI) { in unregisterAssumption()
190 void AssumptionCache::registerAssumption(CallInst *CI) { in registerAssumption()
/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()
234 isEliminableCastPair(const CastInst *CI, ///< First cast instruction in isEliminableCastPair()
274 if (const CastInst *CI = dyn_cast<CastInst>(V)) in ShouldOptimizeCast() local
288 Instruction *InstCombiner::commonCastTransforms(CastInst &CI) { in commonCastTransforms()
382 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) { in canEvaluateTruncated() local
392 if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) { in canEvaluateTruncated() local
477 Instruction *InstCombiner::visitTrunc(TruncInst &CI) { in visitTrunc()
583 Instruction *InstCombiner::transformZExtICmp(ICmpInst *ICI, Instruction &CI, in transformZExtICmp()
832 Instruction *InstCombiner::visitZExt(ZExtInst &CI) { in visitZExt()
[all …]
DInstCombineCompares.cpp181 static bool isHighOnes(const ConstantInt *CI) { in isHighOnes()
524 if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(i))) { in EvaluateGEPOffsetExpression() local
552 ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(i)); in EvaluateGEPOffsetExpression() local
643 auto *CI = dyn_cast<CastInst>(V); in canRewriteGEPAsOffset() local
766 if (auto *CI = dyn_cast<CastInst>(Val)) { in rewriteGEPAsOffset() local
870 if (auto *CI = dyn_cast<IntToPtrInst>(V)) { in getAsConstantIndexedAddress() local
876 if (auto *CI = dyn_cast<PtrToIntInst>(V)) { in getAsConstantIndexedAddress() local
1138 Value *X, ConstantInt *CI, in FoldICmpAddOpCst()
1859 if (auto *CI = dyn_cast<ConstantInt>(LHSI->getOperand(1))) { in visitICmpInstWithInstAndIntCst() local
2413 if (auto *CI = dyn_cast<CastInst>(ICmp.getOperand(1))) { in visitICmpInstWithCastAndCast() 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/llvm/lib/Transforms/Scalar/
DLowerGuardIntrinsic.cpp48 CallInst *CI) { in MakeGuardControlFlowExplicit()
96 if (auto *CI = dyn_cast<CallInst>(&I)) in runOnFunction() local
108 for (auto *CI : ToLower) { in runOnFunction() local
DTailRecursionElimination.cpp235 CallInst *CI = dyn_cast<CallInst>(&I); in markTails() local
324 static bool canMoveAboveCall(Instruction *I, CallInst *CI) { in canMoveAboveCall()
358 static bool isDynamicConstant(Value *V, CallInst *CI, ReturnInst *RI) { in isDynamicConstant()
392 static Value *getCommonReturnValue(ReturnInst *IgnoreRI, CallInst *CI) { in getCommonReturnValue()
418 static Value *canTransformAccumulatorRecursion(Instruction *I, CallInst *CI) { in canTransformAccumulatorRecursion()
455 CallInst *CI = nullptr; in findTRECandidate() local
495 static bool eliminateRecursiveTailCall(CallInst *CI, ReturnInst *Ret, in eliminateRecursiveTailCall()
697 if (CallInst *CI = findTRECandidate(BI, CannotTailCallElimCallsMarkedTail, TTI)){ in foldReturnAndProcessPred() local
725 CallInst *CI = findTRECandidate(Ret, CannotTailCallElimCallsMarkedTail, TTI); in processReturningBlock() local
DLowerExpectIntrinsic.cpp57 CallInst *CI = dyn_cast<CallInst>(SI.getCondition()); in handleSwitchExpect() local
99 CallInst *CI; in handleBranchExpect() local
156 CallInst *CI = dyn_cast<CallInst>(BI++); in lowerExpectIntrinsic() local
/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/Analysis/
DTypeMetadataUtils.cpp30 } else if (auto CI = dyn_cast<CallInst>(User)) { in findCallsAtConstantOffset() local
65 SmallVectorImpl<CallInst *> &Assumes, CallInst *CI) { in findDevirtualizableCallsForTypeTest()
90 SmallVectorImpl<Instruction *> &Preds, bool &HasNonCallUses, CallInst *CI) { in findDevirtualizableCallsForTypeCheckedLoad()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DTailRecursionElimination.cpp240 CallInst *CI = dyn_cast<CallInst>(&I); in markTails() local
329 static bool canMoveAboveCall(Instruction *I, CallInst *CI, AliasAnalysis *AA) { in canMoveAboveCall()
363 static bool isDynamicConstant(Value *V, CallInst *CI, ReturnInst *RI) { in isDynamicConstant()
397 static Value *getCommonReturnValue(ReturnInst *IgnoreRI, CallInst *CI) { in getCommonReturnValue()
423 static Value *canTransformAccumulatorRecursion(Instruction *I, CallInst *CI) { in canTransformAccumulatorRecursion()
460 CallInst *CI = nullptr; in findTRECandidate() local
501 CallInst *CI, ReturnInst *Ret, BasicBlock *&OldEntry, in eliminateRecursiveTailCall()
714 if (CallInst *CI = findTRECandidate(BI, CannotTailCallElimCallsMarkedTail, TTI)){ in foldReturnAndProcessPred() local
741 CallInst *CI = findTRECandidate(Ret, CannotTailCallElimCallsMarkedTail, TTI); in processReturningBlock() local
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DSILoadStoreOptimizer.cpp659 bool SILoadStoreOptimizer::dmasksCanBeCombined(const CombineInfo &CI, in dmasksCanBeCombined()
721 bool SILoadStoreOptimizer::offsetsCanBeCombined(CombineInfo &CI, in offsetsCanBeCombined()
810 const CombineInfo &CI, in widthsFit()
827 bool SILoadStoreOptimizer::findMatchingInst(CombineInfo &CI, in findMatchingInst()
953 SILoadStoreOptimizer::mergeRead2Pair(CombineInfo &CI, CombineInfo &Paired) { in mergeRead2Pair()
1052 SILoadStoreOptimizer::mergeWrite2Pair(CombineInfo &CI, CombineInfo &Paired) { in mergeWrite2Pair()
1119 SILoadStoreOptimizer::mergeImagePair(CombineInfo &CI, CombineInfo &Paired) { in mergeImagePair()
1172 SILoadStoreOptimizer::mergeSBufferLoadImmPair(CombineInfo &CI, CombineInfo &Paired) { in mergeSBufferLoadImmPair()
1222 SILoadStoreOptimizer::mergeBufferLoadPair(CombineInfo &CI, CombineInfo &Paired) { in mergeBufferLoadPair()
1284 SILoadStoreOptimizer::mergeTBufferLoadPair(CombineInfo &CI, CombineInfo &Paired) { in mergeTBufferLoadPair()
[all …]

12345678910>>...23