-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathBenchmark.cpp
1335 lines (1112 loc) · 44 KB
/
Benchmark.cpp
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Here are various attempts to reduce program size to < 32kB so that this can
* run on an Arduino Nano w/ only 32kB of flash.
*
* * Sketch uses 36830 bytes (119%) of program storage space. Maximum is 30720
* bytes. (original, with 266 Basic zones)
*
* * Sketch uses 36378 bytes (118%) of program storage space. Maximum is 30720
* bytes (after converting Lambda to function pointer).
*
* * Sketch uses 36074 bytes (117%) of program storage space. Maximum is 30720
* bytes. (after creating common printResult()).
*
* * Sketch uses 35898 bytes (116%) of program storage space. Maximum is 30720
* bytes. (after commenting out runLocalDateForEpochDays() and
* runLocalDateToEpochDays(), reverted).
*
* * Sketch uses 28136 bytes (91%) of program storage space. Maximum is 30720
* bytes. (After creating a custom kBasicRegistry with only 83 zones.)
*
* * Sketch uses 28036 bytes (91%) of program storage space. Maximum is 30720
* bytes. (After moving elapsedMillis calculation into printResult().
*
* * Sketch uses 27990 bytes (91%) of program storage space. Maximum is 30720
* bytes. (After replacing 2 zones with America/Denver and
* America/Los_Angeles, since they are already used in the kBasicZoneRegistry
* anyway.
*
* * Sketch uses 26298 bytes (85%) of program storage space. Maximum is 30720
* bytes. (After replace BasicZoneManager and ExtendedZoneManager with
* BasicZoneProcessor and ExtendedZoneProcessor, since the ZoneManagers were
* not needed for the benchmark.)
*
* * Sketch uses 26776 bytes (87%) of program storage space. Maximum is 30720
* bytes. (After adding support for LinkRegistry.)
*
* * (Pro Micro) Sketch uses 22780 bytes (79%) of program storage space.
* Maximum is 28672 bytes. On a ProMicro, disabling
* ZonedDateTime::forEpochSeconds(*) removes the dependency to
* ExtendedZoneProcessor, reducing flash consumption from 28872 bytes.
*/
#include <Arduino.h>
#include <stdint.h>
#include <AceCommon.h> // PrintStr
#include <AceTime.h>
#include "Benchmark.h"
#include "basic_registry.h"
#include "extended_registry.h"
#include "complete_registry.h"
using namespace ace_time;
using ace_common::PrintStr;
// AVR microcontrollers like the SparkFun ProMicro and Arduino Nano do not have
// enough flash memory, so this allows us to enable the ExtendedZoneProcessor
// and CompleteZoneProcessor only when needed.
#if defined(ARDUINO_AVR_PROMICRO) || defined(ARDUINO_AVR_NANO)
#define ENABLE_EXTENDED_ZONE_PROCESSOR 0
#define ENABLE_COMPLETE_ZONE_PROCESSOR 0
#else
#define ENABLE_EXTENDED_ZONE_PROCESSOR 1
#define ENABLE_COMPLETE_ZONE_PROCESSOR 1
#endif
#if defined(ARDUINO_ARCH_AVR)
const uint32_t COUNT = 1000;
#elif defined(ARDUINO_ARCH_SAMD)
const uint32_t COUNT = 5000;
#elif defined(ARDUINO_ARCH_STM32)
const uint32_t COUNT = 5000;
#elif defined(ESP8266)
const uint32_t COUNT = 2000; // low enough to prevent WDT exception
#elif defined(ESP32)
const uint32_t COUNT = 20000;
#elif defined(TEENSYDUINO)
const uint32_t COUNT = 20000;
#elif defined(EPOXY_DUINO)
// Linux or MacOS
const uint32_t COUNT = 50000;
#else
// A generic Arduino board that we have not looked at.
const uint32_t COUNT = 10000;
#endif
const uint32_t MILLIS_TO_NANO_PER_ITERATION = ((uint32_t) 1000000 / COUNT);
// The compiler is extremelly good about removing code that does nothing. This
// volatile variable is used to create side-effects that prevent the compiler
// from optimizing out the code that's being tested. Each disableOptimization()
// method should perform 6 XOR operations to cancel each other out when
// subtracted.
volatile uint8_t guard;
void disableOptimization(const LocalDate& ld) {
guard ^= ld.year();
guard ^= ld.month();
guard ^= ld.day();
guard ^= ld.year();
guard ^= ld.month();
guard ^= ld.day();
}
void disableOptimization(const ZonedDateTime& dt) {
guard ^= dt.year();
guard ^= dt.month();
guard ^= dt.day();
guard ^= dt.hour();
guard ^= dt.minute();
guard ^= dt.second();
}
void disableOptimization(const OffsetDateTime& dt) {
guard ^= dt.year();
guard ^= dt.month();
guard ^= dt.day();
guard ^= dt.hour();
guard ^= dt.minute();
guard ^= dt.second();
}
void disableOptimization(uint32_t value) {
guard ^= value & 0xff;
guard ^= (value >> 8) & 0xff;
guard ^= (value >> 16) & 0xff;
guard ^= (value >> 24) & 0xff;
}
void disableOptimization(const ZonedExtra& extra) {
guard ^= extra.type() & 0xff;
guard ^= extra.timeOffset().toMinutes() & 0xff;
guard ^= *extra.abbrev();
}
// Type declaration of the Lambda.
typedef void (*Lambda)();
// A small helper that runs the given lamba expression in a loop
// and returns how long it took.
unsigned long runLambda(Lambda lambda) {
yield();
uint32_t count = COUNT;
unsigned long startMillis = millis();
while (count--) {
lambda();
}
unsigned long elapsedMillis = millis() - startMillis;
yield();
return elapsedMillis;
}
// Given total elapsed time in millis, print micros per iteration as a floating
// point number (without using floating point operations).
//
// Sometimes, the elapsedMillis is negative. This happens on some benchmarks on
// higher powered CPUs where the thing being measured is so quickly executed
// that the empty loop overhead can take a longer. Print "-0.000" if that
// occurs.
static void printMicrosPerIteration(long elapsedMillis) {
if (elapsedMillis < 0) {
SERIAL_PORT_MONITOR.print(F(" -0.000"));
return;
}
unsigned long nanos = elapsedMillis * MILLIS_TO_NANO_PER_ITERATION;
uint16_t whole = nanos / 1000;
uint16_t frac = nanos % 1000;
SERIAL_PORT_MONITOR.print(' ');
SERIAL_PORT_MONITOR.print(whole);
SERIAL_PORT_MONITOR.print('.');
ace_common::printPad3To(SERIAL_PORT_MONITOR, frac, '0');
}
#if ENABLE_EXTENDED_ZONE_PROCESSOR == 0
// Print -1 to indicate that the benchmark was not executed, due to memory.
static void printNullResult(const __FlashStringHelper* label) {
SERIAL_PORT_MONITOR.print(label);
SERIAL_PORT_MONITOR.println(" -1");
}
#endif
static void printResult(
const __FlashStringHelper* label,
unsigned long benchmarkMillis,
unsigned long baselineMillis
) {
long elapsedMillis = benchmarkMillis - baselineMillis;
SERIAL_PORT_MONITOR.print(label);
printMicrosPerIteration(elapsedMillis < 0 ? 0 : elapsedMillis);
SERIAL_PORT_MONITOR.println();
}
//-----------------------------------------------------------------------------
// Save the empty loop time.
static unsigned long emptyLoopMillis;
// Return how long the empty lookup takes.
unsigned long runEmptyLoopMillis() {
return runLambda([]() {
unsigned long tickMillis = millis();
disableOptimization(tickMillis);
});
}
static void runEmptyLoop() {
emptyLoopMillis = runEmptyLoopMillis();
printResult(F("EmptyLoop"), emptyLoopMillis, 0);
}
//-----------------------------------------------------------------------------
static volatile unsigned long fakeEpochDays = 42;
static volatile acetime_t fakeEpochSeconds = 3432;
// LocalDate::forEpochDays()
static void runLocalDateForEpochDays() {
unsigned long localDateForDaysMillis = runLambda([]() {
fakeEpochDays = millis() & 0xffff;
LocalDate localDate = LocalDate::forEpochDays(fakeEpochDays);
disableOptimization(localDate);
});
printResult(F("LocalDate::forEpochDays()"), localDateForDaysMillis,
emptyLoopMillis);
}
// LocalDate::toEpochDays()
static void runLocalDateToEpochDays() {
unsigned long localDateToEpochDaysMillis = runLambda([]() {
fakeEpochDays = millis() & 0xffff;
LocalDate localDate = LocalDate::forEpochDays(fakeEpochDays);
int32_t epochDays = localDate.toEpochDays();
disableOptimization(epochDays);
});
unsigned long forEpochDaysMillis = runLambda([]() {
fakeEpochDays = millis() & 0xffff;
LocalDate localDate = LocalDate::forEpochDays(fakeEpochDays);
disableOptimization(localDate);
});
printResult(F("LocalDate::toEpochDays()"), localDateToEpochDaysMillis,
forEpochDaysMillis);
}
// LocalDate::dayOfWeek()
static void runLocalDateDaysOfWeek() {
unsigned long localDateDayOfWeekMillis = runLambda([]() {
fakeEpochDays = millis() & 0xffff;
LocalDate localDate = LocalDate::forEpochDays(fakeEpochDays);
uint8_t dayOfWeek = localDate.dayOfWeek();
disableOptimization(localDate);
disableOptimization(dayOfWeek);
});
unsigned long forEpochDaysMillis = runLambda([]() {
fakeEpochDays = millis() & 0xffff;
LocalDate localDate = LocalDate::forEpochDays(fakeEpochDays);
disableOptimization(localDate);
});
printResult(F("LocalDate::dayOfWeek()"), localDateDayOfWeekMillis,
forEpochDaysMillis);
}
//-----------------------------------------------------------------------------
// OffsetDateTime::forEpochSeconds()
static void runOffsetDateTimeForEpochSeconds() {
unsigned long localDateForDaysMillis = runLambda([]() {
fakeEpochSeconds = millis() & 0xffff;
OffsetDateTime odt = OffsetDateTime::forEpochSeconds(
fakeEpochSeconds, TimeOffset());
disableOptimization(odt);
});
printResult(F("OffsetDateTime::forEpochSeconds()"), localDateForDaysMillis,
emptyLoopMillis);
}
// OffsetDateTime::toEpochSeconds()
static void runOffsetDateTimeToEpochSeconds() {
unsigned long localDateToEpochDaysMillis = runLambda([]() {
fakeEpochSeconds = millis() & 0xffff;
OffsetDateTime odt = OffsetDateTime::forEpochSeconds(
fakeEpochSeconds, TimeOffset());
int32_t epochDays = odt.toEpochSeconds();
disableOptimization(epochDays);
});
unsigned long forEpochDaysMillis = runLambda([]() {
fakeEpochSeconds = millis() & 0xffff;
OffsetDateTime odt = OffsetDateTime::forEpochSeconds(
fakeEpochSeconds, TimeOffset());
disableOptimization(odt);
});
printResult(F("OffsetDateTime::toEpochSeconds()"), localDateToEpochDaysMillis,
forEpochDaysMillis);
}
// ZonedDateTime::forEpochSeconds(seconds)
static void runZonedDateTimeForEpochSecondsUTC() {
unsigned long forEpochSecondsMillis = runLambda([]() {
fakeEpochSeconds = millis() & 0xffff;
ZonedDateTime dateTime = ZonedDateTime::forEpochSeconds(fakeEpochSeconds,
TimeZone());
disableOptimization(dateTime);
});
printResult(F("ZonedDateTime::forEpochSeconds(UTC)"), forEpochSecondsMillis,
emptyLoopMillis);
}
// ZonedDateTime::toEpochDays()
static void runZonedDateTimeToEpochDays() {
unsigned long toEpochDaysMillis = runLambda([]() {
fakeEpochSeconds = millis() & 0xffff;
ZonedDateTime dateTime = ZonedDateTime::forEpochSeconds(fakeEpochSeconds,
TimeZone());
int32_t epochDays = dateTime.toEpochDays();
disableOptimization(epochDays);
});
unsigned long forEpochSecondsMillis = runLambda([]() {
fakeEpochDays = millis() & 0xffff;
ZonedDateTime dateTime = ZonedDateTime::forEpochSeconds(fakeEpochSeconds,
TimeZone());
disableOptimization(dateTime);
});
printResult(F("ZonedDateTime::toEpochDays()"), toEpochDaysMillis,
forEpochSecondsMillis);
}
// ZonedDateTime::toEpochSeconds()
static void runZonedDateTimeToEpochSeconds() {
unsigned long toEpochSecondsMillis = runLambda([]() {
fakeEpochSeconds = millis() & 0xffff;
ZonedDateTime dateTime = ZonedDateTime::forEpochSeconds(fakeEpochSeconds,
TimeZone());
acetime_t epochSeconds = dateTime.toEpochSeconds();
disableOptimization(epochSeconds);
});
unsigned long forEpochSecondsMillis = runLambda([]() {
fakeEpochSeconds = millis() & 0xffff;
ZonedDateTime dateTime = ZonedDateTime::forEpochSeconds(fakeEpochSeconds,
TimeZone());
disableOptimization(dateTime);
});
printResult(F("ZonedDateTime::toEpochSeconds()"), toEpochSecondsMillis,
forEpochSecondsMillis);
}
//-----------------------------------------------------------------------------
// Epoch seconds offset alternating between 0 and kTwoYears on each iterations,
// used to prevent caching to obtain benchmarking number without caching.
static volatile acetime_t offset = 0; // alternate between 0 and kTwoYears
static const acetime_t kTwoYears = 2 * 365 * 24 * 3600L;
static volatile int16_t year = 2000; // alternate between 2000 and 2002
// Pointer to BasicZoneManager and ExtendedZoneManager, whose actual instances
// are created within the specific test on the stack. These global variables
// allows the lamba functions below to avoid captures, which allows passing the
// lambdas into runLambda() as a function pointer, which I hope lowers the
// flash memory consumption of this program enough to run on a 32kB Arduino
// Nano.
static BasicZoneProcessor* basicZoneProcessor;
#if ENABLE_EXTENDED_ZONE_PROCESSOR == 1
static ExtendedZoneProcessor* extendedZoneProcessor;
#endif
#if ENABLE_COMPLETE_ZONE_PROCESSOR == 1
static CompleteZoneProcessor* completeZoneProcessor;
#endif
//-----------------------------------------------------------------------------
// ZonedDateTime::forEpochSeconds(seconds, tz), Basic uncached
static void runZonedDateTimeForEpochSecondsBasicNoCache() {
BasicZoneProcessor processor;
basicZoneProcessor = &processor;
offset = 0;
unsigned long forEpochSecondsMillis = runLambda([]() {
offset = (offset) ? 0 : kTwoYears; // break caching
fakeEpochSeconds = offset;
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedb::kZoneAmerica_Los_Angeles,
basicZoneProcessor);
ZonedDateTime dateTime = ZonedDateTime::forEpochSeconds(
fakeEpochSeconds, tzLosAngeles);
disableOptimization(dateTime);
});
printResult(F("ZonedDateTime::forEpochSeconds(Basic_nocache)"),
forEpochSecondsMillis, emptyLoopMillis);
}
// ZonedDateTime::forEpochSeconds(seconds, tz), Basic cached
static void runZonedDateTimeForEpochSecondsBasicCached() {
BasicZoneProcessor processor;
basicZoneProcessor = &processor;
fakeEpochSeconds = millis() & 0xffff;
unsigned long forEpochSecondsMillis = runLambda([]() {
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedb::kZoneAmerica_Los_Angeles,
basicZoneProcessor);
ZonedDateTime dateTime = ZonedDateTime::forEpochSeconds(
fakeEpochSeconds, tzLosAngeles);
disableOptimization(dateTime);
});
printResult(F("ZonedDateTime::forEpochSeconds(Basic_cached)"),
forEpochSecondsMillis, emptyLoopMillis);
}
// ZonedDateTime::forEpochSeconds(seconds, tz), Extended uncached
static void runZonedDateTimeForEpochSecondsExtendedNoCache() {
#if ENABLE_EXTENDED_ZONE_PROCESSOR == 0
printNullResult(F("ZonedDateTime::forEpochSeconds(Extended_nocache)"));
#else
ExtendedZoneProcessor processor;
extendedZoneProcessor = &processor;
offset = 0;
unsigned long forEpochSecondsMillis = runLambda([]() {
offset = (offset) ? 0 : kTwoYears;
fakeEpochSeconds = millis() + offset;
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedbx::kZoneAmerica_Los_Angeles,
extendedZoneProcessor);
ZonedDateTime dateTime = ZonedDateTime::forEpochSeconds(
fakeEpochSeconds, tzLosAngeles);
disableOptimization(dateTime);
});
printResult(F("ZonedDateTime::forEpochSeconds(Extended_nocache)"),
forEpochSecondsMillis, emptyLoopMillis);
#endif
}
// ZonedDateTime::forEpochSeconds(seconds, tz), Extended cached
static void runZonedDateTimeForEpochSecondsExtendedCached() {
#if ENABLE_EXTENDED_ZONE_PROCESSOR == 0
printNullResult(F("ZonedDateTime::forEpochSeconds(Extended_cached)"));
#else
ExtendedZoneProcessor processor;
extendedZoneProcessor = &processor;
fakeEpochSeconds = millis() & 0xffff;
unsigned long forEpochSecondsMillis = runLambda([]() {
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedbx::kZoneAmerica_Los_Angeles,
extendedZoneProcessor);
ZonedDateTime dateTime = ZonedDateTime::forEpochSeconds(
fakeEpochSeconds, tzLosAngeles);
disableOptimization(dateTime);
});
printResult(F("ZonedDateTime::forEpochSeconds(Extended_cached)"),
forEpochSecondsMillis, emptyLoopMillis);
#endif
}
// ZonedDateTime::forEpochSeconds(seconds, tz), Complete uncached
static void runZonedDateTimeForEpochSecondsCompleteNoCache() {
#if ENABLE_COMPLETE_ZONE_PROCESSOR == 0
printNullResult(F("ZonedDateTime::forEpochSeconds(Complete_nocache)"));
#else
CompleteZoneProcessor processor;
completeZoneProcessor = &processor;
offset = 0;
unsigned long forEpochSecondsMillis = runLambda([]() {
offset = (offset) ? 0 : kTwoYears;
fakeEpochSeconds = millis() + offset;
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedbc::kZoneAmerica_Los_Angeles,
completeZoneProcessor);
ZonedDateTime dateTime = ZonedDateTime::forEpochSeconds(
fakeEpochSeconds, tzLosAngeles);
disableOptimization(dateTime);
});
printResult(F("ZonedDateTime::forEpochSeconds(Complete_nocache)"),
forEpochSecondsMillis, emptyLoopMillis);
#endif
}
// ZonedDateTime::forEpochSeconds(seconds, tz), Complete cached
static void runZonedDateTimeForEpochSecondsCompleteCached() {
#if ENABLE_COMPLETE_ZONE_PROCESSOR == 0
printNullResult(F("ZonedDateTime::forEpochSeconds(Complete_cached)"));
#else
CompleteZoneProcessor processor;
completeZoneProcessor = &processor;
fakeEpochSeconds = millis() & 0xffff;
unsigned long forEpochSecondsMillis = runLambda([]() {
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedbc::kZoneAmerica_Los_Angeles,
completeZoneProcessor);
ZonedDateTime dateTime = ZonedDateTime::forEpochSeconds(
fakeEpochSeconds, tzLosAngeles);
disableOptimization(dateTime);
});
printResult(F("ZonedDateTime::forEpochSeconds(Complete_cached)"),
forEpochSecondsMillis, emptyLoopMillis);
#endif
}
//-----------------------------------------------------------------------------
// ZonedDateTime::forComponents(year, m, d, h, m, s, tz), Basic uncached
static void runZonedDateTimeForComponentsBasicNoCache() {
BasicZoneProcessor processor;
basicZoneProcessor = &processor;
unsigned long forComponentsMillis = runLambda([]() {
year = (year == 2000) ? 2002 : 2000;
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedb::kZoneAmerica_Los_Angeles,
basicZoneProcessor);
ZonedDateTime dateTime = ZonedDateTime::forComponents(
year, 3, 1, 0, 0, 0, tzLosAngeles);
disableOptimization(dateTime);
});
printResult(F("ZonedDateTime::forComponents(Basic_nocache)"),
forComponentsMillis, emptyLoopMillis);
}
// ZonedDateTime::forComponents(year, m, d, h, m, s, tz), Basic cached
static void runZonedDateTimeForComponentsBasicCached() {
BasicZoneProcessor processor;
basicZoneProcessor = &processor;
year = 2000;
unsigned long forComponentsMillis = runLambda([]() {
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedb::kZoneAmerica_Los_Angeles,
basicZoneProcessor);
ZonedDateTime dateTime = ZonedDateTime::forComponents(
year, 3, 1, 0, 0, 0, tzLosAngeles);
disableOptimization(dateTime);
});
printResult(F("ZonedDateTime::forComponents(Basic_cached)"),
forComponentsMillis, emptyLoopMillis);
}
// ZonedDateTime::forComponents(year, m, d, h, m, s, tz), Extended uncached
static void runZonedDateTimeForComponentsExtendedNoCache() {
#if ENABLE_EXTENDED_ZONE_PROCESSOR == 0
printNullResult(F("ZonedDateTime::forComponents(Extended_nocache)"));
#else
ExtendedZoneProcessor processor;
extendedZoneProcessor = &processor;
unsigned long forComponentsMillis = runLambda([]() {
year = (year == 2000) ? 2002 : 2000;
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedbx::kZoneAmerica_Los_Angeles,
extendedZoneProcessor);
ZonedDateTime dateTime = ZonedDateTime::forComponents(
year, 3, 1, 0, 0, 0, tzLosAngeles);
disableOptimization(dateTime);
});
printResult(F("ZonedDateTime::forComponents(Extended_nocache)"),
forComponentsMillis, emptyLoopMillis);
#endif
}
// ZonedDateTime::forComponents(year, m, d, h, m, s, tz), Extended cached
static void runZonedDateTimeForComponentsExtendedCached() {
#if ENABLE_EXTENDED_ZONE_PROCESSOR == 0
printNullResult(F("ZonedDateTime::forComponents(Extended_cached)"));
#else
ExtendedZoneProcessor processor;
extendedZoneProcessor = &processor;
year = 2000;
unsigned long forComponentsMillis = runLambda([]() {
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedbx::kZoneAmerica_Los_Angeles,
extendedZoneProcessor);
ZonedDateTime dateTime = ZonedDateTime::forComponents(
year, 3, 1, 0, 0, 0, tzLosAngeles);
disableOptimization(dateTime);
});
printResult(F("ZonedDateTime::forComponents(Extended_cached)"),
forComponentsMillis, emptyLoopMillis);
#endif
}
// ZonedDateTime::forComponents(year, m, d, h, m, s, tz), Complete uncached
static void runZonedDateTimeForComponentsCompleteNoCache() {
#if ENABLE_COMPLETE_ZONE_PROCESSOR == 0
printNullResult(F("ZonedDateTime::forComponents(Complete_nocache)"));
#else
CompleteZoneProcessor processor;
completeZoneProcessor = &processor;
unsigned long forComponentsMillis = runLambda([]() {
year = (year == 2000) ? 2002 : 2000;
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedbc::kZoneAmerica_Los_Angeles,
completeZoneProcessor);
ZonedDateTime dateTime = ZonedDateTime::forComponents(
year, 3, 1, 0, 0, 0, tzLosAngeles);
disableOptimization(dateTime);
});
printResult(F("ZonedDateTime::forComponents(Complete_nocache)"),
forComponentsMillis, emptyLoopMillis);
#endif
}
// ZonedDateTime::forComponents(year, m, d, h, m, s, tz), Complete cached
static void runZonedDateTimeForComponentsCompleteCached() {
#if ENABLE_COMPLETE_ZONE_PROCESSOR == 0
printNullResult(F("ZonedDateTime::forComponents(Complete_cached)"));
#else
CompleteZoneProcessor processor;
completeZoneProcessor = &processor;
year = 2000;
unsigned long forComponentsMillis = runLambda([]() {
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedbc::kZoneAmerica_Los_Angeles,
completeZoneProcessor);
ZonedDateTime dateTime = ZonedDateTime::forComponents(
year, 3, 1, 0, 0, 0, tzLosAngeles);
disableOptimization(dateTime);
});
printResult(F("ZonedDateTime::forComponents(Complete_cached)"),
forComponentsMillis, emptyLoopMillis);
#endif
}
//-----------------------------------------------------------------------------
// ZonedExtra::forEpochSeconds(seconds, tz), Basic uncached
static void runZonedExtraForEpochSecondsBasicNoCache() {
BasicZoneProcessor processor;
basicZoneProcessor = &processor;
offset = 0;
unsigned long forEpochSecondsMillis = runLambda([]() {
offset = (offset) ? 0 : kTwoYears;
fakeEpochSeconds = millis() + offset;
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedb::kZoneAmerica_Los_Angeles,
basicZoneProcessor);
ZonedExtra extra = ZonedExtra::forEpochSeconds(
fakeEpochSeconds, tzLosAngeles);
disableOptimization(extra);
});
printResult(F("ZonedExtra::forEpochSeconds(Basic_nocache)"),
forEpochSecondsMillis, emptyLoopMillis);
}
// ZonedExtra::forEpochSeconds(seconds, tz), Basic cached
static void runZonedExtraForEpochSecondsBasicCached() {
BasicZoneProcessor processor;
basicZoneProcessor = &processor;
fakeEpochSeconds = millis() & 0xffff;
unsigned long forEpochSecondsMillis = runLambda([]() {
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedb::kZoneAmerica_Los_Angeles,
basicZoneProcessor);
ZonedExtra extra = ZonedExtra::forEpochSeconds(
fakeEpochSeconds, tzLosAngeles);
disableOptimization(extra);
});
printResult(F("ZonedExtra::forEpochSeconds(Basic_cached)"),
forEpochSecondsMillis, emptyLoopMillis);
}
// ZonedExtra::forEpochSeconds(seconds, tz), Extended uncached
static void runZonedExtraForEpochSecondsExtendedNoCache() {
#if ENABLE_EXTENDED_ZONE_PROCESSOR == 0
printNullResult(F("ZonedExtra::forEpochSeconds(Extended_nocache)"));
#else
ExtendedZoneProcessor processor;
extendedZoneProcessor = &processor;
offset = 0;
unsigned long forEpochSecondsMillis = runLambda([]() {
offset = (offset) ? 0 : kTwoYears;
fakeEpochSeconds = millis() + offset;
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedbx::kZoneAmerica_Los_Angeles,
extendedZoneProcessor);
ZonedExtra extra = ZonedExtra::forEpochSeconds(
fakeEpochSeconds, tzLosAngeles);
disableOptimization(extra);
});
printResult(F("ZonedExtra::forEpochSeconds(Extended_nocache)"),
forEpochSecondsMillis, emptyLoopMillis);
#endif
}
// ZonedExtra::forEpochSeconds(seconds, tz), Extended cached
static void runZonedExtraForEpochSecondsExtendedCached() {
#if ENABLE_EXTENDED_ZONE_PROCESSOR == 0
printNullResult(F("ZonedExtra::forEpochSeconds(Extended_cached)"));
#else
ExtendedZoneProcessor processor;
extendedZoneProcessor = &processor;
fakeEpochSeconds = millis() & 0xffff;
unsigned long forEpochSecondsMillis = runLambda([]() {
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedbx::kZoneAmerica_Los_Angeles,
extendedZoneProcessor);
ZonedExtra extra = ZonedExtra::forEpochSeconds(
fakeEpochSeconds, tzLosAngeles);
disableOptimization(extra);
});
printResult(F("ZonedExtra::forEpochSeconds(Extended_cached)"),
forEpochSecondsMillis, emptyLoopMillis);
#endif
}
// ZonedExtra::forEpochSeconds(seconds, tz), Complete uncached
static void runZonedExtraForEpochSecondsCompleteNoCache() {
#if ENABLE_COMPLETE_ZONE_PROCESSOR == 0
printNullResult(F("ZonedExtra::forEpochSeconds(Complete_nocache)"));
#else
CompleteZoneProcessor processor;
completeZoneProcessor = &processor;
offset = 0;
unsigned long forEpochSecondsMillis = runLambda([]() {
offset = (offset) ? 0 : kTwoYears;
fakeEpochSeconds = millis() + offset;
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedbc::kZoneAmerica_Los_Angeles,
completeZoneProcessor);
ZonedExtra extra = ZonedExtra::forEpochSeconds(
fakeEpochSeconds, tzLosAngeles);
disableOptimization(extra);
});
printResult(F("ZonedExtra::forEpochSeconds(Complete_nocache)"),
forEpochSecondsMillis, emptyLoopMillis);
#endif
}
// ZonedExtra::forEpochSeconds(seconds, tz), Complete cached
static void runZonedExtraForEpochSecondsCompleteCached() {
#if ENABLE_COMPLETE_ZONE_PROCESSOR == 0
printNullResult(F("ZonedExtra::forEpochSeconds(Complete_cached)"));
#else
CompleteZoneProcessor processor;
completeZoneProcessor = &processor;
fakeEpochSeconds = millis() & 0xffff;
unsigned long forEpochSecondsMillis = runLambda([]() {
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedbc::kZoneAmerica_Los_Angeles,
completeZoneProcessor);
ZonedExtra extra = ZonedExtra::forEpochSeconds(
fakeEpochSeconds, tzLosAngeles);
disableOptimization(extra);
});
printResult(F("ZonedExtra::forEpochSeconds(Complete_cached)"),
forEpochSecondsMillis, emptyLoopMillis);
#endif
}
//-----------------------------------------------------------------------------
// ZonedExtra::forComponents(year, m, d, h, m, s, tz), Basic uncached
static void runZonedExtraForComponentsBasicNoCache() {
BasicZoneProcessor processor;
basicZoneProcessor = &processor;
unsigned long forComponentsMillis = runLambda([]() {
year = (year == 2000) ? 2002 : 2000;
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedb::kZoneAmerica_Los_Angeles,
basicZoneProcessor);
ZonedExtra extra = ZonedExtra::forComponents(
year, 3, 1, 0, 0, 0, tzLosAngeles);
disableOptimization(extra);
});
printResult(F("ZonedExtra::forComponents(Basic_nocache)"),
forComponentsMillis, emptyLoopMillis);
}
// ZonedExtra::forComponents(year, m, d, h, m, s, tz), Basic cached
static void runZonedExtraForComponentsBasicCached() {
BasicZoneProcessor processor;
basicZoneProcessor = &processor;
year = 2000;
unsigned long forComponentsMillis = runLambda([]() {
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedb::kZoneAmerica_Los_Angeles,
basicZoneProcessor);
ZonedExtra extra = ZonedExtra::forComponents(
year, 3, 1, 0, 0, 0, tzLosAngeles);
disableOptimization(extra);
});
printResult(F("ZonedExtra::forComponents(Basic_cached)"),
forComponentsMillis, emptyLoopMillis);
}
// ZonedExtra::forComponents(year, m, d, h, m, s, tz), Extended uncached
static void runZonedExtraForComponentsExtendedNoCache() {
#if ENABLE_EXTENDED_ZONE_PROCESSOR == 0
printNullResult(F("ZonedExtra::forComponents(Extended_nocache)"));
#else
ExtendedZoneProcessor processor;
extendedZoneProcessor = &processor;
unsigned long forComponentsMillis = runLambda([]() {
year = (year == 2000) ? 2002 : 2000;
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedbx::kZoneAmerica_Los_Angeles,
extendedZoneProcessor);
ZonedExtra extra = ZonedExtra::forComponents(
year, 3, 1, 0, 0, 0, tzLosAngeles);
disableOptimization(extra);
});
printResult(F("ZonedExtra::forComponents(Extended_nocache)"),
forComponentsMillis, emptyLoopMillis);
#endif
}
// ZonedExtra::forComponents(year, m, d, h, m, s, tz), Extended cached
static void runZonedExtraForComponentsExtendedCached() {
#if ENABLE_EXTENDED_ZONE_PROCESSOR == 0
printNullResult(F("ZonedExtra::forComponents(Extended_cached)"));
#else
ExtendedZoneProcessor processor;
extendedZoneProcessor = &processor;
year = 2000;
unsigned long forComponentsMillis = runLambda([]() {
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedbx::kZoneAmerica_Los_Angeles,
extendedZoneProcessor);
ZonedExtra extra = ZonedExtra::forComponents(
year, 3, 1, 0, 0, 0, tzLosAngeles);
disableOptimization(extra);
});
printResult(F("ZonedExtra::forComponents(Extended_cached)"),
forComponentsMillis, emptyLoopMillis);
#endif
}
// ZonedExtra::forComponents(year, m, d, h, m, s, tz), Complete uncached
static void runZonedExtraForComponentsCompleteNoCache() {
#if ENABLE_COMPLETE_ZONE_PROCESSOR == 0
printNullResult(F("ZonedExtra::forComponents(Complete_nocache)"));
#else
CompleteZoneProcessor processor;
completeZoneProcessor = &processor;
unsigned long forComponentsMillis = runLambda([]() {
year = (year == 2000) ? 2002 : 2000;
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedbc::kZoneAmerica_Los_Angeles,
completeZoneProcessor);
ZonedExtra extra = ZonedExtra::forComponents(
year, 3, 1, 0, 0, 0, tzLosAngeles);
disableOptimization(extra);
});
printResult(F("ZonedExtra::forComponents(Complete_nocache)"),
forComponentsMillis, emptyLoopMillis);
#endif
}
// ZonedExtra::forComponents(year, m, d, h, m, s, tz), Complete cached
static void runZonedExtraForComponentsCompleteCached() {
#if ENABLE_COMPLETE_ZONE_PROCESSOR == 0
printNullResult(F("ZonedExtra::forComponents(Complete_cached)"));
#else
CompleteZoneProcessor processor;
completeZoneProcessor = &processor;
year = 2000;
unsigned long forComponentsMillis = runLambda([]() {
TimeZone tzLosAngeles = TimeZone::forZoneInfo(
&zonedbc::kZoneAmerica_Los_Angeles,
completeZoneProcessor);
ZonedExtra extra = ZonedExtra::forComponents(
year, 3, 1, 0, 0, 0, tzLosAngeles);
disableOptimization(extra);
});
printResult(F("ZonedExtra::forComponents(Complete_cached)"),
forComponentsMillis, emptyLoopMillis);
#endif
}
//-----------------------------------------------------------------------------
basic::ZoneRegistrar* basicZoneRegistrar;
void runBasicRegistrarFindIndexForName() {
basic::ZoneRegistrar registrar(kBasicRegistrySize, kBasicRegistry);
basicZoneRegistrar = ®istrar;
unsigned long runMillis = runLambda([]() {
PrintStr<40> printStr;
uint16_t randomIndex = random(kBasicRegistrySize);
const basic::Info::ZoneInfo* info = basicZoneRegistrar->getZoneInfoForIndex(
randomIndex);
BasicZone(info).printNameTo(printStr);
uint16_t index = basicZoneRegistrar->findIndexForName(printStr.cstr());
if (index == basic::ZoneRegistrar::kInvalidIndex) {
SERIAL_PORT_MONITOR.println(F("Not found"));
}
disableOptimization(index);
});
unsigned long emptyLoopMillis = runLambda([]() {
PrintStr<40> printStr;
uint16_t randomIndex = random(kBasicRegistrySize);
const basic::Info::ZoneInfo* info = basicZoneRegistrar->getZoneInfoForIndex(
randomIndex);
BasicZone(info).printNameTo(printStr);
uint16_t len = printStr.length();
const char* s = printStr.cstr();
uint32_t tmp = s[0]
+ ((len > 1) ? ((uint32_t) s[1] << 8) : 0)
+ ((len > 2) ? ((uint32_t) s[2] << 16) : 0)
+ ((len > 3) ? ((uint32_t) s[3] << 24) : 0);
disableOptimization((uint32_t) tmp);
});
printResult(F("BasicZoneRegistrar::findIndexForName(binary)"), runMillis,
emptyLoopMillis);
}
// non-static to allow friend access into basic::ZoneRegistrar
void runBasicRegistrarFindIndexForIdBinary() {
basic::ZoneRegistrar registrar(kBasicRegistrySize, kBasicRegistry);
basicZoneRegistrar = ®istrar;
unsigned long runMillis = runLambda([]() {
uint16_t randomIndex = random(kBasicRegistrySize);
const basic::Info::ZoneInfo* info = basicZoneRegistrar->getZoneInfoForIndex(
randomIndex);
uint32_t zoneId = BasicZone(info).zoneId();
uint16_t index = basicZoneRegistrar->findIndexForIdBinary(zoneId);
if (index == basic::ZoneRegistrar::kInvalidIndex) {
SERIAL_PORT_MONITOR.println(F("Not found"));
}
disableOptimization(index);
});
unsigned long emptyLoopMillis = runLambda([]() {
uint16_t randomIndex = random(kBasicRegistrySize);
const basic::Info::ZoneInfo* info = basicZoneRegistrar->getZoneInfoForIndex(
randomIndex);
uint32_t zoneId = BasicZone(info).zoneId();
disableOptimization(zoneId);
});