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
|
# Copyright (C) 2011-2012, International Business Machines
# Corporation and others. All Rights Reserved.
#
# file name: dependencies.txt
#
# created on: 2011may26
# created by: Markus W. Scherer
# Standard library symbols used by ICU --------------------------------------- #
system_symbols:
deps
# C
PIC system_debug malloc_functions c_strings c_string_formatting
floating_point trigonometry
stdlib_qsort
pthread system_locale
stdio_input stdio_output file_io readlink_function dir_io mmap_functions dlfcn
# C++
cplusplus iostream
group: PIC
# Position-Independent Code (-fPIC) requires a Global Offset Table.
_GLOBAL_OFFSET_TABLE_
group: system_debug
__assert_fail __stack_chk_fail
group: malloc_functions
free malloc realloc
group: c_strings
isspace
__ctype_b_loc # for <ctype.h>
# We must not use tolower and toupper because they are system-locale-sensitive (Turkish i).
strlen strchr strrchr strstr strcmp strncmp strcpy strncpy strcat strncat
memcmp memcpy memmove memset
# Additional symbols in an optimized build.
__strcpy_chk __strncpy_chk __strcat_chk __strncat_chk
__rawmemchr __memcpy_chk __memmove_chk
group: c_string_formatting
atoi atol strtod strtol strtoul
sprintf
# Additional symbols in an optimized build.
__sprintf_chk
group: floating_point
floor ceil modf fmod log pow sqrt
group: trigonometry
acos asin atan atan2 cos sin tan
# Additional symbols in an optimized build.
sincos
group: stdlib_qsort
qsort
group: pthread
pthread_mutex_init pthread_mutex_destroy pthread_mutex_lock pthread_mutex_unlock
group: system_locale
getenv
nl_langinfo setlocale
gettimeofday localtime_r tzname tzset __timezone
group: stdio_input
fopen fclose fgets fread fseek ftell rewind feof fileno
# Additional symbols in an optimized build.
__fgets_chk __fread_chk
group: stdio_output
fflush fwrite
stdout
group: file_io
open close stat
# Additional symbols in an optimized build.
__xstat
group: readlink_function
readlink # putil.cpp uprv_tzname() calls this in a hack to get the time zone name
group: dir_io
opendir closedir readdir # for a hack to get the time zone name
group: mmap_functions # for memory-mapped data loading
mmap munmap
group: dlfcn
dlopen dlclose dlsym # called by putil.o only for icuplug.o
group: cplusplus
__dynamic_cast
# The compiler generates references to the global operator delete
# even when no code actually uses it.
# ICU must not _use_ the global operator delete.
"operator delete(void*)"
# ICU also must not use the global operator new.
# "operator new[](unsigned long)"
# _Unwind_Resume is related to exceptions:
# "A call to this routine is inserted as the end of a landing pad that performs cleanup,
# but does not resume normal execution. It causes unwinding to proceed further."
# (Linux Standard Base Specification 1.3)
# Even though ICU does not actually use (nor handle) exceptions.
_Unwind_Resume
group: iostream
"std::basic_ios<char, std::char_traits<char> >::clear(std::_Ios_Iostate)"
"std::basic_ios<char, std::char_traits<char> >::eof() const"
"std::basic_ios<char, std::char_traits<char> >::fail() const"
"std::basic_ostream<char, std::char_traits<char> >& std::operator<< <std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*)"
std::istream::get()
std::istream::putback(char)
# Additional symbols in an optimized build.
"std::basic_ostream<char, std::char_traits<char> >& std::__ostream_insert<char, std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*, long)"
# ICU common library --------------------------------------------------------- #
library: stubdata
stubdata.o # Exports icudt48_dat.
library: common
# All files in the common library are listed in its dependencies.
deps
# Libraries and groups that the common library depends on.
date_interval
breakiterator
uts46 filterednormalizer2 normalizer2 canonical_iterator
normlzr unormcmp unorm_it unorm
idna2003 stringprep
stringenumeration
unistr_core unistr_props unistr_case unistr_case_locale unistr_titlecase_brkiter unistr_cnv
uniset_core uniset_props uniset_closure usetiter uset uset_props
uiter
ucasemap ucasemap_titlecase_brkiter script_runs
uprops ubidi_props ucase uscript
ubidi ushape
resourcebundle service_registration resbund_cnv ures_cnv icudataver ucat
loclikely
conversion converter_selector ucnv_set ucnvdisp
messagepattern
icu_utility icu_utility_with_props
ustr_wcs
ucharstriebuilder ucharstrieiterator
bytestriebuilder bytestrieiterator
hashtable uhash uvector uvector32 uvector64 ulist
propsvec utrie2 utrie2_builder
sort
uinit utypes errorcode
icuplug
platform
group: date_interval # class DateInterval
dtintrv.o
deps
platform
group: breakiterator
# We could try to split off a breakiterator_builder group,
# but we still need uniset_props for code like in the ThaiBreakEngine constructor
# which does
# fThaiWordSet.applyPattern(UNICODE_STRING_SIMPLE("[[:Thai:]&[:LineBreak=SA:]]"), status)
brkiter.o brkeng.o ubrk.o
rbbi.o rbbinode.o rbbiscan.o rbbisetb.o rbbistbl.o rbbitblb.o
rbbidata.o rbbirb.o
triedict.o dictbe.o
deps
resourcebundle service_registration
schriter utext uniset_core uniset_props
uhash ustack utrie
uvector32 # for triedict.o
group: unormcmp # unorm_compare()
unormcmp.o
deps
filterednormalizer2
uniset_props # for uniset_getUnicode32Instance()
ucase
group: unorm_it # UNormIterator
unorm_it.o
deps
unorm uiter
group: unorm # old normalization C API
unorm.o
deps
filterednormalizer2
uniset_props # for uniset_getUnicode32Instance()
uiter
group: normlzr # old Normalizer C++ class
normlzr.o
deps
filterednormalizer2
uniset_props # for uniset_getUnicode32Instance()
schriter
group: uts46
uts46.o
deps
normalizer2 punycode
uchar # for u_charType() (via U_GET_GC_MASK(c))
ubidi_props # for u_charDirection() & ubidi_getJoiningType()
unistr_core
stringpiece bytestream
group: filterednormalizer2
filterednormalizer2.o
deps
normalizer2
group: idna2003
uidna.o
deps
stringprep punycode
group: stringprep
usprep.o
deps
unorm # could change to use filterednormalizer2 directly for Unicode 3.2 normalization
normalizer2
ubidi_props
group: canonical_iterator
caniter.o
deps
normalizer2 usetiter
group: normalizer2
normalizer2.o
normalizer2impl.o
deps
uniset_core
unistr_core
utrie2_builder # for building CanonIterData & FCD
uvector # for building CanonIterData
uhash # for the instance cache
udata
group: punycode
punycode.o
deps
platform
group: uset_props
uset_props.o
deps
uniset_closure uniset_props uniset_core
group: uset
uset.o
deps
uniset_core
group: uniset_closure
uniset_closure.o
deps
uniset_core unistr_case_locale unistr_titlecase_brkiter
group: uniset_props
uniset_props.o ruleiter.o
deps
uniset_core uprops unistr_case
parsepos
resourcebundle
propname unames
group: parsepos
parsepos.o
deps
platform
group: usetiter # UnicodeSetIterator
usetiter.o
deps
uniset_core
group: uniset_core
unifilt.o unifunct.o
uniset.o bmpset.o unisetspan.o
deps
patternprops
unistr_core icu_utility
uvector
group: icu_utility_with_props
util_props.o
deps
icu_utility uchar ucase
group: icu_utility
util.o
deps
unistr_core patternprops
group: utext
utext.o
deps
unistr_core ucase
group: stringenumeration
ustrenum.o uenum.o
deps
unistr_core
group: schriter
schriter.o
# The UCharCharacterIterator implements virtual void getText(UnicodeString& result)
# so it depends on UnicodeString, therefore it makes little sense to split
# schriter and uchriter into separate groups.
uchriter.o
deps
chariter unistr_core
group: chariter
chariter.o
deps
platform
group: uiter
uiter.o
deps
platform
group: unistr_cnv
unistr_cnv.o
deps
conversion unistr_core
group: unistr_core
unistr.o
deps
ustrtrns appendable
group: uscript
uscript.o # uscript_getCode() accepts a locale ID and loads its script code data
deps
propname resourcebundle
group: uprops
uprops.o
deps
normalizer2
uchar
ubidi_props
unistr_case ustring_case # only for case folding
ucase
group: propname
propname.o
deps
bytestrie
group: unames
unames.o
deps
uchar udata
group: script_runs
usc_impl.o
deps
uchar
group: uchar
uchar.o
deps
utrie2
group: messagepattern # for MessageFormat and tools
messagepattern.o
deps
patternprops unistr_core
group: patternprops
patternprops.o
deps
PIC
group: ushape
ushape.o
deps
ubidi_props
group: ubidi
ubidi.o ubidiln.o ubidiwrt.o
deps
ubidi_props
uchar # for doWriteReverse() which uses IS_COMBINING(u_charType(c))
group: ubidi_props
ubidi_props.o
deps
utrie2
group: unistr_props
unistr_props.o
deps
unistr_core uchar
group: unistr_case_locale
unistr_case_locale.o
deps
unistr_case ustring_case_locale
group: unistr_case
unistr_case.o
deps
unistr_core
ustring_case
group: unistr_titlecase_brkiter
unistr_titlecase_brkiter.o
deps
ustr_titlecase_brkiter
group: ustr_titlecase_brkiter
ustr_titlecase_brkiter.o
deps
breakiterator
ustring_case_locale ucase
group: ucasemap_titlecase_brkiter
ucasemap_titlecase_brkiter.o
deps
ucasemap breakiterator utext
group: ucasemap
ucasemap.o
deps
ustring_case
resourcebundle # uloc_getName() etc.
group: ustring_case_locale
ustrcase_locale.o
deps
ustring_case
resourcebundle # for uloc_getDefault()
group: ustring_case
ustrcase.o
deps
ucase
group: ucase
ucase.o
deps
unistr_core utrie2
group: uinit
uinit.o
deps
ucnv_io icuplug
group: converter_selector
ucnvsel.o
deps
conversion propsvec utrie2_builder uset ucnv_set
group: ucnvdisp # ucnv_getDisplayName()
ucnvdisp.o
deps
conversion resourcebundle
group: ucnv_set # ucnv_getUnicodeSet
ucnv_set.o
deps
uset
group: conversion
ustr_cnv.o
ucnv.o ucnv_cnv.o ucnv_bld.o ucnv_cb.o ucnv_err.o
ucnv_ct.o
ucnvmbcs.o ucnv_ext.o
ucnvhz.o ucnvisci.o ucnv_lmb.o ucnv2022.o
ucnvlat1.o ucnv_u7.o ucnv_u8.o ucnv_u16.o ucnv_u32.o
ucnvbocu.o ucnvscsu.o
deps
ucnv_io
group: ucnv_io
ucnv_io.o
deps
sort stringenumeration udata
group: service_registration
serv.o servnotf.o servlkf.o servlk.o servls.o servrbf.o servslkf.o
locutil.o
deps
locale_display_names resourcebundle
hashtable uvector
group: ucat # message-catalog-like API
ucat.o
deps
resourcebundle
group: locale_display_names
locdispnames.o
deps
locresdata
group: icudataver # u_getDataVersion()
icudataver.o
deps
resourcebundle
group: loclikely
loclikely.o
deps
resourcebundle
group: locresdata
# This was intended to collect locale functions that load resource bundle data.
# See the resourcebundle group about what else loads data.
locresdata.o
deps
resourcebundle
group: resbund_cnv # paths are Unicode strings
resbund_cnv.o
deps
conversion resourcebundle ures_cnv
group: ures_cnv # ures_openU, path is a Unicode string
ures_cnv.o
deps
conversion resourcebundle
group: resourcebundle
resbund.o uresbund.o uresdata.o
locavailable.o
# uloc_tag.c converts between old ICU/LDML/CLDR locale IDs and newer BCP 47 IDs.
# It uses data from resource bundles for some of the mappings.
# We might want to generate .c files for that data, to #include rather than load,
# to minimize dependencies from this code.
# Then we could separate this higher-level locale ID code from the resource bundle code.
uloc.o uloc_tag.o
# Even basic locid.cpp via Locale constructors and Locale::getDefault()
# depend on canonicalization and data loading.
# We can probably only disentangle basic locale ID handling from resource bundle code
# by hardcoding all of the locale ID data.
locid.o locmap.o wintz.o
# Do we need class LocaleBased? http://bugs.icu-project.org/trac/ticket/8608
locbased.o
deps
udata ucol_swp
sort stringenumeration uhash
group: udata
udata.o ucmndata.o udatamem.o
umapfile.o
deps
uhash charstr stringpiece platform stubdata
file_io mmap_functions
group: ucharstriebuilder
ucharstriebuilder.o
deps
ucharstrie stringtriebuilder sort
unistr_core
group: ucharstrieiterator
ucharstrieiterator.o
deps
ucharstrie unistr_core uvector32
group: ucharstrie
ucharstrie.o
deps
platform
group: bytestriebuilder
bytestriebuilder.o
deps
bytestrie stringtriebuilder sort
charstr stringpiece
group: bytestrieiterator
bytestrieiterator.o
deps
bytestrie charstr uvector32
group: bytestrie
bytestrie.o
deps
platform
group: stringtriebuilder
stringtriebuilder.o
deps
uhash
group: propsvec
propsvec.o
deps
sort utrie2_builder
group: utrie2_builder
utrie2_builder.o
deps
platform
utrie2
utrie # for utrie2_fromUTrie()
ucol_swp # for utrie_swap()
group: utrie2
utrie2.o
deps
platform
group: utrie # Callers should use utrie2 instead.
utrie.o
deps
platform
group: hashtable # Maps UnicodeString to value.
uhash_us.o
deps
unistr_core
uhash
group: uhash
uhash.o
deps
platform
group: ustack
ustack.o
deps
uvector
group: uvector
uvector.o
deps
platform
sort # for UVector::sort()
group: uvector32
uvectr32.o
deps
platform
group: uvector64
uvectr64.o
deps
platform
group: ulist
ulist.o
deps
platform
group: sort
uarrsort.o
deps
platform
group: ustr_wcs
ustr_wcs.o
deps
ustrtrns # on platforms where wchar_t is UTF-32
# platform -- on other platforms
group: ustrtrns
ustrtrns.o
deps
platform
group: charstr
charstr.o
deps
unistr_core # for CharString::appendInvariantChars(const UnicodeString &s, UErrorCode &errorCode)
platform
group: stringpiece
stringpiece.o
deps
PIC c_strings
group: bytestream
bytestream.o
deps
platform
group: appendable
appendable.o
deps
platform
group: icuplug
icuplug.o
deps
platform
group: ucol_swp
ucol_swp.o
deps
platform
group: errorcode # ErrorCode base class
errorcode.o
deps
utypes
platform
group: utypes # u_errorName()
utypes.o
group: platform
# Files in the "platform" group.
cmemory.o uobject.o
cstring.o cwchar.o uinvchar.o
ustring.o # Other platform files really just need u_strlen
ustrfmt.o # uprv_itou
utf_impl.o
putil.o
ucln_cmn.o # for putil.o which calls ucln_common_registerCleanup
udataswp.o # for uinvchar.o; TODO: move uinvchar.o swapper functions to udataswp.o?
umath.o
mutex.o umutex.o
utrace.o
deps
# The "platform" group has no ICU dependencies.
PIC system_debug malloc_functions c_strings c_string_formatting
floating_point pthread system_locale
stdio_input readlink_function dir_io
dlfcn # Move related code into icuplug.c?
cplusplus
# ICU i18n library ----------------------------------------------------------- #
library: i18n
deps
localedata charset_detector spoof_detection
alphabetic_index collation formatting formattable_cnv regex regex_cnv translit
universal_time_scale
uclean_i18n
group: localedata
ulocdata.o
deps
uniset_props resourcebundle
uset_props # TODO: change to using C++ UnicodeSet, remove this dependency
group: charset_detector
csdetect.o csmatch.o csr2022.o csrecog.o csrmbcs.o csrsbcs.o csrucode.o csrutf8.o inputext.o ucsdet.o
deps
conversion
uclean_i18n
group: spoof_detection
uspoof.o uspoof_build.o uspoof_conf.o uspoof_impl.o uspoof_wsconf.o
deps
uniset_props regex unorm uscript
group: alphabetic_index
alphaindex.o
deps
collation localedata
uclean_i18n
group: collation
bocsu.o coleitr.o coll.o colldata.o sortkey.o tblcoll.o ucol.o
ucol_bld.o ucol_cnt.o ucol_elm.o ucol_res.o ucol_sit.o ucol_tok.o ucol_wgt.o ucoleitr.o
bms.o bmsearch.o search.o stsearch.o usearch.o
deps
common # TODO: Could be narrower.
uclean_i18n
group: formatting
# TODO: Try to subdivide this ball of wax.
# locale_display_names2
locdspnm.o
# currency
ucurr.o
# currencyformat
curramt.o currfmt.o currpinf.o currunit.o
# decimalformat
dcfmtsym.o decfmtst.o decimfmt.o
numfmt.o numsys.o unum.o winnmfmt.o
# rbnf
nfrs.o nfrule.o nfsubs.o rbnf.o
# measureformat
measfmt.o
# dateformat
astro.o buddhcal.o calendar.o cecal.o chnsecal.o coptccal.o ethpccal.o
gregocal.o gregoimp.o hebrwcal.o indiancal.o islamcal.o japancal.o persncal.o taiwncal.o
ucal.o
basictz.o olsontz.o rbtz.o simpletz.o timezone.o tzrule.o tztrans.o
vtzone.o vzone.o wintzimpl.o zonemeta.o zrule.o ztrans.o
tzfmt.o tzgnames.o tznames.o tznames_impl.o
datefmt.o dtfmtsym.o dtitvfmt.o dtitvinf.o dtptngen.o dtrule.o reldtfmt.o
smpdtfmt.o smpdtfst.o udateintervalformat.o udatpg.o windtfmt.o
udat.o
tmunit.o tmutamt.o tmutfmt.o
# messageformat
choicfmt.o msgfmt.o plurfmt.o selfmt.o umsg.o
deps
digitlist formattable format
pluralrules
collation # for rbnf
common
floating_point # sqrt() for astro.o
trigonometry # for astro.o
stdlib_qsort # for ucurr.o (which does not use ICU's uarrsort.o)
uclean_i18n
group: digitlist
digitlst.o decContext.o decNumber.o
deps
charstr stringpiece unistr_core
group: formattable
fmtable.o
measure.o
deps
unistr_core digitlist stringpiece charstr
group: formattable_cnv
fmtable_cnv.o
deps
formattable unistr_cnv conversion
group: format
format.o fphdlimp.o fpositer.o
deps
resourcebundle parsepos unistr_core uvector32
group: pluralrules
plurrule.o upluralrules.o
deps
patternprops resourcebundle uvector
unistr_case_locale
group: regex_cnv
uregexc.o
deps
regex unistr_cnv
group: regex
regexcmp.o regexst.o regextxt.o regeximp.o rematch.o repattrn.o uregex.o
deps
uniset_closure utext uvector32 uvector64 ustack
breakiterator
unistr_core
uinit # TODO: Really needed?
uclean_i18n
group: translit
anytrans.o brktrans.o casetrn.o cpdtrans.o name2uni.o uni2name.o nortrans.o remtrans.o titletrn.o tolowtrn.o toupptrn.o
esctrn.o unesctrn.o nultrans.o
funcrepl.o quant.o rbt.o rbt_data.o rbt_pars.o rbt_rule.o rbt_set.o strmatch.o strrepl.o translit.o transreg.o tridpars.o utrans.o
deps
common
formatting # for Transliterator::getDisplayName()
uclean_i18n
group: universal_time_scale
utmscale.o
group: uclean_i18n
ucln_in.o
deps
platform
# ICU io library ------------------------------------------------------------- #
library: io
deps
ustdio ustream uclean_io
group: ustdio
locbund.o sprintf.o sscanf.o ufile.o ufmt_cmn.o uprintf.o uprntf_p.o uscanf.o uscanf_p.o ustdio.o
deps
formatting conversion translit
uclean_io
stdio_output
group: ustream
ustream.o
deps
unistr_cnv
uchar # for u_isWhitespace()
iostream
group: uclean_io
ucln_io.o
deps
platform
|