Searched refs:II (Results 251 - 275 of 459) sorted by relevance

<<111213141516171819

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopInterchange.cpp135 for (unsigned II = 1; II <= Levels; ++II) {
136 const SCEV *Distance = D->getDistance(II);
148 } else if (D->isScalar(II)) {
152 unsigned Dir = D->getDirection(II);
H A DNewGVN.cpp944 if (auto *II = dyn_cast<IntrinsicInst>(V))
945 if (II->getIntrinsicID() == Intrinsic::ssa_copy)
946 return II->getOperand(0);
1203 if (auto *II = dyn_cast<InsertValueInst>(I)) {
1205 AggregateValueExpression(I->getNumOperands(), II->getNumIndices());
1208 std::copy(II->idx_begin(), II->idx_end(), int_op_inserter(E));
1478 else if (auto *II = dyn_cast<IntrinsicInst>(DepInst)) {
1479 if (II->getIntrinsicID() == Intrinsic::lifetime_start)
1631 if (auto *II
[all...]
H A DPlaceSafepoints.cpp362 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Call)) {
363 switch (II->getIntrinsicID()) {
H A DADCE.cpp525 if (Instruction *II = dyn_cast<Instruction>(V))
526 if (isLive(II))
H A DSCCP.cpp640 void visitInvokeInst (InvokeInst &II) { argument
641 visitCallSite(&II);
642 visitTerminator(II);
1203 if (auto *II = dyn_cast<IntrinsicInst>(I)) {
1204 if (II->getIntrinsicID() == Intrinsic::ssa_copy) {
2168 if (auto *II = dyn_cast<IntrinsicInst>(Inst)) {
2169 if (II->getIntrinsicID() == Intrinsic::ssa_copy) {
2170 Value *Op = II->getOperand(0);
H A DScalarizer.cpp332 for (BasicBlock::iterator II = BB->begin(), IE = BB->end(); II != IE;) {
333 Instruction *I = &*II;
335 ++II;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h383 /// Rewrite intrinsic call \p II such that \p OldV will be replaced with \p
387 bool rewriteIntrinsicWithAddressSpace(IntrinsicInst *II,
1146 bool shouldExpandReduction(const IntrinsicInst *II) const;
1207 IntrinsicInst *II, Value *OldV, Value *NewV) const = 0;
1396 virtual bool shouldExpandReduction(const IntrinsicInst *II) const = 0;
1473 IntrinsicInst *II, Value *OldV, Value *NewV) const override {
1474 return Impl.rewriteIntrinsicWithAddressSpace(II, OldV, NewV);
1873 bool shouldExpandReduction(const IntrinsicInst *II) const override {
1874 return Impl.shouldExpandReduction(II);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DMultiplexConsumer.cpp35 serialization::IdentID ID, IdentifierInfo *II) {
37 Listeners[i]->IdentifierRead(ID, II);
34 IdentifierRead( serialization::IdentID ID, IdentifierInfo *II) argument
H A DPrintPreprocessedOutput.cpp34 static void PrintMacroDefinition(const IdentifierInfo &II, const MacroInfo &MI, argument
36 OS << "#define " << II.getName();
787 } else if (IdentifierInfo *II = Tok.getIdentifierInfo()) {
788 OS << II->getName();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp463 void visitInvokeInst(InvokeInst &II);
2111 if (auto *II = dyn_cast<InvokeInst>(Terminator))
2112 UnwindDest = II->getUnwindDest();
3150 void Verifier::visitInvokeInst(InvokeInst &II) { argument
3151 visitCallBase(II);
3156 II.getUnwindDest()->isEHPad(),
3158 &II);
3160 visitTerminator(II);
3629 const auto *II = dyn_cast<InvokeInst>(PredBB->getTerminator()); local
3630 Assert(II
[all...]
H A DIRBuilder.cpp91 InvokeInst *II = local
94 II);
95 Builder->SetInstDebugLocation(II);
96 return II;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseExpr.cpp1026 IdentifierInfo *II = Tok.getIdentifierInfo(); local
1093 = RevertibleTypeTraits.find(II);
1118 IdentifierInfo &II = *Tok.getIdentifierInfo(); local
1123 (Actions.getTypeName(II, ILoc, getCurScope()) ||
1125 (&II == Ident_super && getCurScope()->isInObjcMethodScope()))) {
1128 if (Tok.is(tok::code_completion) && &II != Ident_super) {
1130 getCurScope(), II, ILoc, ExprStatementTokLoc == ILoc); local
1143 Res = Actions.ActOnClassPropertyRefExpr(II, PropertyName,
1152 if (getLangOpts().ObjC && &II == Ident_super && !InMessageExpression &&
1173 if (ParsedType Typ = Actions.getTypeName(II, ILo
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenSchedule.cpp1275 RecIter II = InstDefs->begin(), IE = InstDefs->end(); local
1276 for (; II != IE; ++II) {
1277 if (InstrClassMap[*II] == SCIdx)
1282 if (II == IE)
1992 for (RecIter II = PM.ItinRWDefs.begin(), IE = PM.ItinRWDefs.end();
1993 II != IE; ++II) {
1994 RecVec Matched = (*II)->getValueAsListOfDefs("MatchedItinClasses");
1998 PrintFatalError((*II)
[all...]
H A DFastISelEmitter.cpp462 CodeGenInstruction &II = CGP.getTargetInfo().getInstruction(Op);
463 if (II.Operands.empty())
470 if (II.FastISelShouldIgnore)
492 Record *Op0Rec = II.Operands[0].Rec;
H A DRISCVCompressInstEmitter.cpp235 } else if (IntInit *II = dyn_cast<IntInit>(Dag->getArg(i - TiedCount))) {
241 II->getAsString() +
245 OperandMap[i].Data.Imm = II->getValue();
247 dbgs() << " Found immediate '" << II->getValue() << "' at "
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMachineCFGStructurizer.cpp757 for (auto &II : *MBB) {
758 for (auto &RI : II.defs()) {
761 for (auto &IRI : II.implicit_operands()) {
773 for (auto &II : *(*SI)) {
774 if (II.isPHI()) {
775 MachineInstr &PHI = II;
799 for (auto &II : *MBB) {
800 for (auto &RI : II.defs()) {
804 for (auto &IRI : II.implicit_operands()) {
844 for (auto &II
[all...]
H A DAMDGPUTargetTransformInfo.h199 bool rewriteIntrinsicWithAddressSpace(IntrinsicInst *II,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp520 void fixupIVUsers(PHINode *OrigPhi, const InductionDescriptor &II,
583 void createVectorIntOrFpInductionPHI(const InductionDescriptor &II,
1686 const InductionDescriptor &II, Value *Step, Instruction *EntryVal) {
1689 Value *Start = II.getStartValue();
1703 getStepVector(SplatStart, 0, Step, II.getInductionOpcode());
1713 AddOp = II.getInductionOpcode();
1743 recordVectorLoopValueForInductionCast(II, EntryVal, LastInduction, Part);
1809 auto II = Legal->getInductionVars()->find(IV);
1810 assert(II != Legal->getInductionVars()->end() && "IV is not an induction");
1812 auto ID = II
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMBaseRegisterInfo.cpp749 ARMBaseRegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II, argument
752 MachineInstr &MI = *II;
824 emitARMRegPlusImmediate(MBB, II, MI.getDebugLoc(), ScratchReg, FrameReg,
828 emitT2RegPlusImmediate(MBB, II, MI.getDebugLoc(), ScratchReg, FrameReg,
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCallAndReturn.cpp838 const IdentifierInfo &II = Ctx.Idents.get(Name); local
839 DeclarationName DeclName = Ctx.DeclarationNames.getIdentifier(&II);
884 if (const IdentifierInfo *II = RD->getDeclName().getAsIdentifierInfo())
885 if (II->isStr("shared_ptr"))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineFunction.cpp706 for (User::op_iterator II = CVal->op_begin(), IE = CVal->op_end();
707 II != IE; ++II)
708 FilterList.push_back(cast<GlobalValue>((*II)->stripPointerCasts()));
H A DMachineCSE.cpp674 for (MachineBasicBlock::iterator II = CSMI, IE = MI; II != IE; ++II)
676 if (MachineOperand *MO = II->findRegisterUseOperand(
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLint.cpp100 void visitEHBeginCatch(IntrinsicInst *II);
101 void visitEHEndCatch(IntrinsicInst *II);
320 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(&I))
321 switch (II->getIntrinsicID()) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DMSVC.cpp710 const InputInfo &II = Inputs[0]; local
711 assert(II.getType() == types::TY_C || II.getType() == types::TY_CXX);
712 CmdArgs.push_back(II.getType() == types::TY_C ? "/Tc" : "/Tp");
713 if (II.isFilename())
714 CmdArgs.push_back(II.getFilename());
716 II.getInputArg().renderAsInput(Args, CmdArgs);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DStmtProfile.cpp57 virtual void VisitIdentifierInfo(IdentifierInfo *II) = 0;
146 void VisitIdentifierInfo(IdentifierInfo *II) override {
147 ID.AddPointer(II);
193 void VisitIdentifierInfo(IdentifierInfo *II) override {
194 ID.AddBoolean(II);
195 if (II) {
196 Hash.AddIdentifierInfo(II);

Completed in 252 milliseconds

<<111213141516171819