-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmicro.txt
93 lines (93 loc) · 3.55 KB
/
micro.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
SIZEOF
sizeof(LocalDate): 4
sizeof(LocalTime): 4
sizeof(LocalDateTime): 8
sizeof(TimeOffset): 4
sizeof(OffsetDateTime): 12
sizeof(TimeZone): 5
sizeof(TimeZoneData): 5
sizeof(ZonedDateTime): 17
sizeof(ZonedExtra): 25
sizeof(TimePeriod): 4
Basic:
sizeof(basic::Info::ZoneContext): 20
sizeof(basic::Info::ZoneEra): 11
sizeof(basic::Info::ZoneInfo): 13
sizeof(basic::Info::ZoneRule): 9
sizeof(basic::Info::ZonePolicy): 3
sizeof(basic::ZoneRegistrar): 5
sizeof(BasicZoneProcessor): 148
sizeof(BasicZoneProcessorCache<1>): 152
sizeof(BasicZoneManager): 7
sizeof(BasicZoneProcessor::Transition): 27
Extended:
sizeof(extended::Info::ZoneContext): 20
sizeof(extended::Info::ZoneEra): 11
sizeof(extended::Info::ZoneInfo): 13
sizeof(extended::Info::ZoneRule): 9
sizeof(extended::Info::ZonePolicy): 3
sizeof(extended::ZoneRegistrar): 5
sizeof(ExtendedZoneProcessor): 561
sizeof(ExtendedZoneProcessorCache<1>): 565
sizeof(ExtendedZoneManager): 7
sizeof(ExtendedZoneProcessor::Transition): 50
sizeof(ExtendedZoneProcessor::TransitionStorage): 420
sizeof(ExtendedZoneProcessor::MatchingEra): 32
Complete:
sizeof(complete::Info::ZoneContext): 20
sizeof(complete::Info::ZoneEra): 15
sizeof(complete::Info::ZoneInfo): 13
sizeof(complete::Info::ZoneRule): 12
sizeof(complete::Info::ZonePolicy): 3
sizeof(complete::ZoneRegistrar): 5
sizeof(CompleteZoneProcessor): 561
sizeof(CompleteZoneProcessorCache<1>): 565
sizeof(CompleteZoneManager): 7
sizeof(CompleteZoneProcessor::Transition): 50
sizeof(CompleteZoneProcessor::TransitionStorage): 420
sizeof(CompleteZoneProcessor::MatchingEra): 32
BENCHMARKS
EmptyLoop 4.000
LocalDate::forEpochDays() 244.000
LocalDate::toEpochDays() 52.000
LocalDate::dayOfWeek() 49.000
OffsetDateTime::forEpochSeconds() 364.000
OffsetDateTime::toEpochSeconds() 77.000
ZonedDateTime::toEpochSeconds() 74.000
ZonedDateTime::toEpochDays() 64.000
ZonedDateTime::forEpochSeconds(UTC) 394.000
ZonedDateTime::forEpochSeconds(Basic_nocache) 1736.000
ZonedDateTime::forEpochSeconds(Basic_cached) 711.000
ZonedDateTime::forEpochSeconds(Extended_nocache) -1
ZonedDateTime::forEpochSeconds(Extended_cached) -1
ZonedDateTime::forEpochSeconds(Complete_nocache) -1
ZonedDateTime::forEpochSeconds(Complete_cached) -1
ZonedDateTime::forComponents(Basic_nocache) 2281.000
ZonedDateTime::forComponents(Basic_cached) 1259.000
ZonedDateTime::forComponents(Extended_nocache) -1
ZonedDateTime::forComponents(Extended_cached) -1
ZonedDateTime::forComponents(Complete_nocache) -1
ZonedDateTime::forComponents(Complete_cached) -1
ZonedExtra::forEpochSeconds(Basic_nocache) 1411.000
ZonedExtra::forEpochSeconds(Basic_cached) 381.000
ZonedExtra::forEpochSeconds(Extended_nocache) -1
ZonedExtra::forEpochSeconds(Extended_cached) -1
ZonedExtra::forEpochSeconds(Complete_nocache) -1
ZonedExtra::forEpochSeconds(Complete_cached) -1
ZonedExtra::forComponents(Basic_nocache) 2305.000
ZonedExtra::forComponents(Basic_cached) 1284.000
ZonedExtra::forComponents(Extended_nocache) -1
ZonedExtra::forComponents(Extended_cached) -1
ZonedExtra::forComponents(Complete_nocache) -1
ZonedExtra::forComponents(Complete_cached) -1
BasicZoneRegistrar::findIndexForName(binary) 122.000
BasicZoneRegistrar::findIndexForIdBinary() 49.000
BasicZoneRegistrar::findIndexForIdLinear() 295.000
ExtendedZoneRegistrar::findIndexForName(binary) -1
ExtendedZoneRegistrar::findIndexForIdBinary() -1
ExtendedZoneRegistrar::findIndexForIdLinear() -1
CompleteZoneRegistrar::findIndexForName(binary) -1
CompleteZoneRegistrar::findIndexForIdBinary() -1
CompleteZoneRegistrar::findIndexForIdLinear() -1
Iterations_per_run 1000
END