Home
last modified time | relevance | path

Searched refs:Available (Results 1 – 25 of 88) sorted by relevance

1234

/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZMachineScheduler.cpp75 Available.clear(); // -misched-cutoff. in initialize()
162 if (Available.empty()) in pickNode()
166 if (Available.size() == 1) { in pickNode()
168 HazardRec->dumpSU(*Available.begin(), dbgs()); dbgs() << "\n";); in pickNode()
169 return *Available.begin(); in pickNode()
173 LLVM_DEBUG(dbgs() << "** Available: "; Available.dump(*HazardRec);); in pickNode()
176 for (auto *SU : Available) { in pickNode()
243 if (Available.size() == 1) dbgs() << "(only one) "; in schedNode()
247 Available.erase(SU); in schedNode()
259 Available.insert(SU); in releaseTopNode()
H A DSystemZMachineScheduler.h96 SUSet Available; variable
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInsertWriteVXRM.cpp245 VXRMInfo Available; in computeAvailable() local
247 Available.setUnknown(); in computeAvailable()
250 Available = Available.intersect(BlockInfo[P->getNumber()].AvailableOut); in computeAvailable()
254 if (!Available.isValid()) in computeAvailable()
257 if (Available != BBInfo.AvailableIn) { in computeAvailable()
258 BBInfo.AvailableIn = Available; in computeAvailable()
264 Available = BBInfo.VXRMOut; in computeAvailable()
266 if (Available == BBInfo.AvailableOut) in computeAvailable()
269 BBInfo.AvailableOut = Available; in computeAvailable()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600MachineScheduler.cpp60 (Available[CurInstKind].empty()); in pickNode()
62 (!Available[IDFetch].empty() || !Available[IDOther].empty()); in pickNode()
64 if (CurInstKind == IDAlu && !Available[IDFetch].empty()) { in pickNode()
71 (FetchInstCount + Available[IDFetch].size()); in pickNode()
87 unsigned NearRegisterRequirement = 2 * Available[IDFetch].size(); in pickNode()
169 MoveUnits(Pending[IDFetch], Available[IDFetch]); in schedNode()
197 Available[IDOther].push_back(SU); in releaseBottomNode()
445 std::vector<SUnit *> &AQ = Available[QID]; in pickOther()
H A DR700Instructions.td10 // - Available to R700 and newer VLIW4/VLIW5 GPUs
11 // - Available only on R700 family GPUs.
H A DR600MachineScheduler.h53 std::vector<SUnit *> Available[IDLast], Pending[IDLast]; variable
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DVLIWMachineScheduler.cpp383 Available.push(SU); in releaseNode()
409 LLVM_DEBUG(dbgs() << "*** Next cycle " << Available.getName() << " cycle " in bumpCycle()
445 if (Available.empty()) in releasePending()
463 Available.push(SU); in releasePending()
473 if (Available.isInQueue(SU)) in removeReady()
474 Available.remove(Available.find(SU)); in removeReady()
489 if (Available.empty()) in pickOnlyChoice()
491 if (Available.size() == 1 && Pending.size() > 0) in pickOnlyChoice()
492 return !ResourceModel->isResourceAvailable(*Available.begin(), isTop()) || in pickOnlyChoice()
493 getWeakLeft(*Available.begin(), isTop()) != 0; in pickOnlyChoice()
[all …]
H A DMachineScheduler.cpp2254 Available.clear(); in reset()
2517 LLVM_DEBUG(dbgs() << Available.getName() << " RemLatency SU(" in findMaxLatency()
2534 LLVM_DEBUG(dbgs() << " " << Available.getName() << " + Remain MOps: " in getOtherResourceCount()
2546 dbgs() << " " << Available.getName() << " + Remain CritRes: " in getOtherResourceCount()
2572 checkHazard(SU) || (Available.size() >= ReadyListLimit); in releaseNode()
2575 Available.push(SU); in releaseNode()
2621 LLVM_DEBUG(dbgs() << "Cycle: " << CurrCycle << ' ' << Available.getName() in bumpCycle()
2798 LLVM_DEBUG(dbgs() << " " << Available.getName() << " TopLatency SU(" in bumpNode()
2803 LLVM_DEBUG(dbgs() << " " << Available.getName() << " BotLatency SU(" in bumpNode()
2845 if (Available.empty()) in releasePending()
[all …]
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesYAMLCompiler.cpp33 Available = 0, enumerator
45 IO.enumCase(AA, "available", APIAvailability::Available); in enumeration()
134 APIAvailability Mode = APIAvailability::Available;
188 APIAvailability::Available); in mapping()
226 APIAvailability::Available); in mapping()
264 APIAvailability::Available); in mapping()
308 APIAvailability::Available); in mapping()
340 APIAvailability::Available); in mapping()
369 APIAvailability::Available); in mapping()
445 APIAvailability::Available); in mapping()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DVLIWMachineScheduler.h131 ReadyQueue Available; member
151 : Available(ID, Name + ".A"), in VLIWSchedBoundary()
186 return Available.getID() == ConvergingVLIWScheduler::TopQID; in isTop()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMips16InstrInfo.cpp376 BitVector Available = rs.getRegsAvailable(&Mips::CPU16RegsRegClass); in loadImmediate() local
377 Available &= Candidates; in loadImmediate()
385 Reg = Available.find_first(); in loadImmediate()
397 Available.reset(Reg); in loadImmediate()
401 SpReg = Available.find_first(); in loadImmediate()
413 Available.reset(SpReg); in loadImmediate()
/freebsd/crypto/openssl/doc/man7/
H A DEVP_MD-SHA2.pod19 Available with the FIPS provider as well as the default provider:
43 Available with the default provider:
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DLoads.cpp620 if (Value *Available = getAvailableLoadStore(Inst, StrippedPtr, AccessTy, in findAvailablePtrLoadStore() local
622 return Available; in findAvailablePtrLoadStore()
689 Value *Available = nullptr; in FindAvailableLoadedValue() local
699 Available = getAvailableLoadStore(&Inst, StrippedPtr, AccessTy, in FindAvailableLoadedValue()
701 if (Available) in FindAvailableLoadedValue()
710 if (Available) { in FindAvailableLoadedValue()
717 return Available; in FindAvailableLoadedValue()
/freebsd/sys/contrib/device-tree/Bindings/arm/marvell/
H A D98dx3236-resume-ctrl.txt3 Available on Marvell SOCs: 98DX3336 and 98DX4251
H A Darmada-370-xp-pmsu.txt3 Available on Marvell SOCs: Armada 370, Armada 38x and Armada XP
/freebsd/contrib/llvm-project/llvm/tools/llvm-tli-checker/
H A Dllvm-tli-checker.cpp131 bool Available = TLI.has(LF); in initialize()
134 emplace_back(TLI.getName(LF), Available); in initialize()
135 if (Available) in initialize()
138 bool Available = TLI.has(LF); initialize() local
/freebsd/tools/build/options/
H A DWITH_KERNEL_BIN2 install processes for the kernel. Available only on arm and arm64.
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Dwm8731.txt20 Available audio endpoints for an audio-routing table:
H A Datmel-sam9x5-wm8731-audio.txt12 Available audio endpoints for the audio-routing table:
H A Dsirf-audio.txt16 Available audio endpoints for the audio-routing table:
/freebsd/sys/contrib/device-tree/Bindings/timer/
H A Denergymicro,efm32-timer.txt5 channels and can be used as PWM or Quadrature Decoder. Available clock sources
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DSafepointIRVerifier.cpp524 AvailableValueSet &Available);
790 AvailableValueSet &Available) { in transferInstruction() argument
793 Available.clear(); in transferInstruction()
795 Available.insert(&I); in transferInstruction()
/freebsd/crypto/openssl/doc/man3/
H A DOSSL_CRMF_MSG_set1_regCtrl_regToken.pod73 Available methods are:
81 Available actions are:
/freebsd/sys/contrib/device-tree/Bindings/input/touchscreen/
H A Dzinitix.txt14 with a particular ts firmware for unknown reasons. Available
/freebsd/sys/contrib/device-tree/Bindings/pinctrl/
H A Dmarvell,armada-37xx-pinctrl.txt30 Available groups and functions for the North bridge:
104 Available groups and functions for the South bridge:

1234