| /openbsd/src/gnu/llvm/llvm/lib/Target/AArch64/ |
| D | AArch64SchedKryo.td | 42 def KryoUnitXA : ProcResource<1>; // Type X(A) micro-ops 43 def KryoUnitXB : ProcResource<1>; // Type X(B) micro-ops 44 def KryoUnitYA : ProcResource<1>; // Type Y(A) micro-ops 45 def KryoUnitYB : ProcResource<1>; // Type Y(B) micro-ops 46 def KryoUnitX : ProcResGroup<[KryoUnitXA, // Type X micro-ops 48 def KryoUnitY : ProcResGroup<[KryoUnitYA, // Type Y micro-ops 50 def KryoUnitXY : ProcResGroup<[KryoUnitXA, // Type XY micro-ops 54 def KryoUnitLSA : ProcResource<1>; // Type LS(A) micro-ops 55 def KryoUnitLSB : ProcResource<1>; // Type LS(B) micro-ops 56 def KryoUnitLS : ProcResGroup<[KryoUnitLSA, // Type LS micro-ops
|
| D | AArch64SchedA57WriteRes.td | 22 // 11 micro-ops to be issued down one I pipe, six S pipes and four V pipes. 27 // Define Generic 1 micro-op types 61 // Define Generic 2 micro-op types 196 // Define Generic 3 micro-op types 267 // Define Generic 4 micro-op types 334 // Define Generic 5 micro-op types 378 // Define Generic 6 micro-op types 425 // Define Generic 7 micro-op types 462 // Define Generic 8 micro-op types 488 // Define Generic 9 micro-op types [all …]
|
| D | AArch64SchedCyclone.td | 15 let IssueWidth = 6; // 6 micro-ops are dispatched per cycle. 108 // A single nop micro-op (uX). 112 // The move is replaced by a single nop micro-op. 121 // Move GPR is a register rename and single nop micro-op. 155 // ADD with shifted register operand is a single micro-op that 176 // EXTR Shifts a pair of registers and requires two micro-ops. 177 // The second micro-op is delayed, as modeled by ReadExtrHi. 255 // Read the (unshifted) base register Xn in the second micro-op one cycle later. 271 // LDP high register write is fused with the load, but a nop micro-op remains. 284 // Branches take a single micro-op. [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/Support/ |
| D | VersionTuple.cpp | 64 unsigned major = 0, minor = 0, micro = 0, build = 0; in tryParse() local 91 if (parseInt(input, micro)) in tryParse() 95 *this = VersionTuple(major, minor, micro); in tryParse() 110 *this = VersionTuple(major, minor, micro, build); in tryParse()
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/PowerPC/ |
| D | PPCScheduleE5500.td | 177 2>, // 2 micro-ops 183 2>, // 2 micro-ops 197 2>, // 2 micro-ops 203 2>, // 2 micro-ops 223 2>, // 2 micro-ops 229 2>, // 2 micro-ops 236 2>, // 2 micro-ops 243 2>, // 2 micro-ops 253 2>, // 2 micro-ops 259 2>, // 2 micro-ops [all …]
|
| D | PPCScheduleE500mc.td | 148 2>, // 2 micro-ops 154 2>, // 2 micro-ops 164 2>, // 2 micro-ops 170 2>, // 2 micro-ops 186 2>, // 2 micro-ops 198 2>, // 2 micro-ops 205 2>, // 2 micro-ops 326 let IssueWidth = 2; // 2 micro-ops are dispatched per cycle.
|
| D | PPCScheduleE500.td | 135 2>, // 2 micro-ops 141 2>, // 2 micro-ops 151 2>, // 2 micro-ops 157 2>, // 2 micro-ops 271 let IssueWidth = 2; // 2 micro-ops are dispatched per cycle.
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Utility/ |
| D | Listener.h | 86 bool GetEvent(lldb::EventSP &event_sp, const Timeout<std::micro> &timeout); 89 const Timeout<std::micro> &timeout); 94 const Timeout<std::micro> &timeout); 124 bool GetEventInternal(const Timeout<std::micro> &timeout,
|
| D | Predicate.h | 123 std::optional<T> WaitFor(C Cond, const Timeout<std::micro> &timeout) { in WaitFor() 157 const Timeout<std::micro> &timeout = std::nullopt) { 186 const Timeout<std::micro> &timeout = std::nullopt) {
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Host/ |
| D | Host.h | 189 const Timeout<std::micro> &timeout, 205 const Timeout<std::micro> &timeout, 219 const Timeout<std::micro> &timeout, 235 const Timeout<std::micro> &timeout,
|
| /openbsd/src/gnu/llvm/llvm/utils/lit/tests/Inputs/test-data-micro/ |
| D | micro-tests.ini | 9 [micro-tests] 14 [micro-results]
|
| D | lit.cfg | 5 config.name = 'test-data-micro'
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/Lanai/ |
| D | LanaiSchedule.td | 30 // Max micro-ops that can be buffered for optimized loop dispatch/execution. 38 // Max micro-ops that may be scheduled per cycle. [default = 1] 47 // Max micro-ops that can be buffered. [default = -1]
|
| /openbsd/src/lib/libexpat/tests/ |
| D | misc_tests.c | 180 version_struct->micro = 0; in parse_version() 182 version_struct->micro in parse_version() 183 = 10 * version_struct->micro + (*version_text++ - ASCII_0); in parse_version() 194 && first->micro == second->micro); in versions_equal()
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Core/ |
| D | Communication.h | 110 const Timeout<std::micro> &timeout, 175 const Timeout<std::micro> &timeout,
|
| /openbsd/src/gnu/llvm/lldb/source/API/ |
| D | SBCommunication.cpp | 109 Timeout<std::micro> timeout = timeout_usec == UINT32_MAX in Read() 110 ? Timeout<std::micro>(std::nullopt) in Read()
|
| D | SBListener.cpp | 135 Timeout<std::micro> timeout(std::nullopt); in WaitForEvent() 159 Timeout<std::micro> timeout(std::nullopt); in WaitForEventForBroadcaster() 179 Timeout<std::micro> timeout(std::nullopt); in WaitForEventForBroadcasterWithType()
|
| /openbsd/src/gnu/llvm/lldb/source/Core/ |
| D | Communication.cpp | 87 const Timeout<std::micro> &timeout, in Read() 128 const Timeout<std::micro> &timeout, in ReadFromConnection()
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Target/ |
| D | RemoteAwarePlatform.h | 75 const Timeout<std::micro> &timeout) override; 80 const Timeout<std::micro> &timeout) override;
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Host/posix/ |
| D | ConnectionFileDescriptorPosix.h | 53 size_t Read(void *dst, size_t dst_len, const Timeout<std::micro> &timeout, 61 lldb::ConnectionStatus BytesAvailable(const Timeout<std::micro> &timeout,
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/ARM/ |
| D | ARMScheduleA57WriteRes.td | 18 // 11 micro-ops to be issued as follows: one to I pipe, six to S pipes and 24 // Define Generic 1 micro-op types 87 // Define Generic 2 micro-op types 281 // Define Generic 3 micro-op types
|
| /openbsd/src/gnu/llvm/lldb/source/Host/common/ |
| D | Host.cpp | 379 const Timeout<std::micro> &timeout, in RunShellCommand() 390 const Timeout<std::micro> &timeout, in RunShellCommand() 400 const Timeout<std::micro> &timeout, in RunShellCommand() 410 const Timeout<std::micro> &timeout, in RunShellCommand()
|
| /openbsd/src/gnu/llvm/lldb/source/Utility/ |
| D | Listener.cpp | 342 const Timeout<std::micro> &timeout, in GetEventInternal() 383 const Timeout<std::micro> &timeout) { in GetEventForBroadcasterWithType() 390 const Timeout<std::micro> &timeout) { in GetEventForBroadcaster() 394 bool Listener::GetEvent(EventSP &event_sp, const Timeout<std::micro> &timeout) { in GetEvent()
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/Support/ |
| D | Chrono.h | 84 template <> struct unit<std::micro> { static const char value[]; }; 131 return {getAs<std::micro>(D), "us"};
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
| D | GDBRemoteCommunication.h | 191 Timeout<std::micro> timeout, bool sync_on_timeout); 194 Timeout<std::micro> timeout,
|