James Y Knight
0431d6dab4
Clang: convert __m64
intrinsics to unconditionally use SSE2 instead of MMX. ( #96540 )
...
The MMX instruction set is legacy, and the SSE2 variants are in every
way superior, when they are available -- and they have been available
since the Pentium 4 was released, 20 years ago.
Therefore, we are switching the "MMX" intrinsics to depend on SSE2,
unconditionally. This change entirely drops the ability to generate
vectorized code using compiler intrinsics for chips with MMX but without
SSE2: the Intel Pentium MMX, Pentium, II, and Pentium III (released
1997-1999), as well as AMD K6 and K7 series chips of around the same
timeframe. Targeting these older CPUs remains supported -- simply
without the ability to use MMX compiler intrinsics.
Migrating away from the use of MMX registers also fixes a rather
non-obvious requirement. The long-standing programming model for these
MMX intrinsics requires that the programmer be aware of the x87/MMX
mode-switching semantics, and manually call `_mm_empty()` between using
any MMX instruction and any x87 FPU instruction. If you neglect to, then
every future x87 operation will return a NaN result. This requirement is
not at all obvious to users of these these intrinsic functions, and
causes very difficult to detect bugs.
Worse, even if the user did write code that correctly calls
`_mm_empty()` in the right places, LLVM may sometimes reorder x87 and
mmx operations around each-other, unaware of this mode switching issue.
Eliminating the use of MMX registers eliminates this problem.
This change also deletes the now-unnecessary MMX `__builtin_ia32_*`
functions from Clang. Only 3 MMX-related builtins remain in use --
`__builtin_ia32_emms`, used by `_mm_empty`, and
`__builtin_ia32_vec_{ext,set}_v4si`, used by `_mm_insert_pi16` and
`_mm_extract_pi16`. Note particularly that the latter two lower to
generic, non-MMX, IR. Support for the LLVM intrinsics underlying these
removed builtins still remains, for the moment.
The file `clang/www/builtins.py` has been updated with mappings from the
newly-removed `__builtin_ia32` functions to the still-supported
equivalents in `mmintrin.h`.
(Originally uploaded at https://reviews.llvm.org/D86855 and
https://reviews.llvm.org/D94252 )
Fixes issue #41665
Works towards #98272
2024-07-24 17:00:12 -04:00
..
2024-06-14 12:56:11 +01:00
2024-06-03 14:53:04 +01:00
2024-07-01 08:23:16 +01:00
2024-06-19 16:38:46 +01:00
2024-06-03 14:53:04 +01:00
2024-06-16 17:24:23 +01:00
2024-06-21 08:54:18 +00:00
2024-01-11 09:46:54 +01:00
2024-05-04 17:00:29 -07:00
2024-06-14 15:07:27 +01:00
2024-01-04 15:51:57 +08:00
2024-03-27 11:41:34 +00:00
2023-05-19 08:44:12 -04:00
2024-05-04 17:31:08 -07:00
2024-04-02 11:32:15 -05:00
2024-02-26 22:08:36 -08:00
2024-07-24 20:58:37 +08:00
2024-07-09 14:34:03 +08:00
2024-07-18 17:43:28 +02:00
2024-05-04 17:00:29 -07:00
2024-03-27 11:41:34 +00:00
2024-07-24 17:00:12 -04:00
2024-01-11 09:46:54 +01:00
2023-08-09 18:33:11 -04:00
2024-01-11 09:46:54 +01:00
2023-08-14 11:28:41 -04:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2023-08-11 08:42:01 -04:00
2024-07-16 04:59:51 +01:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2024-06-14 15:07:27 +01:00
2024-05-04 17:00:29 -07:00
2023-08-28 12:13:42 -04:00
2024-05-09 10:45:19 +01:00
2024-03-21 09:55:04 +01:00
2024-03-29 09:35:31 -04:00
2024-05-04 17:31:08 -07:00
2024-05-05 10:46:06 -07:00
2024-05-04 23:08:11 -07:00
2023-07-26 17:33:06 +01:00
2023-12-19 11:53:18 +01:00
2023-12-19 11:53:18 +01:00
2023-06-29 09:06:00 +01:00
2023-06-27 19:21:41 -07:00
2024-05-04 23:08:11 -07:00
2024-07-10 11:32:41 +02:00
2024-07-15 09:40:39 +02:00
2024-06-18 21:28:34 +01:00
2024-04-18 09:25:47 +01:00
2024-05-09 15:32:18 +03:00
2024-02-12 15:00:45 -08:00
2024-06-20 15:33:21 +01:00
2024-07-18 16:34:16 +01:00
2024-07-11 14:09:36 +01:00
2024-02-02 08:12:05 +00:00
2024-07-09 12:44:52 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-07-18 16:34:16 +01:00
2024-05-04 17:00:29 -07:00
2023-12-19 11:53:18 +01:00
2024-05-04 17:31:08 -07:00
2024-05-04 17:15:51 -07:00
2023-12-19 11:53:18 +01:00
2024-05-04 23:08:11 -07:00
2024-05-05 10:46:06 -07:00
2024-02-12 15:00:45 -08:00
2023-07-26 17:33:06 +01:00
2023-08-30 12:39:04 +02:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2023-07-26 17:33:06 +01:00
2024-05-04 23:08:11 -07:00
2023-12-18 16:12:37 +01:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2023-12-19 11:53:18 +01:00
2024-07-10 11:32:41 +02:00
2024-02-22 20:22:00 +01:00
2024-05-07 09:17:05 +01:00
2024-03-19 13:58:51 +00:00
2023-07-11 21:34:53 +07:00
2024-05-21 11:07:29 +01:00
2024-05-21 11:07:29 +01:00
2024-05-04 23:08:11 -07:00
2023-07-25 08:55:45 +00:00
2024-05-22 10:41:03 +01:00
2023-10-24 14:02:51 +01:00
2024-05-04 23:08:11 -07:00
2024-06-14 12:56:11 +01:00
2024-02-12 15:00:45 -08:00
2024-07-10 11:32:41 +02:00
2024-05-04 17:00:29 -07:00
2024-05-05 19:05:15 -07:00
2024-05-04 23:08:11 -07:00
2024-05-05 10:46:06 -07:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2024-06-17 13:29:20 +02:00
2023-09-27 21:29:56 -07:00
2023-10-04 15:16:00 +02:00
2024-05-04 17:00:29 -07:00
2024-07-23 09:51:13 -04:00
2024-05-02 14:59:33 -04:00
2023-06-30 09:07:23 -04:00
2023-08-31 11:43:47 -04:00
2024-04-16 11:05:45 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2023-08-28 12:13:42 -04:00
2024-01-23 11:13:55 -08:00
2024-04-05 09:06:59 -07:00
2023-11-09 10:34:35 +05:30
2024-01-23 17:08:18 +05:30
2024-06-18 20:46:53 -04:00
2024-06-04 13:10:10 +01:00
2023-11-29 15:13:30 -08:00
2023-11-29 15:13:30 -08:00
2023-11-29 15:13:30 -08:00
2023-11-29 15:13:30 -08:00
2023-06-08 17:41:27 +02:00
2023-11-01 23:50:35 -05:00
2024-01-11 09:46:54 +01:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:15:51 -07:00
2023-07-26 17:33:06 +01:00
2024-01-11 09:46:54 +01:00
2024-03-29 09:35:31 -04:00
2024-05-04 23:08:11 -07:00
2024-04-29 12:00:12 -07:00
2024-07-08 12:59:02 -07:00
2024-05-04 17:49:32 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2023-12-19 11:53:18 +01:00
2024-01-11 09:46:54 +01:00
2024-06-17 13:29:20 +02:00
2024-01-23 14:39:15 +00:00
2023-08-28 12:13:42 -04:00
2024-01-11 09:46:54 +01:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2024-02-12 09:33:09 -08:00
2024-02-12 09:33:09 -08:00
2024-04-29 13:18:37 +01:00
2024-05-04 23:08:11 -07:00
2023-12-19 11:53:18 +01:00
2023-12-31 20:44:48 +08:00
2024-05-04 23:08:11 -07:00
2024-03-29 09:35:31 -04:00
2024-07-10 11:32:41 +02:00
2024-07-10 11:32:41 +02:00
2024-05-04 17:00:29 -07:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2024-01-11 09:46:54 +01:00
2023-06-27 19:21:41 -07:00
2023-12-19 11:53:18 +01:00
2023-08-28 12:13:42 -04:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2024-05-04 17:00:29 -07:00
2024-01-11 09:46:54 +01:00
2023-12-08 15:04:08 +00:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2024-06-17 13:29:20 +02:00
2024-03-27 11:41:34 +00:00
2024-06-03 14:53:04 +01:00
2023-08-28 12:13:42 -04:00
2024-01-11 09:46:54 +01:00
2024-01-11 09:46:54 +01:00
2024-01-11 09:46:54 +01:00
2024-01-11 09:46:54 +01:00
2024-05-17 10:59:39 -07:00
2024-07-14 13:28:11 +02:00
2024-06-25 20:39:18 -07:00
2024-06-25 20:39:18 -07:00
2024-05-04 17:00:29 -07:00
2023-07-11 15:13:57 -07:00
2023-08-28 12:13:42 -04:00
2024-07-23 13:22:24 -04:00
2024-05-04 17:00:29 -07:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2024-02-12 09:33:09 -08:00
2024-02-12 09:33:09 -08:00
2024-04-02 18:52:57 +02:00
2024-02-12 09:33:09 -08:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:00:29 -07:00
2024-03-07 13:06:30 -08:00
2023-06-12 18:38:47 +02:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2023-08-28 12:13:42 -04:00
2024-03-23 07:26:35 +09:00
2024-04-19 19:48:33 +00:00
2024-04-19 19:48:33 +00:00
2024-07-23 00:49:46 -07:00
2023-07-05 17:32:00 +08:00
2023-10-19 15:11:15 +08:00
2024-05-24 13:46:34 +08:00
2024-06-14 15:05:57 +01:00
2023-08-15 14:49:02 -07:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2024-05-04 17:00:29 -07:00
2024-06-14 15:07:27 +01:00
2024-05-28 06:29:31 -07:00
2024-05-04 17:00:29 -07:00
2024-07-15 09:40:39 +02:00
2024-05-04 17:00:29 -07:00
2024-07-19 15:17:06 +01:00
2023-12-14 14:57:00 -07:00
2023-12-14 14:57:00 -07:00
2023-12-14 14:57:00 -07:00
2023-12-14 14:57:00 -07:00
2024-07-19 15:17:06 +01:00
2024-07-24 17:00:12 -04:00
2024-07-20 11:28:06 -04:00
2023-06-30 13:19:15 +08:00
2024-06-14 15:05:57 +01:00
2023-08-28 12:13:42 -04:00
2023-10-05 13:17:47 -04:00
2024-03-29 09:35:31 -04:00
2024-07-16 14:47:09 -04:00
2024-07-16 14:47:09 -04:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2024-05-04 17:00:29 -07:00
2024-07-09 07:18:06 -07:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2024-01-16 14:26:12 -08:00
2024-07-05 07:32:09 -07:00
2024-07-05 07:32:09 -07:00
2024-05-04 17:37:36 -07:00
2024-05-04 17:37:36 -07:00
2024-05-04 17:37:36 -07:00
2024-05-04 17:37:36 -07:00
2024-05-04 17:37:36 -07:00
2023-09-14 10:24:26 +01:00
2023-07-11 21:34:53 +07:00
2023-07-11 21:34:53 +07:00
2023-10-19 13:40:41 +02:00
2023-09-27 21:29:56 -07:00
2023-11-07 00:31:04 -06:00
2023-11-07 00:31:04 -06:00
2024-04-16 17:50:16 -07:00
2023-08-28 12:13:42 -04:00
2024-05-04 17:15:51 -07:00
2023-08-02 15:32:37 -07:00
2024-07-23 08:48:28 -07:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2024-05-04 17:00:29 -07:00
2024-07-15 09:40:39 +02:00
2024-07-15 09:40:39 +02:00
2024-02-29 16:57:33 -06:00
2023-06-20 11:38:37 +01:00
2024-05-04 23:08:11 -07:00
2023-05-23 08:29:52 +02:00
2024-07-10 12:56:54 -05:00
2024-05-05 10:46:06 -07:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2024-05-04 23:08:11 -07:00
2024-07-15 09:40:39 +02:00
2024-04-29 16:45:33 +02:00
2024-07-24 11:55:36 -07:00
2024-07-24 17:00:12 -04:00
2024-07-23 11:23:53 +02:00
2023-04-27 14:41:10 +01:00
2023-08-28 12:13:42 -04:00
2024-03-12 09:53:11 -04:00
2024-02-12 09:33:09 -08:00
2024-05-04 17:00:29 -07:00
2023-08-28 12:13:42 -04:00
2023-06-12 17:39:44 -04:00
2023-06-12 17:39:44 -04:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-04-08 12:30:27 -07:00
2024-05-31 08:55:59 +02:00
2023-11-12 22:26:27 -08:00
2024-05-04 17:00:29 -07:00
2024-03-27 03:25:33 +03:00
2024-03-27 03:25:33 +03:00
2023-08-28 12:13:42 -04:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-06-22 18:54:42 +02:00
2023-08-03 13:58:33 +08:00
2024-04-11 12:29:29 -07:00
2024-01-24 15:25:29 +01:00
2024-05-17 06:13:32 -07:00
2024-05-04 23:08:11 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 23:08:11 -07:00
2023-08-24 22:31:11 -07:00
2023-10-03 18:05:54 +02:00
2023-06-29 09:06:00 +01:00
2024-05-05 19:05:15 -07:00
2024-05-04 17:15:51 -07:00
2023-08-28 12:13:42 -04:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:15:51 -07:00
2024-05-04 23:08:11 -07:00
2024-03-20 12:14:09 -07:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2024-03-13 14:59:55 +01:00
2024-05-31 08:55:59 +02:00
2024-07-08 13:09:42 -04:00
2024-07-19 10:19:41 -04:00
2024-06-27 11:21:42 +02:00
2023-11-17 16:55:18 -06:00
2024-04-04 06:25:41 -04:00
2024-05-21 09:15:37 -07:00
2024-05-04 17:00:29 -07:00
2024-03-29 09:35:31 -04:00
2024-06-14 15:07:27 +01:00
2024-06-14 15:07:27 +01:00
2024-06-14 15:07:27 +01:00
2024-03-28 14:54:51 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2023-08-28 12:13:42 -04:00
2023-07-06 12:59:05 -07:00
2023-08-28 12:13:42 -04:00
2024-04-19 08:52:28 -04:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2023-08-28 12:13:42 -04:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 23:08:11 -07:00
2024-06-14 15:07:27 +01:00
2023-06-14 15:28:33 -07:00
2024-06-07 10:45:54 -07:00
2023-10-23 22:22:00 +04:00
2023-12-12 10:13:42 -08:00
2024-05-04 17:00:29 -07:00
2023-08-28 12:13:42 -04:00
2023-05-19 08:44:12 -04:00
2024-01-16 17:01:01 -08:00
2024-01-16 17:01:01 -08:00
2024-05-04 17:00:29 -07:00
2024-06-14 15:07:27 +01:00
2023-08-28 12:13:42 -04:00
2024-06-14 15:07:27 +01:00
2024-06-14 15:07:27 +01:00
2024-01-12 16:08:52 +00:00
2024-05-04 17:15:51 -07:00
2023-04-25 15:12:17 -07:00
2024-05-04 17:15:51 -07:00
2023-08-28 12:13:42 -04:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:15:51 -07:00
2023-08-28 12:13:42 -04:00
2023-06-08 17:41:27 +02:00
2024-05-04 17:00:29 -07:00
2023-06-08 17:41:27 +02:00
2023-08-28 12:13:42 -04:00
2023-09-01 22:39:38 +03:00
2024-04-19 03:39:17 -04:00
2023-08-01 21:55:36 +01:00
2023-07-11 15:13:57 -07:00
2024-05-04 17:00:29 -07:00
2023-08-21 17:07:38 -07:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2024-07-15 09:40:39 +02:00
2024-07-15 09:40:39 +02:00
2024-07-15 09:40:39 +02:00
2023-08-28 12:13:42 -04:00
2024-07-15 09:40:39 +02:00
2024-05-21 09:27:03 -07:00
2024-05-07 15:23:50 -04:00
2024-05-07 15:23:50 -04:00
2023-08-11 15:59:52 -04:00
2024-03-27 16:56:19 -06:00
2024-03-27 16:56:19 -06:00
2024-02-12 15:00:45 -08:00
2024-02-12 15:00:45 -08:00
2024-02-12 15:00:45 -08:00
2023-10-03 16:12:19 -05:00
2023-10-03 16:12:19 -05:00
2023-10-03 16:12:19 -05:00
2023-11-11 09:43:03 +01:00
2024-05-07 15:23:50 -04:00
2023-11-28 23:38:50 +09:00
2023-07-13 11:49:00 +07:00
2024-05-03 10:23:53 -07:00
2024-05-03 10:23:53 -07:00
2024-05-04 17:00:29 -07:00
2024-05-07 09:18:55 -07:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2024-01-20 12:37:35 -05:00
2024-05-24 13:46:34 +08:00
2024-05-21 11:51:21 -07:00
2024-05-04 17:00:29 -07:00
2023-08-28 12:13:42 -04:00
2024-01-24 15:25:29 +01:00
2024-03-27 11:41:34 +00:00
2024-05-04 17:00:29 -07:00
2023-07-10 14:14:16 +01:00
2024-07-15 11:27:01 -07:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2023-04-27 09:39:08 -07:00
2024-05-04 17:49:32 -07:00
2024-07-02 11:14:36 +02:00
2024-05-04 17:00:29 -07:00
2023-08-28 12:13:42 -04:00
2024-05-04 17:15:51 -07:00
2024-06-14 15:07:27 +01:00
2024-02-21 21:00:08 +00:00
2023-12-18 09:46:58 -08:00
2024-07-09 12:25:53 +02:00
2024-07-15 11:27:01 -07:00
2023-07-15 16:13:48 -04:00
2024-05-04 17:00:29 -07:00
2024-01-11 09:46:54 +01:00
2024-01-12 12:23:42 -08:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:00:29 -07:00
2024-07-19 10:19:41 -04:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:15:51 -07:00
2023-06-20 08:02:58 -05:00
2023-09-20 13:37:13 +02:00
2024-05-08 08:11:15 -07:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:15:51 -07:00
2024-05-31 12:48:45 -07:00
2024-05-05 10:46:06 -07:00
2024-05-04 17:47:48 +02:00
2024-07-19 11:19:21 +08:00
2024-07-19 10:19:41 -04:00
2024-05-31 12:48:45 -07:00
2024-05-31 12:48:45 -07:00
2024-01-11 09:46:54 +01:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2023-07-11 13:16:20 -07:00
2024-01-22 11:55:39 +01:00
2024-01-11 09:46:54 +01:00
2024-05-04 17:15:51 -07:00
2024-01-11 09:46:54 +01:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-06-17 13:29:20 +02:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:00:29 -07:00
2023-05-04 09:42:25 -07:00
2023-10-15 16:13:43 -07:00
2024-01-11 09:46:54 +01:00
2024-07-24 09:38:47 -07:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2023-05-04 09:42:25 -07:00
2023-08-29 11:43:57 +02:00
2023-11-27 07:27:50 -08:00
2023-05-09 00:07:40 +08:00
2023-06-08 22:41:00 +08:00
2023-08-28 12:13:42 -04:00
2024-04-25 01:45:50 +08:00
2024-02-16 13:20:08 +02:00
2024-04-25 01:45:50 +08:00
2024-04-26 11:04:47 +09:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2023-06-13 00:53:31 -05:00
2024-05-04 17:00:29 -07:00
2024-05-02 14:59:33 -04:00
2024-05-04 17:00:29 -07:00
2023-08-15 14:49:02 -07:00
2024-03-29 09:35:31 -04:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:15:51 -07:00
2023-08-28 12:13:42 -04:00
2024-07-02 16:57:30 -07:00
2024-05-04 17:15:51 -07:00
2024-05-21 11:07:29 +01:00
2023-08-28 12:13:42 -04:00
2023-12-17 18:22:44 -08:00
2024-05-04 17:15:51 -07:00
2024-07-02 16:57:30 -07:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:15:51 -07:00
2024-05-04 17:15:51 -07:00
2024-05-30 08:36:44 +02:00
2023-08-28 12:13:42 -04:00
2024-07-24 17:00:12 -04:00
2024-07-16 04:59:51 +01:00
2023-08-28 12:13:42 -04:00
2024-05-05 10:46:06 -07:00
2024-05-04 17:00:29 -07:00
2024-04-19 09:30:47 -07:00
2023-12-10 18:03:08 -08:00
2023-06-10 10:40:43 -07:00
2023-08-28 12:13:42 -04:00
2023-09-25 17:53:39 +08:00
2023-07-11 11:52:07 -04:00
2024-03-27 11:41:34 +00:00
2024-05-04 17:47:48 +02:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-07-17 14:05:51 -04:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2024-01-20 12:37:35 -05:00
2024-06-03 18:42:08 -04:00
2023-09-13 08:57:10 -07:00
2023-08-28 12:13:42 -04:00
2023-08-07 13:17:26 -07:00
2024-04-03 11:18:29 -07:00
2024-07-22 21:24:39 -07:00
2024-06-21 10:20:15 -07:00
2024-06-21 10:20:15 -07:00
2024-07-19 09:47:47 +03:00
2024-06-21 10:20:15 -07:00
2024-07-19 09:47:47 +03:00
2024-07-19 08:28:29 -07:00
2024-06-21 10:20:15 -07:00
2024-06-20 12:09:54 -07:00
2024-06-24 13:02:55 +02:00
2024-07-19 09:47:47 +03:00
2024-06-21 10:20:15 -07:00
2023-08-28 12:13:42 -04:00
2024-01-11 09:46:54 +01:00
2023-08-03 13:58:33 +08:00
2024-04-29 14:54:10 -07:00
2024-01-11 09:46:54 +01:00
2024-01-11 09:46:54 +01:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2023-08-28 12:13:42 -04:00
2024-07-08 17:07:00 +02:00
2024-07-19 13:03:22 +01:00
2024-07-08 17:07:00 +02:00
2024-06-10 22:14:26 -07:00
2024-07-02 16:57:30 -07:00
2023-12-07 13:40:25 -06:00
2024-03-20 12:14:09 -07:00
2024-05-15 20:49:28 +07:00
2024-05-15 20:49:28 +07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2023-07-21 20:05:35 -07:00
2023-07-11 16:25:07 -07:00
2024-01-11 09:46:54 +01:00
2024-05-04 17:00:29 -07:00
2023-10-23 18:26:08 -07:00
2024-07-08 21:23:08 +08:00
2023-07-11 21:34:53 +07:00
2024-06-22 17:17:34 -07:00
2024-05-04 17:00:29 -07:00
2023-08-28 12:13:42 -04:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-03-29 09:35:31 -04:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-03-20 17:21:37 -04:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2024-03-19 13:58:51 +00:00
2024-05-24 13:46:34 +08:00
2024-06-28 15:58:11 -04:00
2024-03-09 13:49:15 +08:00
2024-07-19 15:48:50 +01:00
2024-04-05 15:26:41 +01:00
2024-03-08 20:43:35 +00:00
2024-03-29 09:35:31 -04:00
2023-12-08 12:58:39 +00:00
2023-07-19 17:37:15 +00:00
2024-01-12 16:08:52 +00:00
2024-05-05 11:42:04 -07:00
2024-05-05 11:42:04 -07:00
2023-04-25 13:33:09 -07:00
2023-05-10 14:58:35 -07:00
2023-07-19 17:37:15 +00:00
2024-04-10 19:46:01 -07:00
2024-05-05 10:46:06 -07:00
2023-10-25 07:51:28 -04:00
2024-05-04 17:00:29 -07:00
2023-08-28 12:13:42 -04:00
2023-08-15 10:10:03 -04:00
2023-06-30 13:19:15 +08:00
2024-04-09 18:18:21 +02:00
2024-03-21 09:33:16 -07:00
2023-08-16 15:09:14 -07:00
2023-10-02 19:09:39 +02:00
2023-05-22 10:11:30 -07:00
2024-07-19 08:27:16 -07:00
2024-07-15 09:40:39 +02:00
2024-05-04 17:00:29 -07:00
2023-09-07 09:49:27 -04:00
2023-08-28 12:13:42 -04:00
2024-01-24 15:25:29 +01:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2023-08-28 12:13:42 -04:00
2024-05-04 17:00:29 -07:00
2023-08-28 12:13:42 -04:00
2024-03-27 11:41:34 +00:00
2024-07-12 17:09:48 -05:00
2023-08-28 12:13:42 -04:00
2024-07-08 21:23:08 +08:00
2023-06-22 08:51:29 -07:00
2023-08-28 12:13:42 -04:00
2023-08-28 12:13:42 -04:00
2024-07-16 04:59:51 +01:00
2024-03-13 17:39:23 +01:00
2024-05-04 17:00:29 -07:00
2023-08-10 21:54:32 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-05-04 17:00:29 -07:00
2024-01-11 09:46:54 +01:00
2024-01-11 09:46:54 +01:00
2024-05-07 19:46:19 -04:00
2024-03-27 11:41:34 +00:00
2023-06-19 20:38:16 -07:00
2023-06-19 20:28:39 -07:00
2023-06-19 20:38:16 -07:00
2023-06-20 22:40:56 -07:00
2023-06-19 20:38:16 -07:00
2023-06-19 20:28:39 -07:00