Home
last modified time | relevance | path

Searched refs:Before (Results 1 – 25 of 400) sorted by relevance

12345678910>>...16

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Passes/
H A DStandardInstrumentations.h162 static void printDiff(raw_ostream &out, const CFG &Before,
219 const IRUnitT &Before, const IRUnitT &After,
277 const std::string &Before, const std::string &After,
303 const std::string &Before, const std::string &After,
354 static void report(const OrderedChangedData &Before,
391 IRComparer(const IRDataT<T> &Before, const IRDataT<T> &After) in IRComparer() argument
392 : Before(Before), After(After) {} in IRComparer()
410 const IRDataT<T> &Before; variable
435 const IRDataT<EmptyData> &Before,
440 const FuncDataT<EmptyData> &Before,
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMBlockPlacement.cpp43 void moveBasicBlock(MachineBasicBlock *BB, MachineBasicBlock *Before);
247 MachineBasicBlock *Before) { in moveBasicBlock() argument
249 << Before->getName() << "\n"); in moveBasicBlock()
254 MachineBasicBlock *BeforePrev = Before->getPrevNode(); in moveBasicBlock()
258 BB->moveBefore(Before); in moveBasicBlock()
291 if (BeforePrev->isSuccessor(Before)) in moveBasicBlock()
292 FixFallthrough(BeforePrev, Before); in moveBasicBlock()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DAssignmentTrackingAnalysis.h79 const VarLocInfo *locs_begin(const Instruction *Before) const { in locs_begin() argument
80 auto Span = VarLocsBeforeInst.lookup(Before); in locs_begin()
87 const VarLocInfo *locs_end(const Instruction *Before) const { in locs_end() argument
88 auto Span = VarLocsBeforeInst.lookup(Before); in locs_end()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Passes/
H A DStandardInstrumentations.cpp393 T &Before = BeforeStack.back(); in handleIRAfterPass() local
399 if (Before == After) { in handleIRAfterPass()
496 << Before; in handleAfter()
563 const auto &BFD = Before.getData(); in report()
648 IRDataT<T>::report(Before, After, in compare()
750 Before, enumerator
1143 if (Before.isPoisoned()) { in printDiff()
1153 for (auto &BB : Before.Graph) { in printDiff()
1164 if (BB == Before.Graph.end()) { in printDiff()
1455 Before, After, in handleFunctionCompare()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIWholeQuadMode.cpp741 MachineBasicBlock::iterator Before) { in saveSCC() argument
1202 MachineBasicBlock::iterator Before, in toExact() argument
1204 bool IsTerminator = Before == MBB.end(); in toExact()
1209 SlotIndex BeforeIdx = LIS->getInstructionIndex(*Before); in toExact()
1218 MI = BuildMI(MBB, Before, DebugLoc(), TII->get(Opcode), SaveWQM) in toExact()
1222 MI = BuildMI(MBB, Before, DebugLoc(), TII->get(Opcode), Exec) in toExact()
1232 MachineBasicBlock::iterator Before, in toWQM() argument
1422 MachineBasicBlock::iterator Before = in processBlock() local
1441 toStrictMode(MBB, Before, SavedNonStrictReg, Needs); in processBlock()
1451 toExact(MBB, Before, SavedWQMReg); in processBlock()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DWholeProgramDevirt.h99 AccumBitVector Before; member
159 return minBeforeBytes() + TM->Bits->Before.Bytes.size(); in allocatedBeforeBytes()
171 TM->Bits->Before.setBit(Pos - 8 * minBeforeBytes(), RetVal); in setBeforeBit()
186 TM->Bits->Before.setLE(Pos - 8 * minBeforeBytes(), RetVal, Size); in setBeforeBytes()
188 TM->Bits->Before.setBE(Pos - 8 * minBeforeBytes(), RetVal, Size); in setBeforeBytes()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DRegBankSelect.cpp773 bool Before = !MO.isDef(); in RepairingPlacement() local
777 addInsertPoint(MI, Before); in RepairingPlacement()
787 if (!Before) { in RepairingPlacement()
821 if (Before) { in RepairingPlacement()
855 bool Before) { in addInsertPoint() argument
856 addInsertPoint(*new InstrInsertPoint(MI, Before)); in addInsertPoint()
877 bool Before) in InstrInsertPoint() argument
878 : Instr(Instr), Before(Before) { in InstrInsertPoint()
881 assert((!Before || !Instr.isPHI()) && in InstrInsertPoint()
883 assert((!Before || !Instr.getNextNode() || !Instr.getNextNode()->isPHI()) && in InstrInsertPoint()
[all …]
/freebsd-14.2/sys/contrib/openzfs/etc/systemd/system/
H A Dzfs-share.service.in4 Before=nfs-server.service nfs-kernel-server.service key
6 Before=rpc-statd-notify.service key
H A Dzfs-import.target.in3 Before=dracut-mount.service key
H A Dzfs-mount.service.in8 Before=local-fs.target key
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FastPreTileConfig.cpp71 void spill(MachineBasicBlock::iterator Before, Register VirtReg, bool Kill);
201 void X86FastPreTileConfig::spill(MachineBasicBlock::iterator Before, in spill() argument
210 TII->storeRegToStackSlot(*MBB, Before, VirtReg, Kill, FI, &RC, TRI, in spill()
513 auto Config = [&](MachineInstr &Before) { in configBasicBlock() argument
518 BuildMI(MBB, Before, DebugLoc(), TII->get(X86::PLDTILECFGV)), CfgSS); in configBasicBlock()
643 MachineInstr *Before; in configBasicBlock() local
645 Before = &*MBB.getFirstNonPHI(); in configBasicBlock()
647 Before = &*(++LastShapeMI->getIterator()); in configBasicBlock()
649 Config(*Before); in configBasicBlock()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DBasicBlockUtils.h286 const Twine &BBName = "", bool Before = false);
290 const Twine &BBName = "", bool Before = false) {
291 return SplitBlock(Old, SplitPt->getIterator(), DT, LI, MSSAU, BBName, Before);
305 const Twine &BBName = "", bool Before = false);
309 const Twine &BBName = "", bool Before = false) {
310 return SplitBlock(Old, SplitPt->getIterator(), DTU, LI, MSSAU, BBName, Before);
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DBlockFrequency.h51 uint64_t Before = Freq.Frequency; variable
55 if (Frequency < Before)
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DRegBankSelect.h210 bool Before; variable
215 if (Before) in getPointImpl()
227 InstrInsertPoint(MachineInstr &Instr, bool Before = true);
373 void addInsertPoint(MachineInstr &MI, bool Before);
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegisterScavenging.cpp224 MachineBasicBlock::iterator Before, in spill() argument
228 const MachineFunction &MF = *Before->getMF(); in spill()
270 if (!TRI->saveScavengerRegister(*MBB, Before, UseMI, &RC, Reg)) { in spill()
280 TII->storeRegToStackSlot(*MBB, Before, Reg, true, FI, &RC, TRI, Register()); in spill()
281 MachineBasicBlock::iterator II = std::prev(Before); in spill()
H A DAssignmentTrackingAnalysis.cpp125 const SmallVectorImpl<VarLocInfo> *getWedge(VarLocInsertPt Before) const { in getWedge()
126 auto R = VarLocsBeforeInst.find(Before); in getWedge()
133 void setWedge(VarLocInsertPt Before, SmallVector<VarLocInfo> &&Wedge) { in setWedge() argument
134 VarLocsBeforeInst[Before] = std::move(Wedge); in setWedge()
156 VarLocsBeforeInst[Before].emplace_back(VarLoc); in addVarLoc()
622 void insertMemLoc(BasicBlock &BB, VarLocInsertPt Before, unsigned Var, in insertMemLoc() argument
635 BBInsertBeforeMap[&BB][Before].push_back(Loc); in insertMemLoc()
760 insertMemLoc(BB, Before, Var, FirstOverlap.start(), StartBit, in addDef()
765 insertMemLoc(BB, Before, Var, EndBit, EndBitOfOverlap, OverlapValue, in addDef()
783 insertMemLoc(BB, Before, Var, FirstOverlap.start(), StartBit, in addDef()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiMemAluCombiner.cpp79 const MbbIterator &AluInstr, bool Before);
238 bool Before) { in insertMergedInstruction() argument
273 if (Before || !isZeroOperand(MemOffset)) in insertMergedInstruction()
/freebsd-14.2/contrib/wpa/wpa_supplicant/systemd/
H A Dwpa_supplicant.service.in3 Before=network.target key
H A Dwpa_supplicant.service.arg.in5 Before=network.target
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DGlobals.cpp436 const Twine &Name, GlobalVariable *Before, in GlobalVariable() argument
445 if (Before) in GlobalVariable()
446 Before->getParent()->insertGlobalVariable(Before->getIterator(), this); in GlobalVariable()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DPlaceSafepoints.cpp642 BasicBlock::iterator Before(PollCall), After(PollCall); in InsertSafepointPoll() local
644 if (Before == OrigBB->begin()) in InsertSafepointPoll()
647 Before--; in InsertSafepointPoll()
666 BasicBlock::iterator Start = IsBegin ? OrigBB->begin() : std::next(Before); in InsertSafepointPoll()
/freebsd-14.2/sys/contrib/openzfs/contrib/dracut/90zfs/
H A Dzfs-nonroot-necessities.service.in2 Before=initrd-root-fs.target key
H A Dzfs-snapshot-bootfs.service.in5 Before=dracut-mount.service key
/freebsd-14.2/crypto/openssl/test/recipes/80-test_cmp_http_data/Mock/
H A Dtrusted.crt3 Not Before: Jan 14 22:29:05 2016 GMT
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFCORE.h56 Instruction *Before);

12345678910>>...16