Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
d3f9c1b9
Commit
d3f9c1b9
authored
Feb 19, 2005
by
Steven G. Kargl
Committed by
Steven G. Kargl
Feb 19, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* intrinsic/date_and_time.c: Fix conformance problems.
From-SVN: r95284
parent
70132ce7
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
71 additions
and
67 deletions
+71
-67
libgfortran/ChangeLog
+4
-0
libgfortran/intrinsics/date_and_time.c
+67
-67
No files found.
libgfortran/ChangeLog
View file @
d3f9c1b9
2005-02-19 Steven G. Kargl <kargls@comcast.net>
* intrinsic/date_and_time.c: Fix conformance problems.
2005-02-01 Paul Thomas <paulthomas2@wanadoo.fr>
PR libgfortran/19363
...
...
libgfortran/intrinsics/date_and_time.c
View file @
d3f9c1b9
/* Implementation of the DATE_AND_TIME intrinsic.
Copyright (C) 2003, 2004 Free Software Foundation, Inc.
Copyright (C) 2003, 2004
, 2005
Free Software Foundation, Inc.
Contributed by Steven Bosscher.
This file is part of the GNU Fortran 95 runtime library (libgfortran).
...
...
@@ -67,7 +67,7 @@ Boston, MA 02111-1307, USA. */
DATE (optional) shall be scalar and of type default character, and
shall be of length at least 8 in order to contain the complete
value. It is an INTENT
(OUT) argument. Its leftmost 8 characters
value. It is an INTENT(OUT) argument. Its leftmost 8 characters
are assigned a value of the form CCYYMMDD, where CC is the century,
YY the year within the century, MM the month within the year, and
DD the day within the month. If there is no date available, they
...
...
@@ -75,7 +75,7 @@ Boston, MA 02111-1307, USA. */
TIME (optional) shall be scalar and of type default character, and
shall be of length at least 10 in order to contain the complete
value. It is an INTENT
(OUT) argument. Its leftmost 10 characters
value. It is an INTENT(OUT) argument. Its leftmost 10 characters
are assigned a value of the form hhmmss.sss, where hh is the hour
of the day, mm is the minutes of the hour, and ss.sss is the
seconds and milliseconds of the minute. If there is no clock
...
...
@@ -83,40 +83,40 @@ Boston, MA 02111-1307, USA. */
ZONE (optional) shall be scalar and of type default character, and
shall be of length at least 5 in order to contain the complete
value. It is an INTENT
(OUT) argument. Its leftmost 5 characters
are assigned a value of the form
±
hhmm, where hh and mm are the
value. It is an INTENT(OUT) argument. Its leftmost 5 characters
are assigned a value of the form ±hhmm, where hh and mm are the
time difference with respect to Coordinated Universal Time (UTC) in
hours and parts of an hour expressed in minutes, respectively. If
there is no clock available, they are assigned blanks.
VALUES (optional) shall be of type default integer and of rank
one. It is an INTENT
(OUT) argument. Its size shall be at least
one. It is an INTENT(OUT) argument. Its size shall be at least
8. The values returned in VALUES are as follows:
VALUES
(1) the year (for example, 2003), or HUGE
(0) if there is
VALUES
(1) the year (for example, 2003), or -HUGE
(0) if there is
no date available;
VALUES
(2) the month of the year, or HUGE
(0) if there
VALUES
(2) the month of the year, or -HUGE
(0) if there
is no date available;
VALUES
(3) the day of the month, or HUGE
(0) if there is no date
VALUES
(3) the day of the month, or -HUGE
(0) if there is no date
available;
VALUES
(4) the time difference with respect to Coordinated
Universal Time (UTC) in minutes, or
HUGE
(0) if this information
VALUES(4) the time difference with respect to Coordinated
Universal Time (UTC) in minutes, or
-HUGE
(0) if this information
is not available;
VALUES
(5) the hour of the day, in the range of 0 to 23, or HUGE
(0) if there is no clock;
VALUES
(5) the hour of the day, in the range of 0 to 23, or
-HUGE
(0) if there is no clock;
VALUES
(6) the minutes of the hour, in the range 0 to 59, or
HUGE
(0) if there is no clock;
VALUES(6) the minutes of the hour, in the range 0 to 59, or
-HUGE
(0) if there is no clock;
VALUES
(7) the seconds of the minute, in the range 0 to 60, or
HUGE
(0) if there is no clock;
VALUES(7) the seconds of the minute, in the range 0 to 60, or
-HUGE
(0) if there is no clock;
VALUES
(8) the milliseconds of the second, in the range 0 to
999, or
HUGE
(0) if there is no clock.
VALUES(8) the milliseconds of the second, in the range 0 to
999, or
-HUGE
(0) if there is no clock.
NULL pointer represent missing OPTIONAL arguments. All arguments
have INTENT(OUT). Because of the -i8 option, we must implement
...
...
@@ -129,33 +129,37 @@ Boston, MA 02111-1307, USA. */
- There is no STDC/POSIX way to get VALUES(8). A GNUish way may
be to use ftime.
*/
#define DATE_LEN 8
#define TIME_LEN 10
#define ZONE_LEN 5
#define VALUES_SIZE 8
extern
void
date_and_time
(
char
*
,
char
*
,
char
*
,
gfc_array_i4
*
,
GFC_INTEGER_4
,
GFC_INTEGER_4
,
GFC_INTEGER_4
);
export_proto
(
date_and_time
);
void
date_and_time
(
char
*
__date
,
char
*
__time
,
char
*
__zone
,
gfc_array_i4
*
__values
,
GFC_INTEGER_4
__date_len
,
GFC_INTEGER_4
__time_len
,
GFC_INTEGER_4
__zone_len
)
date_and_time
(
char
*
__date
,
char
*
__time
,
char
*
__zone
,
gfc_array_i4
*
__values
,
GFC_INTEGER_4
__date_len
,
GFC_INTEGER_4
__time_len
,
GFC_INTEGER_4
__zone_len
)
{
#define DATE_LEN 8
#define TIME_LEN 10
#define ZONE_LEN 5
#define VALUES_SIZE 8
int
i
;
char
date
[
DATE_LEN
+
1
];
char
timec
[
TIME_LEN
+
1
];
char
zone
[
ZONE_LEN
+
1
];
GFC_INTEGER_4
values
[
VALUES_SIZE
];
#ifndef HAVE_NO_DATE_TIME
time_t
lt
=
time
(
NULL
);
struct
tm
local_time
=
*
localtime
(
&
lt
);
struct
tm
UTC_time
=
*
gmtime
(
&
lt
);
time_t
lt
;
struct
tm
local_time
;
struct
tm
UTC_time
;
lt
=
time
(
NULL
);
if
(
lt
!=
(
time_t
)
-
1
)
{
local_time
=
*
localtime
(
&
lt
);
UTC_time
=
*
gmtime
(
&
lt
);
/* All arguments can be derived from VALUES. */
values
[
0
]
=
1900
+
local_time
.
tm_year
;
...
...
@@ -167,6 +171,8 @@ date_and_time (char *__date,
values
[
4
]
=
local_time
.
tm_hour
;
values
[
5
]
=
local_time
.
tm_min
;
values
[
6
]
=
local_time
.
tm_sec
;
values
[
7
]
=
0
;
#if HAVE_GETTIMEOFDAY
{
struct
timeval
tp
;
...
...
@@ -179,7 +185,7 @@ date_and_time (char *__date,
/* Some systems such as HP-UX, do have struct timezone, but
gettimeofday takes void* as the 2nd arg. However, the
effect of passing anything other than a null pointer is
unspecified on HPUX. Configure checks if gettimeofday
unspecified on HP
-
UX. Configure checks if gettimeofday
actually fails with a non-NULL arg and pretends that
struct timezone is missing if it does fail. */
if
(
!
gettimeofday
(
&
tp
,
&
tzp
))
...
...
@@ -189,65 +195,65 @@ date_and_time (char *__date,
# endif
/* GETTIMEOFDAY_ONE_ARGUMENT */
values
[
7
]
=
tp
.
tv_usec
/
1000
;
}
#else
values
[
7
]
=
GFC_INTEGER_4_HUGE
;
#endif
/* HAVE_GETTIMEOFDAY */
if
(
__date
)
{
#if HAVE_SNPRINTF
if
(
__date
)
snprintf
(
date
,
DATE_LEN
+
1
,
"%04d%02d%02d"
,
values
[
0
],
values
[
1
],
values
[
2
]);
#else
sprintf
(
date
,
"%04d%02d%02d"
,
values
[
0
],
values
[
1
],
values
[
2
]);
#endif
}
if
(
__time
)
{
#if HAVE_SNPRINTF
snprintf
(
timec
,
TIME_LEN
+
1
,
"%02d%02d%02d.%03d"
,
values
[
4
],
values
[
5
],
values
[
6
],
values
[
7
]);
#else
sprintf
(
timec
,
"%02d%02d%02d.%03d"
,
values
[
4
],
values
[
5
],
values
[
6
],
values
[
7
]);
#endif
}
if
(
__zone
)
{
#if HAVE_SNPRINTF
snprintf
(
zone
,
ZONE_LEN
+
1
,
"%+03d%02d"
,
values
[
3
]
/
60
,
abs
(
values
[
3
]
%
60
));
#else
if
(
__date
)
sprintf
(
date
,
"%04d%02d%02d"
,
values
[
0
],
values
[
1
],
values
[
2
]);
if
(
__time
)
sprintf
(
timec
,
"%02d%02d%02d.%03d"
,
values
[
4
],
values
[
5
],
values
[
6
],
values
[
7
]);
if
(
__zone
)
sprintf
(
zone
,
"%+03d%02d"
,
values
[
3
]
/
60
,
abs
(
values
[
3
]
%
60
));
#endif
}
else
{
memset
(
date
,
' '
,
DATE_LEN
);
date
[
DATE_LEN
]
=
'\0'
;
memset
(
timec
,
' '
,
TIME_LEN
);
timec
[
TIME_LEN
]
=
'\0'
;
memset
(
zone
,
' '
,
ZONE_LEN
);
zone
[
ZONE_LEN
]
=
'\0'
;
for
(
i
=
0
;
i
<
VALUES_SIZE
;
i
++
)
values
[
i
]
=
-
GFC_INTEGER_4_HUGE
;
}
#else
/* if defined HAVE_NO_DATE_TIME */
/* We really have *nothing* to return, so return blanks and HUGE(0). */
{
int
i
;
memset
(
date
,
' '
,
DATE_LEN
);
date
[
DATE_LEN
]
=
'\0'
;
memset
(
timec
,
' '
,
TIME_LEN
);
time
[
TIME_LEN
]
=
'\0'
;
timec
[
TIME_LEN
]
=
'\0'
;
memset
(
zone
,
' '
,
ZONE_LEN
);
zone
[
ZONE_LEN
]
=
'\0'
;
for
(
i
=
0
;
i
<
VALUES_SIZE
;
i
++
)
values
[
i
]
=
GFC_INTEGER_4_HUGE
;
}
values
[
i
]
=
-
GFC_INTEGER_4_HUGE
;
#endif
/* HAVE_NO_DATE_TIME */
/* Copy the values into the arguments. */
if
(
__values
)
{
int
i
;
size_t
len
,
delta
,
elt_size
;
elt_size
=
GFC_DESCRIPTOR_SIZE
(
__values
);
...
...
@@ -263,18 +269,16 @@ date_and_time (char *__date,
GFC_INTEGER_4
*
vptr4
=
__values
->
data
;
for
(
i
=
0
;
i
<
VALUES_SIZE
;
i
++
,
vptr4
+=
delta
)
{
*
vptr4
=
values
[
i
];
}
}
else
if
(
elt_size
==
8
)
{
GFC_INTEGER_8
*
vptr8
=
(
GFC_INTEGER_8
*
)
__values
->
data
;
for
(
i
=
0
;
i
<
VALUES_SIZE
;
i
++
,
vptr8
+=
delta
)
{
if
(
values
[
i
]
==
GFC_INTEGER_4_HUGE
)
*
vptr8
=
GFC_INTEGER_8_HUGE
;
if
(
values
[
i
]
==
-
GFC_INTEGER_4_HUGE
)
*
vptr8
=
-
GFC_INTEGER_8_HUGE
;
else
*
vptr8
=
values
[
i
];
}
...
...
@@ -300,8 +304,4 @@ date_and_time (char *__date,
assert
(
__date_len
>=
DATE_LEN
);
fstrcpy
(
__date
,
DATE_LEN
,
date
,
DATE_LEN
);
}
#undef DATE_LEN
#undef TIME_LEN
#undef ZONE_LEN
#undef VALUES_SIZE
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment