* How to canonicalize a time object
@ 2022-08-05 16:24 Stefan Monnier
2022-08-13 22:01 ` Stefan Monnier
2022-08-14 15:41 ` Lars Ingebrigtsen
0 siblings, 2 replies; 5+ messages in thread
From: Stefan Monnier @ 2022-08-05 16:24 UTC (permalink / raw)
To: emacs-devel
What's the best way in ELisp to turn an arbitrary time value into one
that will be as efficient as possible for `lisp_time_argument`?
Stefan
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: How to canonicalize a time object
2022-08-05 16:24 How to canonicalize a time object Stefan Monnier
@ 2022-08-13 22:01 ` Stefan Monnier
2022-08-14 15:41 ` Lars Ingebrigtsen
1 sibling, 0 replies; 5+ messages in thread
From: Stefan Monnier @ 2022-08-13 22:01 UTC (permalink / raw)
To: emacs-devel
No one knows?
Stefan
Stefan Monnier [2022-08-05 12:24:41] wrote:
> What's the best way in ELisp to turn an arbitrary time value into one
> that will be as efficient as possible for `lisp_time_argument`?
>
>
> Stefan
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: How to canonicalize a time object
2022-08-05 16:24 How to canonicalize a time object Stefan Monnier
2022-08-13 22:01 ` Stefan Monnier
@ 2022-08-14 15:41 ` Lars Ingebrigtsen
2022-08-14 17:15 ` Stefan Monnier
1 sibling, 1 reply; 5+ messages in thread
From: Lars Ingebrigtsen @ 2022-08-14 15:41 UTC (permalink / raw)
To: Stefan Monnier; +Cc: emacs-devel, Paul Eggert
Stefan Monnier <monnier@iro.umontreal.ca> writes:
> What's the best way in ELisp to turn an arbitrary time value into one
> that will be as efficient as possible for `lisp_time_argument`?
I'm not quite sure I understand the question -- the `t' type for
`time-convert' is supposed to be the most efficient representation of an
arbitrary time value, but if you don't have sub-second resolution to
your time, the `integer' one is probably more efficient?
Paul would know, though -- added to the CCs.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: How to canonicalize a time object
2022-08-14 15:41 ` Lars Ingebrigtsen
@ 2022-08-14 17:15 ` Stefan Monnier
2022-08-14 21:17 ` Paul Eggert
0 siblings, 1 reply; 5+ messages in thread
From: Stefan Monnier @ 2022-08-14 17:15 UTC (permalink / raw)
To: Lars Ingebrigtsen; +Cc: emacs-devel, Paul Eggert
Lars Ingebrigtsen [2022-08-14 17:41:45] wrote:
> Stefan Monnier <monnier@iro.umontreal.ca> writes:
>> What's the best way in ELisp to turn an arbitrary time value into one
>> that will be as efficient as possible for `lisp_time_argument`?
> I'm not quite sure I understand the question -- the `t' type for
> `time-convert' is supposed to be the most efficient representation of an
> arbitrary time value,
Yes, it seems that using the representation returned by `time-convert`
when you ask for the `t` form is the "most efficient" for some
definition of it, but I'm specifically interested in the efficiency of
passing the result to `lisp_time_argument`: that function uses
`lisp_to_timespec` which has various "fast paths" and I'm not sure how
to make sure we'll go through them. E.g. if we do (time-convert FLOAT t)
the returned value will be of the form (TICKS . 2^51) and for
(time-convert (HI LOW US) t) it'll be (TICKS . 10^6), but
`lisp_to_timespec` doesn't seem to have a fast path for 2^51 and I'm not
sure it has one for 10^6 (nor 10^12 used for (HI LOW US PS)).
It appears that the best choice currently is to use `timespec_hz`
(or 1 if the time is a whole number of seconds), but:
- There doesn't seem to be an easy way to get `timespec_hz` from ELisp.
- It's cumbersome to find out if a time value is a whole number
of seconds.
- It's not very elegant to have ELisp code do such gymnastics which
depend on the presence/absence of specific fast-paths in the C code,
which my also change in the future.
> but if you don't have sub-second resolution to your time, the
> `integer' one is probably more efficient?
Indeed, tho only for that specific situation :-(
Of course, maybe we shouldn't care, and just presume that the slow path
which does a GMP mul+div is plenty fast anyway.
Stefan
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: How to canonicalize a time object
2022-08-14 17:15 ` Stefan Monnier
@ 2022-08-14 21:17 ` Paul Eggert
0 siblings, 0 replies; 5+ messages in thread
From: Paul Eggert @ 2022-08-14 21:17 UTC (permalink / raw)
To: Stefan Monnier, Lars Ingebrigtsen; +Cc: emacs-devel
[-- Attachment #1: Type: text/plain, Size: 1896 bytes --]
On 8/14/22 10:15, Stefan Monnier wrote:
> E.g. if we do (time-convert FLOAT t)
> the returned value will be of the form (TICKS . 2^51) and for
> (time-convert (HI LOW US) t) it'll be (TICKS . 10^6), but
> `lisp_to_timespec` doesn't seem to have a fast path for 2^51 and I'm not
> sure it has one for 10^6 (nor 10^12 used for (HI LOW US PS)).
I hadn't written fast paths for those, no.
The idea is that (time-convert X t) should be best if you want full
precision. If you want only one-second precision, (time-convert X
'integer) should yield timestamps that are a bit faster, because there's
no need for consing.
I just now looked at the code and found a couple of places where integer
timestamps were significantly slower, and wrote and installed the
attached performance tweaks to fix that.
> - There doesn't seem to be an easy way to get `timespec_hz` from ELisp.
Why would code need timespec_hz, if (time-convert X t) suffices for
conversion to full precision?
Code that needs timespec_hz can get it with (cdr (time-convert nil t)).
If that's too cumbersome we could add a builtin integer for it, though
there's a caveat here: some timestamps can use a different hz value than
others, so the builtin integer would be only for the timestamps
retrieved from (time-convert ... t) and not necessarily for other (TICKS
. HZ) timestamps retrieved from the system via file-attributes etc. To
avoid this confusion it might be better not to have that builtin integer.
> - It's cumbersome to find out if a time value is a whole number
> of seconds.
If (time-equal-p X (time-convert X 'integer)) is too cumbersome, we
could add a function to do that.
> Of course, maybe we shouldn't care, and just presume that the slow path
> which does a GMP mul+div is plenty fast anyway.
Yes, the goal is that this stuff "just works" without people having to
worry overmuch about speed.
[-- Attachment #2: 0001-Decode-time-conses-before-floats.patch --]
[-- Type: text/x-patch, Size: 1563 bytes --]
From 15aba5e64496414ec4659118f910516d2dc5e8b4 Mon Sep 17 00:00:00 2001
From: Paul Eggert <eggert@cs.ucla.edu>
Date: Sun, 14 Aug 2022 13:48:11 -0700
Subject: [PATCH 1/2] Decode time conses before floats
* src/timefns.c (decode_lisp_time): Test for conses before floats,
as conses are more common.
---
src/timefns.c | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/src/timefns.c b/src/timefns.c
index edfd73e9b8..b9d9a4ed97 100644
--- a/src/timefns.c
+++ b/src/timefns.c
@@ -822,17 +822,6 @@ decode_lisp_time (Lisp_Object specified_time, bool decode_secs_only,
if (NILP (specified_time))
form = TIMEFORM_NIL;
- else if (FLOATP (specified_time))
- {
- double d = XFLOAT_DATA (specified_time);
- if (!isfinite (d))
- time_error (isnan (d) ? EDOM : EOVERFLOW);
- if (result)
- decode_float_time (d, result);
- else
- *dresult = d;
- return TIMEFORM_FLOAT;
- }
else if (CONSP (specified_time))
{
high = XCAR (specified_time);
@@ -872,6 +861,17 @@ decode_lisp_time (Lisp_Object specified_time, bool decode_secs_only,
if (! INTEGERP (low))
form = TIMEFORM_INVALID;
}
+ else if (FLOATP (specified_time))
+ {
+ double d = XFLOAT_DATA (specified_time);
+ if (!isfinite (d))
+ time_error (isnan (d) ? EDOM : EOVERFLOW);
+ if (result)
+ decode_float_time (d, result);
+ else
+ *dresult = d;
+ return TIMEFORM_FLOAT;
+ }
int err = decode_time_components (form, high, low, usec, psec,
result, dresult);
--
2.34.1
[-- Attachment #3: 0002-Improve-timefns-speed-on-integers.patch --]
[-- Type: text/x-patch, Size: 1890 bytes --]
From a64fe6f31987ca4a2c8ac6b96b97c6a440aeb2a2 Mon Sep 17 00:00:00 2001
From: Paul Eggert <eggert@cs.ucla.edu>
Date: Sun, 14 Aug 2022 13:48:11 -0700
Subject: [PATCH 2/2] Improve timefns speed on integers
* src/timefns.c (decode_lisp_time) [FASTER_TIMEFNS]:
Speed up when SPECIFIED_TIME is an integer.
(time_cmp) [FASTER_TIMEFNS]: Speed up when comparing integers.
---
src/timefns.c | 19 +++++++++++++++----
1 file changed, 15 insertions(+), 4 deletions(-)
diff --git a/src/timefns.c b/src/timefns.c
index b9d9a4ed97..eed2edf1cc 100644
--- a/src/timefns.c
+++ b/src/timefns.c
@@ -861,6 +861,11 @@ decode_lisp_time (Lisp_Object specified_time, bool decode_secs_only,
if (! INTEGERP (low))
form = TIMEFORM_INVALID;
}
+ else if (FASTER_TIMEFNS && INTEGERP (specified_time))
+ {
+ decode_ticks_hz (specified_time, make_fixnum (1), result, dresult);
+ return form;
+ }
else if (FLOATP (specified_time))
{
double d = XFLOAT_DATA (specified_time);
@@ -1206,10 +1211,16 @@ time_cmp (Lisp_Object a, Lisp_Object b)
return 0;
/* Compare (X . Z) to (Y . Z) quickly if X and Y are fixnums.
- Do not inspect Z, as it is OK to not signal if A and B are invalid. */
- if (FASTER_TIMEFNS && CONSP (a) && CONSP (b) && BASE_EQ (XCDR (a), XCDR (b))
- && FIXNUMP (XCAR (a)) && FIXNUMP (XCAR (b)))
- return XFIXNUM (XCAR (a)) - XFIXNUM (XCAR (b));
+ Do not inspect Z, as it is OK to not signal if A and B are invalid.
+ Also, compare X to Y quickly if X and Y are fixnums. */
+ if (FASTER_TIMEFNS)
+ {
+ Lisp_Object x = a, y = b;
+ if (CONSP (a) && CONSP (b) && BASE_EQ (XCDR (a), XCDR (b)))
+ x = XCAR (a), y = XCAR (b);
+ if (FIXNUMP (x) && FIXNUMP (y))
+ return XFIXNUM (x) - XFIXNUM (y);
+ }
/* Compare (ATICKS . AZ) to (BTICKS . BHZ) by comparing
ATICKS * BHZ to BTICKS * AHZ. */
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-08-14 21:17 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-05 16:24 How to canonicalize a time object Stefan Monnier
2022-08-13 22:01 ` Stefan Monnier
2022-08-14 15:41 ` Lars Ingebrigtsen
2022-08-14 17:15 ` Stefan Monnier
2022-08-14 21:17 ` Paul Eggert
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).