Searched refs:Use (Results 126 - 150 of 354) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemorySSA.h92 #include "llvm/IR/Use.h"
224 // Use deleteValue() to delete a generic MemoryAccess.
257 /// Get the access that produces the memory state used by this Use.
293 // Use deleteValue() to delete a generic MemoryUseOrDef.
430 static Use *op_begin(MemoryUseOrDef *MUD) {
436 static Use *op_end(MemoryUseOrDef *MUD) {
502 auto *Ref = reinterpret_cast<Use::UserRef *>(op_begin() + ReservedSpace);
508 reinterpret_cast<const Use::UserRef *>(op_begin() + ReservedSpace);
548 BasicBlock *getIncomingBlock(const Use &U) const {
779 /// Given a MemoryAccess and a Use, determin
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIFixSGPRCopies.cpp769 for (const auto &Use : MRI->use_operands(Reg)) {
770 const MachineInstr *UseMI = Use.getParent();
773 TRI->isAGPR(*MRI, Use.getReg());
787 const TargetRegisterClass *UseRC = MRI->getRegClass(Use.getReg());
788 if (!TRI->isSGPRReg(*MRI, Use.getReg()) &&
795 TII->getOpRegClass(*UseMI, UseMI->getOperandNo(&Use));
H A DSIWholeQuadMode.cpp274 for (const MachineOperand &Use : MI.uses()) {
275 if (!Use.isReg() || !Use.isUse())
278 Register Reg = Use.getReg();
305 for (MachineInstr &DefMI : MRI->def_instructions(Use.getReg()))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveVariables.cpp299 } else if (MachineInstr *Use = PhysRegUse[SubReg]) {
300 unsigned Dist = DistanceMap[Use];
303 LastRefOrPartRef = Use;
352 if (MachineInstr *Use = PhysRegUse[SubReg]) {
356 unsigned Dist = DistanceMap[Use];
359 LastRefOrPartRef = Use;
H A DRegisterPressure.cpp802 for (const RegisterMaskPair &Use : RegOpers.Uses) {
803 unsigned Reg = Use.RegUnit;
804 assert(Use.LaneMask.any());
805 LaneBitmask PreviousMask = LiveRegs.insert(Use);
806 LaneBitmask NewMask = PreviousMask | Use.LaneMask;
913 for (const RegisterMaskPair &Use : RegOpers.Uses) {
914 unsigned Reg = Use.RegUnit;
916 LaneBitmask LiveIn = Use.LaneMask & ~LiveMask;
1296 for (const RegisterMaskPair &Use : RegOpers.Uses) {
1297 unsigned Reg = Use
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributor.cpp200 // Use abstract call sites to make the connection between the call site
205 SmallVector<const Use *, 4> CBUses;
208 for (const Use *U : CBUses) {
250 SmallVector<Use *, 8> Uses;
251 for (Use &U : Old.uses())
254 for (Use *U : Uses)
278 // TODO: Use Positions here to allow context sensitivity in VisitValueCB
645 // Use an optional state as there might not be any return values and we want
716 // Use an optional state as there might not be any return values and we want
794 /// bool followUse(Attributor &A, const Use *
[all...]
/freebsd-11-stable/crypto/openssl/util/
H A Dmk1mf.pl125 nasm - Use NASM for x86 asm
126 nw-nasm - Use NASM x86 asm for NetWare
127 nw-mwasm - Use Metrowerks x86 asm for NetWare
128 gaswin - Use GNU as with Mingw32
134 gcc - Use Gcc (unix)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DThumb2SizeReduction.cpp183 bool canAddPseudoFlagDep(MachineInstr *Use, bool IsSelfLoop);
289 Thumb2SizeReduce::canAddPseudoFlagDep(MachineInstr *Use, bool FirstInSelfLoop) { argument
309 for (const MachineOperand &MO : Use->operands()) {
323 if (Use->getOpcode() == ARM::t2MOVi ||
324 Use->getOpcode() == ARM::t2MOVi16)
H A DA15SDOptimizer.cpp220 for (MachineInstr &Use : MRI->use_instructions(Reg)) {
222 if (&Use == Def)
224 if (DeadInstr.find(&Use) == DeadInstr.end()) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DValue.cpp89 dbgs() << "Use still stuck around after Def is destroyed:" << *U << "\n";
413 Use &U = *UseList;
448 replaceUsesWithIf(New, [BB](Use &U) {
751 Use *Head = UseList;
752 Use *Current = UseList->Next;
755 Use *Next = Current->Next;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopPredication.cpp504 Instruction *LoopPredication::findInsertPt(Instruction *Use, argument
508 return Use;
512 Instruction *LoopPredication::findInsertPt(Instruction *Use, argument
520 return Use;
1094 Use *Cond, *WC;
H A DTailRecursionElimination.cpp109 SmallVector<Use *, 32> Worklist;
110 SmallPtrSet<Use *, 32> Visited;
123 Use *U = Worklist.pop_back_val();
H A DLoopUnswitch.cpp662 // FIXME: Use Function::hasOptSize().
1423 if (Instruction *Use = dyn_cast<Instruction>(I->getOperand(i)))
1424 Worklist.push_back(Use);
1594 if (Instruction *Use = dyn_cast<Instruction>(I->getOperand(i)))
1595 Worklist.push_back(Use);
1633 if (Instruction *Use = dyn_cast<Instruction>(PN->getOperand(It)))
1634 Worklist.push_back(Use);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64SpeculationHardening.cpp522 for (auto Use : MI.uses()) {
523 if (!Use.isReg())
525 Register Reg = Use.getReg();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DYAMLTraits.cpp452 bool Output::mapTag(StringRef Tag, bool Use) { argument
453 if (Use) {
480 return Use;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp38 cl::desc("Use optimistic attributes describing "
467 SmallVector<Use *, 8> Uses;
468 for (Use &U : V.uses())
486 for (Use *UPtr : Uses)
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DBottleneckAnalysis.cpp72 for (const ResourceUse &Use : Event.UsedResources) {
73 const ResourceRef &RR = Use.first;
76 ResourceUsers[Index] = std::make_pair(IID, Use.second.getNumerator());
176 // Use a cut-off threshold to prune edges with a low frequency.
/freebsd-11-stable/contrib/bmake/mk/
H A Dauto.obj.mk41 # Use __objdir here so it is easier to tweak without impacting
/freebsd-11-stable/contrib/bmake/
H A Dbsd.after-import.mk4 # system. Use this makefile after importing bmake.
/freebsd-11-stable/share/mk/
H A Dbsd.linker.mk83 # Use LD's values
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSSAUpdater.cpp26 #include "llvm/IR/Use.h"
189 void SSAUpdater::RewriteUse(Use &U) {
206 void SSAUpdater::RewriteUseAfterInsertions(Use &U) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstruction.h55 ~Instruction(); // Use deleteValue() to delete a generic Instruction.
773 Instruction(Type *Ty, unsigned iType, Use *Ops, unsigned NumOps,
775 Instruction(Type *Ty, unsigned iType, Use *Ops, unsigned NumOps,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/
H A DInstruction.h171 // This method adds Use to the set of data dependent reads. IID is the
174 // Use is in a RAW dependency with this write.
175 void addUser(unsigned IID, ReadState *Use, int ReadAdvance);
177 // Use is a younger register write that is in a false dependency with this
179 void addUser(unsigned IID, WriteState *Use);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp26 #include "llvm/IR/Use.h"
75 using UseSet = SetVector<Use *>;
138 void separateChainForNode(GepNode *Node, Use *U, NodeToValueMap &Loc);
548 // Compute the equivalence relation for the gep nodes. Use two caches,
775 Use *U = *I;
953 void HexagonCommonGEP::separateChainForNode(GepNode *Node, Use *U,
984 for (Use *U : Us) {
988 for (Use *U : NewUs)
1023 Use *U = *J;
1238 Use *
[all...]
/freebsd-11-stable/contrib/unbound/contrib/
H A Dunbound_munin_75 Use the .env settings to override the defaults.
79 Can be used to present different graphs. Use ln -s for that name in

Completed in 429 milliseconds

1234567891011>>