Searched refs:II (Results 226 - 250 of 459) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DObjCSelfInitChecker.cpp401 IdentifierInfo *II = ID->getIdentifier(); local
403 if (II == NSObjectII)
H A DMoveChecker.cpp550 const IdentifierInfo *II = RD->getIdentifier(); local
551 return II && Set.count(II->getName());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceGraphBuilder.cpp237 for (Instruction *II : SrcIList) {
238 for (User *U : II->users()) {
H A DBranchProbabilityInfo.cpp188 if (auto *II = dyn_cast<InvokeInst>(BB->getTerminator())) {
189 if (PostDominatedByUnreachable.count(II->getNormalDest()))
216 if (auto *II = dyn_cast<InvokeInst>(BB->getTerminator())) {
217 if (PostDominatedByColdCall.count(II->getNormalDest()))
844 const InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator()); local
845 if (!II)
H A DValueTracking.cpp1557 if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
1558 switch (II->getIntrinsicID()) {
1575 if (II->getArgOperand(1) == ConstantInt::getTrue(II->getContext()))
1586 if (II->getArgOperand(1) == ConstantInt::getTrue(II->getContext()))
1611 if (II->getIntrinsicID() == Intrinsic::fshr)
1626 bool IsAdd = II->getIntrinsicID() == Intrinsic::uadd_sat;
1669 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I->getOperand(0))) {
1673 switch (II
4036 const IntrinsicInst *II = dyn_cast<IntrinsicInst>(U); local
5750 setLimitsForIntrinsic(const IntrinsicInst &II, APInt &Lower, APInt &Upper) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DLocal.h274 /// Create a call that matches the invoke \p II in terms of arguments,
278 CallInst *createCallMatchingInvoke(InvokeInst *II);
281 void changeToCall(InvokeInst *II, DomTreeUpdater *DTU = nullptr);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp179 auto *II = dyn_cast<InvokeInst>(BB.getTerminator()); local
180 if (!II)
200 BasicBlock *InvokeUnwindDest = II->getUnwindDest();
209 FuncInfo.InvokeStateMap[II] = BaseState;
213 FuncInfo.InvokeStateMap[II] = FuncInfo.EHPadStateMap[PadInst];
1241 void WinEHFuncInfo::addIPToStateRange(const InvokeInst *II, argument
1244 assert(InvokeStateMap.count(II) &&
1246 LabelToStateMap[InvokeBegin] = std::make_pair(InvokeStateMap[II], InvokeEnd);
H A DRegisterScavenging.cpp519 MachineBasicBlock::iterator II = std::prev(Before); local
521 unsigned FIOperandNum = getFrameIndexOperandNum(*II);
522 TRI->eliminateFrameIndex(II, SPAdj, FIOperandNum, this);
527 II = std::prev(UseMI);
529 FIOperandNum = getFrameIndexOperandNum(*II);
530 TRI->eliminateFrameIndex(II, SPAdj, FIOperandNum, this);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp689 if (auto *II = dyn_cast<InvokeInst>(&I))
690 if (!II->getUnwindDest()->canSplitPredecessors())
692 if (auto *II = dyn_cast<IntrinsicInst>(&I))
693 if (II->getIntrinsicID() == Intrinsic::experimental_guard)
694 Guards.push_back(II);
1347 if (auto *II = dyn_cast<IntrinsicInst>(&I))
1348 if (II->getIntrinsicID() == Intrinsic::assume)
1349 AC->registerAssumption(II);
H A DLowerMatrixIntrinsics.cpp306 IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst);
307 if (II)
308 switch (II->getIntrinsicID()) {
468 IntrinsicInst *II = dyn_cast<IntrinsicInst>(&Inst); local
469 if (!II)
472 switch (II->getIntrinsicID()) {
H A DLICM.cpp525 for (BasicBlock::iterator II = BB->end(); II != BB->begin();) {
526 Instruction &I = *--II;
533 ++II;
551 ++II;
829 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E;) {
830 Instruction &I = *II++;
1012 IntrinsicInst *II = dyn_cast<IntrinsicInst>(U);
1015 if (!II || I
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp179 lookupUnqualifiedTypeNameInBase(Sema &S, const IdentifierInfo &II, argument
212 for (NamedDecl *ND : BaseRD->lookup(&II)) {
218 switch (lookupUnqualifiedTypeNameInBase(S, II, NameLoc, BaseRD)) {
235 const IdentifierInfo &II,
248 FoundTypeDecl = lookupUnqualifiedTypeNameInBase(S, II, NameLoc, RD);
254 // wrote 'typename MyClass::II' instead of 'II'. We'll fully resolve the
256 S.Diag(NameLoc, diag::ext_found_via_dependent_bases_lookup) << &II;
261 QualType T = Context.getDependentNameType(ETK_Typename, NNS, &II);
277 /// This routine performs ordinary name lookup of the identifier II
234 recoverFromTypeInKnownDependentBase(Sema &S, const IdentifierInfo &II, SourceLocation NameLoc) argument
282 getTypeName(const IdentifierInfo &II, SourceLocation NameLoc, Scope *S, CXXScopeSpec *SS, bool isClassName, bool HasTrailingDot, ParsedType ObjectTypePtr, bool IsCtorOrDtorName, bool WantNontrivialTypeSourceInfo, bool IsClassTemplateDeductionContext, IdentifierInfo **CorrectedII) argument
556 ActOnMSVCUnknownTypeName(const IdentifierInfo &II, SourceLocation NameLoc, bool IsTemplateTypeArg) argument
609 isTagName(IdentifierInfo &II, Scope *S) argument
658 DiagnoseUnknownTypeName(IdentifierInfo *&II, SourceLocation IILoc, Scope *S, CXXScopeSpec *SS, ParsedType &SuggestedType, bool IsTemplateName) argument
2011 LookupPredefedObjCSuperType(Sema &ThisSema, Scope *S, IdentifierInfo *II) argument
2046 LazilyCreateBuiltin(IdentifierInfo *II, unsigned ID, Scope *S, bool ForRedeclaration, SourceLocation Loc) argument
6648 IdentifierInfo *II = Name.getAsIdentifierInfo(); local
9528 IdentifierInfo *II = NewFD->getIdentifier(); local
13175 IdentifierInfo *II = D.getIdentifier(); local
14244 ImplicitlyDefineFunction(SourceLocation Loc, IdentifierInfo &II, Scope *S) argument
16034 IdentifierInfo *II = D.getIdentifier(); local
16135 IdentifierInfo *II = Name.getAsIdentifierInfo(); local
16408 IdentifierInfo *II = D.getIdentifier(); local
17221 shouldSkipAnonEnumBody(Scope *S, IdentifierInfo *II, SourceLocation IILoc) argument
[all...]
H A DSemaLookup.cpp760 /// \param II (in) The identifier being resolved.
764 IdentifierInfo *II,
810 Context, Parent, Loc, Loc, II, FunctionList[Index],
863 IdentifierInfo *II = R.getLookupName().getAsIdentifierInfo(); local
864 if (II) {
866 if (II == getASTContext().getMakeIntegerSeqName()) {
869 } else if (II == getASTContext().getTypePackElementName()) {
877 auto Index = isOpenCLBuiltin(II->getName());
879 InsertOCLBuiltinDeclarationsFromTable(*this, R, II, Index.first - 1,
886 if (unsigned BuiltinID = II
763 InsertOCLBuiltinDeclarationsFromTable(Sema &S, LookupResult &LR, IdentifierInfo *II, const unsigned FctIndex, const unsigned Len) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86WinEHState.cpp496 auto *II = cast<InvokeInst>(Inst); local
498 SetJmp3, II->getNormalDest(), II->getUnwindDest(), Args, OpBundles);
533 if (auto *II = dyn_cast<InvokeInst>(CS.getInstruction())) {
535 assert(FuncInfo.InvokeStateMap.count(II) && "invoke has no state!");
536 return FuncInfo.InvokeStateMap[II];
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp907 static bool isInterestingIdentifier(ASTReader &Reader, IdentifierInfo &II, argument
909 return II.hadMacroDefinition() ||
910 II.isPoisoned() ||
911 (IsModule ? II.hasRevertedBuiltin() : II.getObjCOrBuiltinID()) ||
912 II.hasRevertedTokenIDToIdentifier() ||
914 II.getFETokenInfo());
930 static void markIdentifierFromAST(ASTReader &Reader, IdentifierInfo &II) { argument
931 if (!II.isFromAST()) {
932 II
951 IdentifierInfo *II = KnownII; local
1933 addPendingMacro(IdentifierInfo *II, ModuleFile *M, uint64_t MacroDirectivesOffset) argument
1987 IdentifierInfo *II = getLocalIdentifier(I, Record[0]); local
2058 updateOutOfDateIdentifier(IdentifierInfo &II) argument
2083 markIdentifierUpToDate(IdentifierInfo *II) argument
2094 resolvePendingMacro(IdentifierInfo *II, const PendingMacroInfo &PMInfo) argument
4272 auto &II = PP.getIdentifierTable().getOwn(Key); local
5960 IdentifierInfo *II = getLocalIdentifier(M, Record[0]); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp184 for (auto II = BB->begin(); II != BB->end(); II++, NumPhis++) {
186 PHINode *PtrPHI = dyn_cast<PHINode>(II);
986 InvokeInst *II = dyn_cast<InvokeInst>(PN->getIncomingValue(i)); local
987 if (!II) continue;
988 if (II->getParent() != PN->getIncomingBlock(i))
H A DInstCombineSelect.cpp829 auto *II = cast<IntrinsicInst>(TrueVal); local
830 if (!match(II->getOperand(0), m_c_And(m_Specific(X), m_Neg(m_Specific(X)))))
833 Function *F = Intrinsic::getDeclaration(II->getModule(), Intrinsic::cttz,
834 II->getType());
835 return CallInst::Create(F, {X, II->getArgOperand(1)});
877 IntrinsicInst *II = cast<IntrinsicInst>(Count);
884 IntrinsicInst *NewI = cast<IntrinsicInst>(II->clone());
893 if (II->hasOneUse() && !match(II->getArgOperand(1), m_One()))
894 II
1760 WithOverflowInst *II; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCInstrInfo.cpp401 const InstrItinerary *II = STI.getSchedModel().InstrItineraries; local
403 return ((II[SchedClass].FirstStage + HexagonStages)->getUnits());
412 const InstrItinerary *II = STI.getSchedModel().InstrItineraries; local
419 for (unsigned Stage = II[SchedClass].FirstStage + 1;
420 Stage < II[SchedClass].LastStage; ++Stage) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DPromoteMemoryToRegister.cpp83 } else if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(U)) {
84 if (!II->isLifetimeStartOrEnd())
932 for (BasicBlock::iterator II = BB->begin(); !II->isTerminator();) {
933 Instruction *I = &*II++; // get the instruction, increment iterator
H A DLoopUnrollAndJam.cpp108 if (Instruction *II = dyn_cast<Instruction>(U))
109 Worklist.push_back(II);
385 if (auto *II = dyn_cast<IntrinsicInst>(&I))
386 if (II->getIntrinsicID() == Intrinsic::assume)
387 AC->registerAssumption(II);
H A DLoopRotationUtils.cpp382 if (auto *II = dyn_cast<IntrinsicInst>(C))
383 if (II->getIntrinsicID() == Intrinsic::assume)
384 AC->registerAssumption(II);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseExprCXX.cpp83 IdentifierInfo &II, CXXScopeSpec &SS) {
93 TemplateName.setIdentifier(&II, Tok.getLocation());
383 IdentifierInfo &II = *Tok.getIdentifierInfo(); local
390 Sema::NestedNameSpecInfo IdInfo(&II, Tok.getLocation(), Next.getLocation(),
443 *LastII = &II;
474 CheckForTemplateAndDigraph(Next, ObjectType, EnteringContext, II, SS);
482 TemplateName.setIdentifier(&II, Tok.getLocation());
524 << II.getName()
572 IdentifierInfo *II = getIdentifierAnnotation(Tok); local
580 E = Actions.ActOnNameClassifiedAsDependentNonType(SS, II, Lo
81 CheckForTemplateAndDigraph(Token &Next, ParsedType ObjectType, bool EnteringContext, IdentifierInfo &II, CXXScopeSpec &SS) argument
588 IdentifierInfo *II = getIdentifierAnnotation(Tok); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenInstruction.cpp609 if (IntInit *II = dyn_cast<IntInit>(Arg)) {
616 ResOp = ResultOperand(II->getValue());
627 IntInit *II =
629 if (!II)
631 ResOp = ResultOperand(II->getValue());
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DMangle.cpp431 IdentifierInfo *II = D->getIdentifier(); local
432 if (!II)
434 OS << II->getName();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp749 InvokeInst::InvokeInst(const InvokeInst &II) argument
750 : CallBase(II.Attrs, II.FTy, II.getType(), Instruction::Invoke,
751 OperandTraits<CallBase>::op_end(this) - II.getNumOperands(),
752 II.getNumOperands()) {
753 setCallingConv(II.getCallingConv());
754 std::copy(II.op_begin(), II.op_end(), op_begin());
755 std::copy(II
760 Create(InvokeInst *II, ArrayRef<OperandBundleDef> OpB, Instruction *InsertPt) argument
[all...]

Completed in 480 milliseconds

1234567891011>>