Home
last modified time | relevance | path

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

12345678910>>...37

/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
/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/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp68 static bool callHasFloatingPointArgument(const CallInst *CI) { in callHasFloatingPointArgument()
74 static bool callHasFP128Argument(const CallInst *CI) { in callHasFP128Argument()
87 static Value *convertStrToInt(CallInst *CI, StringRef &Str, Value *EndPtr, in convertStrToInt()
201 static bool canTransformToMemCmp(CallInst *CI, Value *Str, uint64_t Len, in canTransformToMemCmp()
215 static void annotateDereferenceableBytes(CallInst *CI, in annotateDereferenceableBytes()
240 static void annotateNonNullNoUndefBasedOnAccess(CallInst *CI, in annotateNonNullNoUndefBasedOnAccess()
262 static void annotateNonNullAndDereferenceable(CallInst *CI, ArrayRef<unsigned> ArgNos, in annotateNonNullAndDereferenceable()
307 Value *LibCallSimplifier::optimizeStrCat(CallInst *CI, IRBuilderBase &B) { in optimizeStrCat()
349 Value *LibCallSimplifier::optimizeStrNCat(CallInst *CI, IRBuilderBase &B) { in optimizeStrNCat()
395 static Value* memChrToCharCompare(CallInst *CI, Value *NBytes, in memChrToCharCompare()
[all …]
DLibCallsShrinkWrap.cpp79 void visitCallInst(CallInst &CI) { checkCandidate(CI); } in visitCallInst()
82 for (auto &CI : WorkList) { in perform() local
105 Value *createOrCond(CallInst *CI, CmpInst::Predicate Cmp, float Val, in createOrCond()
124 Value *createCond(CallInst *CI, CmpInst::Predicate Cmp, float Val) { in createCond()
137 bool LibCallsShrinkWrap::performCallDomainErrorOnly(CallInst *CI, in performCallDomainErrorOnly()
189 bool LibCallsShrinkWrap::performCallRangeErrorOnly(CallInst *CI, in performCallRangeErrorOnly()
227 bool LibCallsShrinkWrap::performCallErrors(CallInst *CI, in performCallErrors()
291 void LibCallsShrinkWrap::checkCandidate(CallInst &CI) { in checkCandidate()
320 Value *LibCallsShrinkWrap::generateOneRangeCond(CallInst *CI, in generateOneRangeCond()
342 Value *LibCallsShrinkWrap::generateTwoRangeCond(CallInst *CI, in generateTwoRangeCond()
[all …]
DEscapeEnumerator.cpp44 if (CallInst *CI = CurBB->getTerminatingMustTailCall()) in Next() local
63 if (CallInst *CI = dyn_cast<CallInst>(&II)) in Next() local
92 CallInst *CI = cast<CallInst>(Calls[--I]); in Next() local
/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-16.0/llvm/lib/Transforms/ObjCARC/
DObjCARC.h39 static inline void EraseInstruction(Instruction *CI) { in EraseInstruction()
125 if (auto *CI = dyn_cast<CallInst>(I)) in contains() local
131 void eraseInst(CallInst *CI) { in eraseInst()
136 if (auto *CI = dyn_cast<CallInst>(U)) in eraseInst() local
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Analysis/
DTypeMetadataUtils.cpp27 const CallInst *CI, DominatorTree &DT) { in findCallsAtConstantOffset()
41 } else if (auto *CI = dyn_cast<CallInst>(User)) { in findCallsAtConstantOffset() local
54 int64_t Offset, const CallInst *CI, DominatorTree &DT) { in findLoadCallsAtConstantOffset()
76 SmallVectorImpl<CallInst *> &Assumes, const CallInst *CI, in findDevirtualizableCallsForTypeTest()
100 const CallInst *CI, DominatorTree &DT) { in findDevirtualizableCallsForTypeCheckedLoad()
163 if (auto *CI = dyn_cast<ConstantInt>(I)) { in getPointerAtOffset() local
/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()
/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 …]
/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/
DReplaceWithVeclib.cpp41 static bool replaceWithTLIFunction(CallInst &CI, const StringRef TLIName) { in replaceWithTLIFunction()
93 CallInst &CI) { in replaceWithCallToVeclib()
180 if (auto *CI = dyn_cast<CallInst>(&I)) { in runImpl() local
189 for (auto *CI : ReplacedCalls) { in runImpl() local
/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
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Scalar/
DTailRecursionElimination.cpp238 CallInst *CI = dyn_cast<CallInst>(&I); in markTails() local
331 static bool canMoveAboveCall(Instruction *I, CallInst *CI, AliasAnalysis *AA) { in canMoveAboveCall()
368 static bool canTransformAccumulatorRecursion(Instruction *I, CallInst *CI) { in canTransformAccumulatorRecursion()
463 CallInst *CI = nullptr; in findTRECandidate() local
501 void TailRecursionEliminator::createTailRecurseLoopHeader(CallInst *CI) { in createTailRecurseLoopHeader()
582 void TailRecursionEliminator::copyByValueOperandIntoLocalTemp(CallInst *CI, in copyByValueOperandIntoLocalTemp()
610 CallInst *CI, int OpndIdx) { in copyLocalTempOfByValueOperandIntoArguments()
628 bool TailRecursionEliminator::eliminateCall(CallInst *CI) { in eliminateCall()
811 CallInst *CI = findTRECandidate(&BB); in processBlock() local
832 CallInst *CI = findTRECandidate(&BB); in processBlock() 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()

12345678910>>...37