Searched refs:CB (Results 126 - 150 of 308) sorted by relevance

1234567891011>>

/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp103 const auto *CB = dyn_cast<CallBase>(U); local
117 if (!(CB && CB->isCallee(&OI)))
150 for (auto &Arg : drop_begin(Call.CB.args())) {
337 const auto *CB = dyn_cast<CallBase>(&I); local
338 if (!CB) {
353 auto *CalledValue = CB->getCalledOperand();
354 auto *CalledFunction = CB->getCalledFunction();
377 auto ScaledCount = PSI->getProfileCount(*CB, BFI);
/openbsd-current/gnu/llvm/llvm/include/llvm/Transforms/Scalar/
H A DMemCpyOptimizer.h75 bool processByValArgument(CallBase &CB, unsigned ArgNo);
/openbsd-current/gnu/llvm/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h316 bool getLibFunc(const CallBase &CB, LibFunc &F) const { argument
317 return !CB.isNoBuiltin() && CB.getCalledFunction() &&
318 getLibFunc(*(CB.getCalledFunction()), F);
/openbsd-current/gnu/llvm/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLowerEmscriptenEHSjLj.cpp855 if (const auto *CB = dyn_cast<CallBase>(&I))
856 if (canLongjmp(CB->getCalledOperand()))
872 auto *CB = cast<CallBase>(U); local
873 BasicBlock *BB = CB->getParent();
878 if (auto *II = dyn_cast<InvokeInst>(CB))
881 CI = cast<CallInst>(CB);
965 if (auto *CB = dyn_cast<CallBase>(U)) {
966 auto *UserF = CB->getFunction();
1313 auto *CB = cast<CallBase>(U); local
1314 BasicBlock *BB = CB
1322 SS << *CB; local
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Utils/
H A DCodeMoverUtils.cpp372 const CallBase *CB = dyn_cast<CallBase>(I);
373 if (!CB)
375 if (!CB->hasFnAttr(Attribute::WillReturn))
377 if (!CB->hasFnAttr(Attribute::NoSync))
H A DGlobalStatus.cpp174 } else if (const auto *CB = dyn_cast<CallBase>(I)) {
175 if (!CB->isCallee(&U))
/openbsd-current/gnu/llvm/llvm/include/llvm/Transforms/IPO/
H A DInliner.h55 virtual InlineCost getInlineCost(CallBase &CB) = 0;
H A DAttributor.h586 if (auto *CB = dyn_cast<CallBase>(&V))
587 return IRPosition::callsite_returned(*CB);
620 /// Create a position describing the function scope of \p CB.
621 static const IRPosition callsite_function(const CallBase &CB) { argument
622 return IRPosition(const_cast<CallBase &>(CB), IRP_CALL_SITE);
625 /// Create a position describing the returned value of \p CB.
626 static const IRPosition callsite_returned(const CallBase &CB) { argument
627 return IRPosition(const_cast<CallBase &>(CB), IRP_CALL_SITE_RETURNED);
630 /// Create a position describing the argument of \p CB at position \p ArgNo.
631 static const IRPosition callsite_argument(const CallBase &CB, argument
849 auto *CB = dyn_cast<CallBase>(&getAnchorValue()); local
1189 foreachUse(Function &F, CBTy CB, bool LookThroughConstantExprUses = true) argument
1781 auto *CB = cast<CallBase>(IRP.getCtxI()); local
1885 registerSimplificationCallback(const IRPosition &IRP, const SimplifictionCallbackTy &CB) argument
1897 registerVirtualUseCallback(const Value &V, const VirtualUseCallbackTy &CB) argument
5015 addAlignedBarrier(Attributor &A, CallBase &CB) argument
[all...]
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/
H A DStackProtector.cpp460 if (auto *CB = dyn_cast<CallBase>(&Inst))
463 if (CB->doesNotReturn() && !CB->doesNotThrow()) {
464 CheckLoc = CB;
/openbsd-current/gnu/llvm/clang/include/clang/Driver/
H A DCompilation.h232 void setPostCallback(const std::function<void(const Command &, int)> &CB) { argument
233 PostCallback = CB;
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DEnvironment.cpp186 MarkLiveCallback CB(SymReaper);
187 ScanReachableSymbols RSScaner(ST, CB);
/openbsd-current/gnu/llvm/llvm/include/llvm/MC/MCParser/
H A DMCAsmParser.h351 const MCAsmInfo &, unsigned CB = 0);
355 const MCAsmInfo &, struct tm, unsigned CB = 0);
/openbsd-current/gnu/llvm/llvm/include/llvm/IR/
H A DPassInstrumentation.h220 PassInstrumentation(PassInstrumentationCallbacks *CB = nullptr)
221 : Callbacks(CB) {}
/openbsd-current/gnu/llvm/llvm/tools/llvm-mca/
H A Dllvm-mca.cpp526 // TODO: It may be a good idea to separate CB and IPP so that they can
528 // an extra command-line arg --disable-ipp so that CB and IPP can be
644 // in the tablegen. CB cannot depend on the list of MCInst or
648 std::unique_ptr<mca::CustomBehaviour> CB;
650 CB = std::unique_ptr<mca::CustomBehaviour>(
652 if (!CB)
653 // If the target doesn't have its own CB implemented (or the -disable-cb
655 CB = std::make_unique<mca::CustomBehaviour>(*STI, S, *MCII);
658 auto P = MCA.createDefaultPipeline(PO, S, *CB);
668 // CB o
[all...]
/openbsd-current/gnu/usr.bin/perl/lib/unicore/To/
H A DBmg.pl129 22CB 22CC
130 22CC 22CB
196 27CB 27CD
197 27CD 27CB
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp147 auto *CB = GVContext ? dyn_cast<DICommonBlock>(GVContext) : nullptr; local
148 DIE *ContextDIE = CB ? getOrCreateCommonBlock(CB, GlobalExprs)
363 const DICommonBlock *CB, ArrayRef<GlobalExpr> GlobalExprs) {
365 if (DIE *NDie = getDIE(CB))
367 DIE *ContextDIE = getOrCreateContextDIE(CB->getScope());
368 DIE &NDie = createAndAddDIE(dwarf::DW_TAG_common_block, *ContextDIE, CB);
369 StringRef Name = CB->getName().empty() ? "_BLNK_" : CB->getName();
371 addGlobalName(Name, NDie, CB
362 getOrCreateCommonBlock( const DICommonBlock *CB, ArrayRef<GlobalExpr> GlobalExprs) argument
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/Unicode-Collate/Collate/CJK/
H A DBig5.pm40 5339 5348 5347 5345 535E 5384 53CB 53CA 53CD 58EC
112 59BB 59D4 59B9 59AE 59D1 59C6 59D0 59CD 59CB 59D3
120 62C4 62BF 62C2 62B9 62D2 62DB 62AB 62D3 62D4 62CB
169 7947 79B9 79BA 79D1 79D2 79CB 7A7F 7A81 7AFF 7AFD
179 964D 9762 9769 97CB 97ED 97F3 9801 98A8 98DB 98DF
184 51CC 51C6 51CB 5256 525C 5254 525B 525D 532A 537F
187 5527 5507 54FD 550F 5703 5704 57C2 57D4 57CB 57C3
239 5F98 5FA1 5FA0 5F9C 607F 60A3 6089 60A0 60A8 60CB
246 65CF 65CB 65CC 65CE 665D 665A 6664 6668 6666 665E
266 86B6 86C4 86B5 86C6 86CB 8
[all...]
H A DJISX0208.pm59 5D16 6168 6982 6DAF 788D 84CB 8857 8A72 93A7 9AB8
75 5E0C 5E7E 5FCC 63EE 673A 65D7 65E2 671F 68CB 68C4
116 66F4 676D 6821 6897 69CB 6C5F 6D2A 6D69 6E2F 6E9D
137 59CB 59C9 59FF 5B50 5C4D 5E02 5E2B 5FD7 601D 6307
152 79CB 7D42 7E4D 7FD2 81ED 821F 8490 8846 8972 8B90
188 67D3 6F5C 714E 717D 65CB 7A7F 7BAD 7DDA 7E4A 7FA8
210 6E5B 70AD 77ED 7AEF 7BAA 7DBB 803D 80C6 86CB 8A95
216 7026 732A 82E7 8457 8CAF 4E01 5146 51CB 558B 5BF5
289 76C6 6469 78E8 9B54 9EBB 57CB 59B9 6627 679A 6BCE
302 512A 52C7 53CB
[all...]
/openbsd-current/gnu/llvm/llvm/include/llvm/Support/
H A DCommandLine.h490 std::function<R(Ty)> CB; member in struct:llvm::cl::cb
492 cb(std::function<R(Ty)> CB) : CB(CB) {} argument
494 template <typename Opt> void apply(Opt &O) const { O.setCallback(CB); }
517 callback(F CB) { argument
520 return cb<result_type, arg_type>(CB);
1496 std::function<void(const typename ParserClass::parser_data_type &)> CB) {
1497 Callback = CB;
1736 std::function<void(const typename ParserClass::parser_data_type &)> CB) {
1495 setCallback( std::function<void(const typename ParserClass::parser_data_type &)> CB) argument
1735 setCallback( std::function<void(const typename ParserClass::parser_data_type &)> CB) argument
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp1294 const CoroBeginInst &CB, const SuspendCrossingInfo &Checker,
1296 : PtrUseVisitor(DL), DT(DT), CoroBegin(CB), Checker(Checker),
1413 void visitCallBase(CallBase &CB) { argument
1414 for (unsigned Op = 0, OpCount = CB.arg_size(); Op < OpCount; ++Op)
1415 if (U->get() == CB.getArgOperand(Op) && !CB.doesNotCapture(Op))
1416 PI.setEscaped(&CB);
1417 handleMayWrite(CB);
1556 auto *CB = Shape.CoroBegin; local
1557 IRBuilder<> Builder(CB
1293 AllocaUseVisitor(const DataLayout &DL, const DominatorTree &DT, const CoroBeginInst &CB, const SuspendCrossingInfo &Checker, bool ShouldUseLifetimeStartInfo) argument
1587 auto *CB = Shape.CoroBegin; local
[all...]
/openbsd-current/gnu/llvm/llvm/lib/IR/
H A DDebugInfoMetadata.cpp286 if (auto *CB = dyn_cast<DICommonBlock>(this))
287 return CB->getScope();
304 if (auto *CB = dyn_cast<DICommonBlock>(this))
305 return CB->getName();
411 Metadata *CB = getRawCountNode(); local
412 if (!CB)
415 assert((isa<ConstantAsMetadata>(CB) || isa<DIVariable>(CB) ||
416 isa<DIExpression>(CB)) &&
419 if (auto *MD = dyn_cast<ConstantAsMetadata>(CB))
509 Metadata *CB = getRawCountNode(); local
[all...]
/openbsd-current/gnu/llvm/clang/tools/libclang/
H A DCXIndexDataConsumer.h278 IndexerCallbacks &CB; member in class:clang::cxindex::CXIndexDataConsumer
336 : Ctx(nullptr), ClientData(clientData), CB(indexCallbacks),
361 bool hasDiagnosticCallback() const { return CB.diagnostic; }
/openbsd-current/gnu/llvm/llvm/include/llvm/CodeGen/
H A DFastISel.h89 const CallBase *CB = nullptr; member in struct:llvm::FastISel::CallLoweringInfo
121 CB = &Call;
145 CB = &Call;
/openbsd-current/gnu/llvm/llvm/tools/llvm-extract/
H A Dllvm-extract.cpp294 CallBase *CB = dyn_cast<CallBase>(&I); local
295 if (!CB)
297 Function *CF = CB->getCalledFunction();
/openbsd-current/usr.bin/vi/common/
H A Dput.c30 * PUBLIC: int put(SCR *, CB *, CHAR_T *, MARK *, MARK *, int);
33 put(SCR *sp, CB *cbp, CHAR_T *namep, MARK *cp, MARK *rp, int append)
107 * split plus the first line in the CB. Append each intermediate line
108 * in the CB. Append a line built from the portion of the first line
109 * to the right of the split plus the last line in the CB.
127 /* First line from the CB. */
153 * If no more lines in the CB, append the rest of the original
185 /* Add in last part of the CB. */
207 /* Output any intermediate lines in the CB. */

Completed in 202 milliseconds

1234567891011>>