Searched refs:II (Results 201 - 225 of 459) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp608 for (unsigned II = 1; II <= Levels; ++II) {
609 if (isSplitable(II))
611 if (isPeelFirst(II))
613 const SCEV *Distance = getDistance(II);
616 else if (isScalar(II))
619 unsigned Direction = getDirection(II);
631 if (isPeelLast(II))
633 if (II < Level
[all...]
H A DTargetTransformInfo.cpp233 IntrinsicInst *II, Value *OldV, Value *NewV) const {
234 return TTIImpl->rewriteIntrinsicWithAddressSpace(II, OldV, NewV);
847 bool TargetTransformInfo::shouldExpandReduction(const IntrinsicInst *II) const {
848 return TTIImpl->shouldExpandReduction(II);
1331 if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
1332 SmallVector<Value *, 4> Args(II->arg_operands());
1335 if (auto *FPMO = dyn_cast<FPMathOperator>(II))
1338 return getIntrinsicInstrCost(II->getIntrinsicID(), II->getType(),
232 rewriteIntrinsicWithAddressSpace( IntrinsicInst *II, Value *OldV, Value *NewV) const argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DRetainSummaryManager.cpp224 const IdentifierInfo *II = RD->getIdentifier(); local
225 if (II && II->getName() == "smart_ptr")
498 const IdentifierInfo *II = FD->getIdentifier(); local
500 StringRef FName = II ? II->getName() : "";
716 IdentifierInfo *II = FD->getIdentifier(); local
717 if (!II)
720 StringRef FName = II->getName();
725 if (II
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DTokenLexer.cpp416 IdentifierInfo *II = CurTok.getIdentifierInfo(); local
417 int ArgNo = II ? Macro->getParameterNum(II) : -1;
707 IdentifierInfo *II = Tok.getIdentifierInfo(); local
708 Tok.setKind(II->getTokenID());
713 if (II->isPoisoned() && TokenIsFromPaste) {
717 if (!DisableMacroExpansion && II->isHandleIdentifierCase())
H A DTokenConcatenation.cpp129 if (IdentifierInfo *II = Tok.getIdentifierInfo()) {
131 return II->getNameStart()[0];
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp1087 /// for each circuit. The II needs to satisfy the inequality
1088 /// delay(c) - II*distance(c) <= 0. For each circuit, choose the smallest
1089 /// II that satisfies the inequality, and the RecMII is the maximum
1969 unsigned II = 0; local
1970 // Keep increasing II until a valid schedule is found.
1971 for (II = MII; II <= MAX_II && !scheduleFound; ++II) {
1973 Schedule.setInitiationInterval(II);
1974 LLVM_DEBUG(dbgs() << "Try to schedule with " << II << "\
2044 LLVM_DEBUG(dbgs() << "Schedule Found? " << scheduleFound << " (II=" << II local
2285 insert(SUnit *SU, int StartCycle, int EndCycle, int II) argument
2399 computeStart(SUnit *SU, int *MaxEarlyStart, int *MinLateStart, int *MinEnd, int *MaxStart, int II, SwingSchedulerDAG *DAG) argument
[all...]
H A DShadowStackGCLowering.cpp238 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E;)
239 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(II++))
H A DSafeStackColoring.cpp51 auto *II = cast<IntrinsicInst>(I);
52 *IsStart = II->getIntrinsicID() == Intrinsic::lifetime_start;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonRegisterInfo.cpp185 void HexagonRegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II, argument
192 MachineInstr &MI = *II;
227 BuildMI(MB, II, DL, HII.get(Hexagon::A2_addi), TmpR)
H A DHexagonVectorLoopCarriedReuse.cpp435 const IntrinsicInst *II = dyn_cast<IntrinsicInst>(I); local
436 if (!II)
439 switch (II->getIntrinsicID()) {
444 LLVM_DEBUG(dbgs() << "Not considering for reuse: " << *II << "\n");
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/
H A DJob.cpp44 for (const auto &II : Inputs)
45 if (II.isFilename())
46 InputFilenames.push_back(II.getFilename());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DUtils.cpp73 const RegisterBankInfo &RBI, MachineInstr &InsertPt, const MCInstrDesc &II,
79 const TargetRegisterClass *RegClass = TII.getRegClass(II, OpIdx, &TRI, MF);
92 assert((!isTargetSpecificOpcode(II.getOpcode()) || RegMO.isUse()) &&
70 constrainOperandRegClass( const MachineFunction &MF, const TargetRegisterInfo &TRI, MachineRegisterInfo &MRI, const TargetInstrInfo &TII, const RegisterBankInfo &RBI, MachineInstr &InsertPt, const MCInstrDesc &II, const MachineOperand &RegMO, unsigned OpIdx) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DCommonArgs.cpp153 for (const auto &II : Inputs) {
157 if (auto *IA = II.getAction())
164 if (!TC.HasNativeLLVMSupport() && types::isLLVMIR(II.getType()))
169 if (II.isFilename()) {
170 CmdArgs.push_back(II.getFilename());
175 const Arg &A = II.getInputArg();
834 InputInfo II(types::TY_Object, Output.getFilename(), Output.getFilename());
837 C.addCommand(std::make_unique<Command>(JA, T, Exec, ExtractArgs, II));
840 C.addCommand(std::make_unique<Command>(JA, T, Exec, StripArgs, II));
1282 for (const auto &II
[all...]
H A DSolaris.cpp40 for (const auto &II : Inputs)
41 CmdArgs.push_back(II.getFilename());
H A DOpenBSD.cpp88 for (const auto &II : Inputs)
89 CmdArgs.push_back(II.getFilename());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroInstr.h93 if (auto *II = dyn_cast<IntrinsicInst>(U))
94 if (II->getIntrinsicID() == Intrinsic::coro_begin)
95 return II;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h201 const RegisterClassInfo &rci, unsigned II)
203 RegClassInfo(rci), II_setByPragma(II), Topo(SUnits, &ExitSU) {
497 /// The initiation interval (II) for the schedule.
539 int *MinEnd, int *MaxStart, int II, SwingSchedulerDAG *DAG);
540 bool insert(SUnit *SU, int StartCycle, int EndCycle, int II);
200 SwingSchedulerDAG(MachinePipeliner &P, MachineLoop &L, LiveIntervals &lis, const RegisterClassInfo &rci, unsigned II) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMBaseRegisterInfo.h201 void eliminateFrameIndex(MachineBasicBlock::iterator II,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64RegisterInfo.cpp448 void AArch64RegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II,
453 MachineInstr &MI = *II;
506 emitFrameOffset(MBB, II, MI.getDebugLoc(), ScratchReg, FrameReg, Offset,
536 emitFrameOffset(MBB, II, MI.getDebugLoc(), ScratchReg, FrameReg, Offset, TII);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTWriter.h577 void AddIdentifierRef(const IdentifierInfo *II, RecordDataImpl &Record);
583 serialization::IdentID getIdentifierRef(const IdentifierInfo *II);
651 /// Note that the identifier II occurs at the given offset
653 void SetIdentifierOffset(const IdentifierInfo *II, uint32_t Offset);
695 void IdentifierRead(serialization::IdentID ID, IdentifierInfo *II) override;
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DPseudoLoweringEmitter.cpp103 } else if (IntInit *II = dyn_cast<IntInit>(Dag->getArg(i))) {
105 OperandMap[BaseIdx + i].Data.Imm = II->getValue();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DSpeculateAnalyses.cpp65 if (auto II = dyn_cast<InvokeInst>(BB->getTerminator()))
66 getCalledFunction(II);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTCommon.cpp257 if (IdentifierInfo *II = Sel.getIdentifierInfoForSlot(I))
258 R = llvm::djbHash(II->getName(), R);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DTypoCorrection.h322 void setTypoName(IdentifierInfo *II) { Typo = II; } argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DPartialDiagnostic.h371 const IdentifierInfo *II) {
372 PD.AddTaggedVal(reinterpret_cast<intptr_t>(II),
370 operator <<(const PartialDiagnostic &PD, const IdentifierInfo *II) argument

Completed in 429 milliseconds

1234567891011>>