Home
last modified time | relevance | path

Searched refs:micro (Results 1 – 25 of 141) sorted by relevance

123456

/freebsd-12.1/contrib/llvm/lib/Target/AArch64/
H A DAArch64SchedKryo.td41 def KryoUnitXA : ProcResource<1>; // Type X(A) micro-ops
42 def KryoUnitXB : ProcResource<1>; // Type X(B) micro-ops
43 def KryoUnitYA : ProcResource<1>; // Type Y(A) micro-ops
44 def KryoUnitYB : ProcResource<1>; // Type Y(B) micro-ops
45 def KryoUnitX : ProcResGroup<[KryoUnitXA, // Type X micro-ops
47 def KryoUnitY : ProcResGroup<[KryoUnitYA, // Type Y micro-ops
49 def KryoUnitXY : ProcResGroup<[KryoUnitXA, // Type XY micro-ops
53 def KryoUnitLSA : ProcResource<1>; // Type LS(A) micro-ops
54 def KryoUnitLSB : ProcResource<1>; // Type LS(B) micro-ops
55 def KryoUnitLS : ProcResGroup<[KryoUnitLSA, // Type LS micro-ops
H A DAArch64SchedA57WriteRes.td24 // Define Generic 1 micro-op types
55 // Define Generic 2 micro-op types
178 // Define Generic 3 micro-op types
249 // Define Generic 4 micro-op types
316 // Define Generic 5 micro-op types
360 // Define Generic 6 micro-op types
407 // Define Generic 7 micro-op types
444 // Define Generic 8 micro-op types
470 // Define Generic 9 micro-op types
497 // Define Generic 10 micro-op types
[all …]
H A DAArch64SchedCyclone.td16 let IssueWidth = 6; // 6 micro-ops are dispatched per cycle.
106 // A single nop micro-op (uX).
110 // The move is replaced by a single nop micro-op.
119 // Move GPR is a register rename and single nop micro-op.
153 // ADD with shifted register operand is a single micro-op that
174 // EXTR Shifts a pair of registers and requires two micro-ops.
175 // The second micro-op is delayed, as modeled by ReadExtrHi.
268 // LDP high register write is fused with the load, but a nop micro-op remains.
281 // Branches take a single micro-op.
331 // Move FPR is a register rename and single nop micro-op.
[all …]
H A DAArch64SchedA57.td19 // schedule micro-ops so that all three decoded each cycle are successfully
26 let MicroOpBufferSize = 128; // 128 micro-op re-order buffer
41 // micro-ops wait for their operands and then issue out-of-order.
43 def A57UnitB : ProcResource<1>; // Type B micro-ops
44 def A57UnitI : ProcResource<2>; // Type I micro-ops
45 def A57UnitM : ProcResource<1>; // Type M micro-ops
46 def A57UnitL : ProcResource<1>; // Type L micro-ops
47 def A57UnitS : ProcResource<1>; // Type S micro-ops
48 def A57UnitX : ProcResource<1>; // Type X micro-ops
49 def A57UnitW : ProcResource<1>; // Type W micro-ops
[all …]
/freebsd-12.1/contrib/llvm/lib/Support/
H A DVersionTuple.cpp62 unsigned major = 0, minor = 0, micro = 0, build = 0; in tryParse() local
89 if (parseInt(input, micro)) in tryParse()
93 *this = VersionTuple(major, minor, micro); in tryParse()
108 *this = VersionTuple(major, minor, micro, build); in tryParse()
/freebsd-12.1/contrib/llvm/lib/Target/PowerPC/
H A DPPCScheduleE5500.td178 2>, // 2 micro-ops
184 2>, // 2 micro-ops
198 2>, // 2 micro-ops
204 2>, // 2 micro-ops
224 2>, // 2 micro-ops
230 2>, // 2 micro-ops
237 2>, // 2 micro-ops
244 2>, // 2 micro-ops
254 2>, // 2 micro-ops
260 2>, // 2 micro-ops
[all …]
H A DPPCScheduleE500mc.td149 2>, // 2 micro-ops
155 2>, // 2 micro-ops
165 2>, // 2 micro-ops
171 2>, // 2 micro-ops
187 2>, // 2 micro-ops
199 2>, // 2 micro-ops
206 2>, // 2 micro-ops
327 let IssueWidth = 2; // 2 micro-ops are dispatched per cycle.
H A DPPCScheduleE500.td136 2>, // 2 micro-ops
142 2>, // 2 micro-ops
152 2>, // 2 micro-ops
158 2>, // 2 micro-ops
272 let IssueWidth = 2; // 2 micro-ops are dispatched per cycle.
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DListener.h90 bool GetEvent(lldb::EventSP &event_sp, const Timeout<std::micro> &timeout);
93 const Timeout<std::micro> &timeout);
98 const Timeout<std::micro> &timeout);
130 bool GetEventInternal(const Timeout<std::micro> &timeout,
H A DPredicate.h140 llvm::Optional<T> WaitFor(C Cond, const Timeout<std::micro> &timeout) { in WaitFor()
176 const Timeout<std::micro> &timeout = llvm::None) {
207 const Timeout<std::micro> &timeout = llvm::None) {
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.h162 Timeout<std::micro> timeout, bool sync_on_timeout);
165 StringExtractorGDBRemote &response, Timeout<std::micro> timeout,
171 Timeout<std::micro> timeout);
174 Timeout<std::micro> timeout,
H A DGDBRemoteCommunicationReplayServer.h44 PacketResult GetPacketAndSendResponse(Timeout<std::micro> timeout,
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/posix/
H A DConnectionFileDescriptorPosix.h57 size_t Read(void *dst, size_t dst_len, const Timeout<std::micro> &timeout,
65 lldb::ConnectionStatus BytesAvailable(const Timeout<std::micro> &timeout,
72 uint16_t GetListeningPort(const Timeout<std::micro> &timeout);
/freebsd-12.1/contrib/llvm/lib/Target/Lanai/
H A DLanaiSchedule.td31 // Max micro-ops that can be buffered for optimized loop dispatch/execution.
39 // Max micro-ops that may be scheduled per cycle. [default = 1]
48 // Max micro-ops that can be buffered. [default = -1]
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DCommunication.h213 size_t Read(void *dst, size_t dst_len, const Timeout<std::micro> &timeout,
355 const Timeout<std::micro> &timeout,
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DHost.h226 const Timeout<std::micro> &timeout, bool run_in_default_shell = true);
237 const Timeout<std::micro> &timeout, bool run_in_default_shell = true);
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBExpressionOptions.cpp74 m_opaque_ap->SetTimeout(timeout == 0 ? Timeout<std::micro>(llvm::None) in SetTimeoutInMicroSeconds()
84 ? Timeout<std::micro>(llvm::None) in SetOneThreadTimeoutInMicroSeconds()
H A DSBListener.cpp159 Timeout<std::micro> timeout(llvm::None); in WaitForEvent()
194 Timeout<std::micro> timeout(llvm::None); in WaitForEventForBroadcaster()
212 Timeout<std::micro> timeout(llvm::None); in WaitForEventForBroadcasterWithType()
H A DSBCommunication.cpp123 Timeout<std::micro> timeout = timeout_usec == UINT32_MAX in Read()
124 ? Timeout<std::micro>(llvm::None) in Read()
/freebsd-12.1/contrib/llvm/lib/Target/ARM/
H A DARMScheduleA57WriteRes.td19 // 11 micro-ops to be issued as follows: one to I pipe, six to S pipes and
25 // Define Generic 1 micro-op types
85 // Define Generic 2 micro-op types
279 // Define Generic 3 micro-op types
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DListener.cpp346 const Timeout<std::micro> &timeout, in GetEventInternal()
389 const Timeout<std::micro> &timeout) { in GetEventForBroadcasterWithType()
396 const Timeout<std::micro> &timeout) { in GetEventForBroadcaster()
400 bool Listener::GetEvent(EventSP &event_sp, const Timeout<std::micro> &timeout) { in GetEvent()
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DChrono.h108 template <> struct unit<std::micro> { static const char value[]; };
131 return {getAs<std::micro>(D), "us"};
/freebsd-12.1/sys/gnu/dts/arm/
H A Dsun7i-a20-olinuxino-micro-emmc.dts44 #include "sun7i-a20-olinuxino-micro.dts"
48 compatible = "olimex,a20-olinuxino-micro-emmc", "allwinner,sun7i-a20";
/freebsd-12.1/sys/dev/isp/
H A Dispvar.h710 #define ISP_FW_NEWER_THAN(i, major, minor, micro) \ argument
711 (ISP_FW_REVX((i)->isp_fwrev) > ISP_FW_REV(major, minor, micro))
712 #define ISP_FW_OLDER_THAN(i, major, minor, micro) \ argument
713 (ISP_FW_REVX((i)->isp_fwrev) < ISP_FW_REV(major, minor, micro))
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DTarget.h307 const Timeout<std::micro> &GetTimeout() const { return m_timeout; } in GetTimeout()
309 void SetTimeout(const Timeout<std::micro> &timeout) { m_timeout = timeout; } in SetTimeout()
311 const Timeout<std::micro> &GetOneThreadTimeout() const { in GetOneThreadTimeout()
315 void SetOneThreadTimeout(const Timeout<std::micro> &timeout) { in SetOneThreadTimeout()
414 Timeout<std::micro> m_timeout = default_timeout;
415 Timeout<std::micro> m_one_thread_timeout = llvm::None;

123456