Searched refs:UI (Results 51 - 75 of 139) sorted by relevance

123456

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp771 const Instruction *UI = cast<Instruction>(U); local
772 if (UI->getParent() != DestBB || !isa<PHINode>(UI))
777 if (UI->getParent() == DestBB) {
778 if (const PHINode *UPN = dyn_cast<PHINode>(UI))
1089 for (Value::user_iterator UI = CI->user_begin(), E = CI->user_end();
1090 UI != E; ) {
1091 Use &TheUse = UI.getUse();
1092 Instruction *User = cast<Instruction>(*UI);
1102 ++UI;
5180 const Instruction *UI = cast<Instruction>(U); local
5714 Instruction *UI = cast<Instruction>(U); local
5727 Instruction *UI = cast<Instruction>(U); local
6252 Instruction *UI = cast<Instruction>(U); local
6302 auto *UI = cast<Instruction>(U->get()); local
6312 auto *UI = cast<Instruction>(U->get()); local
[all...]
H A DSjLjEHPrepare.cpp284 Instruction *UI = cast<Instruction>(U); local
285 if (UI->getParent() != &BB || isa<PHINode>(UI))
286 Users.push_back(UI);
H A DSafeStack.cpp291 for (const Use &UI : V->uses()) {
292 auto I = cast<const Instruction>(UI.getUser());
293 assert(V == UI.get());
297 if (!IsAccessSafe(UI, DL.getTypeStoreSize(I->getType()), AllocaPtr,
314 if (!IsAccessSafe(UI, DL.getTypeStoreSize(I->getOperand(0)->getType()),
331 if (!IsMemIntrinsicSafe(MI, UI, AllocaPtr, AllocaSize)) {
H A DModuloSchedule.cpp85 for (MachineRegisterInfo::use_iterator UI = MRI.use_begin(Reg),
87 UI != EI; ++UI) {
88 MachineOperand &UseOp = *UI;
739 for (MachineRegisterInfo::use_iterator UI = MRI.use_begin(reg),
741 UI != EI; ++UI) {
744 if (UI->getParent()->getParent() != BB) {
1144 for (MachineRegisterInfo::use_iterator UI = MRI.use_begin(OldReg),
1146 UI !
[all...]
H A DTailDuplicator.cpp216 MachineRegisterInfo::use_iterator UI = MRI->use_begin(VReg); local
217 while (UI != MRI->use_end()) {
218 MachineOperand &UseMO = *UI;
220 ++UI;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp505 Value::user_iterator UI = I->user_begin(); local
507 if (UI == UE)
510 User *TheUse = *UI;
511 for (++UI; UI != UE; ++UI) {
512 if (*UI != TheUse)
1603 for (auto UI = MDV->use_begin(), UE = MDV->use_end(); UI != UE;) {
1604 Use &U = *UI
1941 auto *UI = new UnreachableInst(I->getContext(), I); local
[all...]
H A DLoopRotationUtils.cpp119 for (Value::use_iterator UI = OrigHeaderVal->use_begin(),
121 UI != UE;) {
123 Use &U = *UI;
126 ++UI;
H A DSimplifyIndVar.cpp797 Instruction *UI = cast<Instruction>(U); local
803 if (UI == Def)
808 if (!L->contains(UI))
812 if (!Simplified.insert(UI).second)
815 SimpleIVUsers.push_back(std::make_pair(UI, Def));
H A DLoopUtils.cpp614 for (Value::use_iterator UI = I.use_begin(), E = I.use_end(); UI != E;) {
615 Use &U = *UI;
616 ++UI;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstrTypes.h1193 bool isDataOperand(Value::const_user_iterator UI) const {
1194 return isDataOperand(&UI.getUse());
1199 unsigned getDataOperandNo(Value::const_user_iterator UI) const {
1200 return getDataOperandNo(&UI.getUse());
1271 bool isArgOperand(Value::const_user_iterator UI) const {
1272 return isArgOperand(&UI.getUse());
1284 unsigned getArgOperandNo(Value::const_user_iterator UI) const {
1285 return getArgOperandNo(&UI.getUse());
1313 bool isCallee(Value::const_user_iterator UI) const {
1314 return isCallee(&UI
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DFloat2Int.cpp381 Instruction *UI = dyn_cast<Instruction>(U); local
382 if (!UI || SeenInsts.find(UI) == SeenInsts.end()) {
H A DSCCP.cpp593 if (auto *UI = dyn_cast<Instruction>(U))
594 OperandChangedState(UI);
599 if (auto *UI = dyn_cast<Instruction>(U))
600 OperandChangedState(UI);
2129 for (Value::user_iterator UI = DeadBB->user_begin(),
2131 UI != UE;) {
2134 auto *I = dyn_cast<Instruction>(*UI);
2135 do { ++UI; } while (UI != UE && *UI
[all...]
/freebsd-11-stable/sys/netgraph/
H A Dng_UI.c61 /* Everything, starting with sdlc on has defined UI as 0x03 */
90 NETGRAPH_INIT(UI, &typestruct);
184 /* Must be UI frame */
/freebsd-11-stable/crypto/openssl/crypto/
H A Dossl_typ.h172 typedef struct ui_st UI; typedef in typeref:struct:ui_st
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMachineCFGStructurizer.cpp708 for (auto &UI : MRI->use_operands(Reg)) {
709 if (UI.getParent()->getParent() != MBB) {
716 MachineInstr *UseInstr = UI.getParent();
741 for (auto &UI : MRI->use_operands(Reg)) {
742 if (!Region->contains(UI.getParent()->getParent())) {
1285 for (auto &UI : TI.uses()) {
1286 if (UI.isMBB() && UI.getMBB() != Succ) {
1287 UI.setMBB(Succ);
1317 for (auto &UI
[all...]
/freebsd-11-stable/contrib/groff/font/devlj4/generate/
H A DMakefile58 UB UBI UI UR \
138 UI: $(AUTOFONT)/9nb00092.tfm $(TEXTMAP)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationLegality.cpp398 Instruction *UI = cast<Instruction>(U); local
400 if (!TheLoop->contains(UI)) {
401 LLVM_DEBUG(dbgs() << "LV: Found an outside user for : " << *UI << '\n');
1222 Instruction *UI = cast<Instruction>(U); local
1223 if (TheLoop->contains(UI))
1228 "LiveOutFoldingTailByMasking", ORE, TheLoop, UI);
H A DLoadStoreVectorizer.cpp1208 Instruction *UI = cast<Instruction>(Use); local
1209 unsigned Idx = cast<ConstantInt>(UI->getOperand(1))->getZExtValue();
1212 UI->getName());
1213 if (V->getType() != UI->getType())
1214 V = Builder.CreateBitCast(V, UI->getType());
1217 UI->replaceAllUsesWith(V);
1218 InstrsToErase.push_back(UI);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DControlHeightReduction.cpp1599 if (auto *UI = dyn_cast<Instruction>(U)) {
1600 if (BlocksInScopeSet.count(UI->getParent()) == 0 &&
1602 !(isa<PHINode>(UI) && UI->getParent() == ExitBlock)) {
1604 CHR_DEBUG(dbgs() << "Used outside scope by user " << *UI << "\n");
1605 Users.push_back(UI);
1606 } else if (UI->getParent() == EntryBlock && isa<PHINode>(UI)) {
1612 << *UI << "\n");
1613 Users.push_back(UI);
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp384 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end();
385 UI != E; ++UI)
386 if (GlueVal.isOperandOf(*UI)) {
390 N = *UI;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86OptimizeLEAs.cpp629 for (auto UI = MRI->use_begin(LastVReg), UE = MRI->use_end();
630 UI != UE;) {
631 MachineOperand &MO = *UI++;
H A DX86ISelDAGToDAG.cpp343 for (SDNode::use_iterator UI = N->use_begin(),
344 UE = N->use_end(); (UI != UE) && (UseCount < 2); ++UI) {
346 SDNode *User = *UI;
2725 for (SDNode::use_iterator UI = Flags->use_begin(), UE = Flags->use_end();
2726 UI != UE; ++UI) {
2728 if (UI.getUse().getResNo() != Flags.getResNo())
2731 if (UI->getOpcode() != ISD::CopyToReg ||
2732 cast<RegisterSDNode>(UI
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLoopInfo.h1140 auto *UI = cast<Instruction>(U.getUser()); local
1141 auto *UBB = isa<PHINode>(UI) ? cast<PHINode>(UI)->getIncomingBlock(U)
1142 : UI->getParent();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DValue.cpp148 const_user_iterator UI = user_begin(), UE = user_end(); local
149 for (; BI != BE && UI != UE; ++BI, ++UI) {
153 // Scan use list: Check if the use at UI is in BB.
154 const auto *User = dyn_cast<Instruction>(*UI);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp467 for (auto UI = Old->use_begin(), UE = Old->use_end(); UI != UE;) {
468 Use *U = &*UI;
469 ++UI;

Completed in 399 milliseconds

123456