#=----------------------------------------------------------------------------=# # OS on Kaleid # # # # Desc: # # # # # # Copyright © 2018-2020 The OS/K Team # # # # This file is part of OS/K. # # # # OS/K is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # # the Free Software Foundation, either version 3 of the License, or # # any later version. # # # # OS/K is distributed in the hope that it will be useful, # # but WITHOUT ANY WARRANTY# without even the implied warranty of # # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # # GNU General Public License for more details. # # # # You should have received a copy of the GNU General Public License # # along with OS/K. If not, see . # #=----------------------------------------------------------------------------=# . ├── boot │   ├── grub │   │   └── grub.cfg │   └── loader │   ├── cpu │   │   ├── cpu32.inc │   │   └── cpu.inc │   ├── io │   │   └── terminal.inc │   ├── mem │   │   ├── management.inc │   │   └── structures.inc │   ├── multiboot │   │   ├── check.inc │   │   └── header.inc │   └── loader.asm ├── build │   ├── create_disk.sh │   ├── install-os-k.sh │   └── kernel.ld ├── cross-cc │   ├── include │   ├── lib │   │   └── gcc │   │   └── x86_64-elf │   │   └── 10.1.0 │   │   ├── include │   │   │   ├── adxintrin.h │   │   │   ├── ammintrin.h │   │   │   ├── avx2intrin.h │   │   │   ├── avx5124fmapsintrin.h │   │   │   ├── avx5124vnniwintrin.h │   │   │   ├── avx512bf16intrin.h │   │   │   ├── avx512bf16vlintrin.h │   │   │   ├── avx512bitalgintrin.h │   │   │   ├── avx512bwintrin.h │   │   │   ├── avx512cdintrin.h │   │   │   ├── avx512dqintrin.h │   │   │   ├── avx512erintrin.h │   │   │   ├── avx512fintrin.h │   │   │   ├── avx512ifmaintrin.h │   │   │   ├── avx512ifmavlintrin.h │   │   │   ├── avx512pfintrin.h │   │   │   ├── avx512vbmi2intrin.h │   │   │   ├── avx512vbmi2vlintrin.h │   │   │   ├── avx512vbmiintrin.h │   │   │   ├── avx512vbmivlintrin.h │   │   │   ├── avx512vlbwintrin.h │   │   │   ├── avx512vldqintrin.h │   │   │   ├── avx512vlintrin.h │   │   │   ├── avx512vnniintrin.h │   │   │   ├── avx512vnnivlintrin.h │   │   │   ├── avx512vp2intersectintrin.h │   │   │   ├── avx512vp2intersectvlintrin.h │   │   │   ├── avx512vpopcntdqintrin.h │   │   │   ├── avx512vpopcntdqvlintrin.h │   │   │   ├── avxintrin.h │   │   │   ├── bmi2intrin.h │   │   │   ├── bmiintrin.h │   │   │   ├── bmmintrin.h │   │   │   ├── cet.h │   │   │   ├── cetintrin.h │   │   │   ├── cldemoteintrin.h │   │   │   ├── clflushoptintrin.h │   │   │   ├── clwbintrin.h │   │   │   ├── clzerointrin.h │   │   │   ├── cpuid.h │   │   │   ├── cross-stdarg.h │   │   │   ├── emmintrin.h │   │   │   ├── enqcmdintrin.h │   │   │   ├── f16cintrin.h │   │   │   ├── float.h │   │   │   ├── fma4intrin.h │   │   │   ├── fmaintrin.h │   │   │   ├── fxsrintrin.h │   │   │   ├── gcov.h │   │   │   ├── gfniintrin.h │   │   │   ├── ia32intrin.h │   │   │   ├── immintrin.h │   │   │   ├── iso646.h │   │   │   ├── lwpintrin.h │   │   │   ├── lzcntintrin.h │   │   │   ├── mm3dnow.h │   │   │   ├── mmintrin.h │   │   │   ├── mm_malloc.h │   │   │   ├── movdirintrin.h │   │   │   ├── mwaitxintrin.h │   │   │   ├── nmmintrin.h │   │   │   ├── pconfigintrin.h │   │   │   ├── pkuintrin.h │   │   │   ├── pmmintrin.h │   │   │   ├── popcntintrin.h │   │   │   ├── prfchwintrin.h │   │   │   ├── rdseedintrin.h │   │   │   ├── rtmintrin.h │   │   │   ├── sgxintrin.h │   │   │   ├── shaintrin.h │   │   │   ├── smmintrin.h │   │   │   ├── stdalign.h │   │   │   ├── stdarg.h │   │   │   ├── stdatomic.h │   │   │   ├── stdbool.h │   │   │   ├── stddef.h │   │   │   ├── stdfix.h │   │   │   ├── stdint-gcc.h │   │   │   ├── stdint.h │   │   │   ├── stdnoreturn.h │   │   │   ├── tbmintrin.h │   │   │   ├── tgmath.h │   │   │   ├── tmmintrin.h │   │   │   ├── unwind.h │   │   │   ├── vaesintrin.h │   │   │   ├── varargs.h │   │   │   ├── vpclmulqdqintrin.h │   │   │   ├── waitpkgintrin.h │   │   │   ├── wbnoinvdintrin.h │   │   │   ├── wmmintrin.h │   │   │   ├── x86intrin.h │   │   │   ├── xmmintrin.h │   │   │   ├── xopintrin.h │   │   │   ├── xsavecintrin.h │   │   │   ├── xsaveintrin.h │   │   │   ├── xsaveoptintrin.h │   │   │   ├── xsavesintrin.h │   │   │   └── xtestintrin.h │   │   ├── include-fixed │   │   │   ├── limits.h │   │   │   ├── README │   │   │   └── syslimits.h │   │   ├── install-tools │   │   │   ├── include │   │   │   │   ├── limits.h │   │   │   │   └── README │   │   │   ├── fixinc_list │   │   │   ├── gsyslimits.h │   │   │   ├── macro_list │   │   │   └── mkheaders.conf │   │   ├── no-red-zone │   │   │   ├── crtbegin.o │   │   │   ├── crtend.o │   │   │   ├── libgcc.a │   │   │   └── libgcov.a │   │   ├── plugin │   │   │   ├── include │   │   │   │   ├── ada │   │   │   │   │   └── gcc-interface │   │   │   │   │   └── ada-tree.def │   │   │   │   ├── c-family │   │   │   │   │   ├── c-common.def │   │   │   │   │   ├── c-common.h │   │   │   │   │   ├── c-objc.h │   │   │   │   │   ├── c-pragma.h │   │   │   │   │   └── c-pretty-print.h │   │   │   │   ├── config │   │   │   │   │   ├── i386 │   │   │   │   │   │   ├── att.h │   │   │   │   │   │   ├── biarch64.h │   │   │   │   │   │   ├── i386elf.h │   │   │   │   │   │   ├── i386.h │   │   │   │   │   │   ├── i386-opts.h │   │   │   │   │   │   ├── i386-protos.h │   │   │   │   │   │   ├── stringop.def │   │   │   │   │   │   ├── unix.h │   │   │   │   │   │   ├── x86-64.h │   │   │   │   │   │   └── x86-tune.def │   │   │   │   │   ├── dbxelf.h │   │   │   │   │   ├── elfos.h │   │   │   │   │   ├── initfini-array.h │   │   │   │   │   ├── newlib-stdint.h │   │   │   │   │   └── vxworks-dummy.h │   │   │   │   ├── cp │   │   │   │   │   ├── cp-tree.def │   │   │   │   │   ├── cp-tree.h │   │   │   │   │   ├── cxx-pretty-print.h │   │   │   │   │   ├── name-lookup.h │   │   │   │   │   ├── operators.def │   │   │   │   │   └── type-utils.h │   │   │   │   ├── d │   │   │   │   │   └── d-tree.def │   │   │   │   ├── objc │   │   │   │   │   └── objc-tree.def │   │   │   │   ├── addresses.h │   │   │   │   ├── alias.h │   │   │   │   ├── align.h │   │   │   │   ├── alloc-pool.h │   │   │   │   ├── all-tree.def │   │   │   │   ├── ansidecl.h │   │   │   │   ├── array-traits.h │   │   │   │   ├── asan.h │   │   │   │   ├── attribs.h │   │   │   │   ├── auto-host.h │   │   │   │   ├── auto-profile.h │   │   │   │   ├── backend.h │   │   │   │   ├── basic-block.h │   │   │   │   ├── bb-reorder.h │   │   │   │   ├── b-header-vars │   │   │   │   ├── bitmap.h │   │   │   │   ├── brig-builtins.def │   │   │   │   ├── builtin-attrs.def │   │   │   │   ├── builtins.def │   │   │   │   ├── builtins.h │   │   │   │   ├── builtin-types.def │   │   │   │   ├── bversion.h │   │   │   │   ├── calls.h │   │   │   │   ├── ccmp.h │   │   │   │   ├── cfganal.h │   │   │   │   ├── cfgbuild.h │   │   │   │   ├── cfgcleanup.h │   │   │   │   ├── cfgexpand.h │   │   │   │   ├── cfg-flags.def │   │   │   │   ├── cfg.h │   │   │   │   ├── cfghooks.h │   │   │   │   ├── cfgloop.h │   │   │   │   ├── cfgloopmanip.h │   │   │   │   ├── cfgrtl.h │   │   │   │   ├── cgraph.h │   │   │   │   ├── cif-code.def │   │   │   │   ├── collect2-aix.h │   │   │   │   ├── collect2.h │   │   │   │   ├── collect-utils.h │   │   │   │   ├── color-macros.h │   │   │   │   ├── conditions.h │   │   │   │   ├── configargs.h │   │   │   │   ├── config.h │   │   │   │   ├── context.h │   │   │   │   ├── convert.h │   │   │   │   ├── coretypes.h │   │   │   │   ├── coroutine-builtins.def │   │   │   │   ├── coverage.h │   │   │   │   ├── cppbuiltin.h │   │   │   │   ├── cppdefault.h │   │   │   │   ├── cpplib.h │   │   │   │   ├── cselib.h │   │   │   │   ├── c-tree.h │   │   │   │   ├── data-streamer.h │   │   │   │   ├── dbgcnt.def │   │   │   │   ├── dbgcnt.h │   │   │   │   ├── dbxout.h │   │   │   │   ├── dce.h │   │   │   │   ├── ddg.h │   │   │   │   ├── debug.h │   │   │   │   ├── defaults.h │   │   │   │   ├── df.h │   │   │   │   ├── dfp.h │   │   │   │   ├── diagnostic-color.h │   │   │   │   ├── diagnostic-core.h │   │   │   │   ├── diagnostic.def │   │   │   │   ├── diagnostic-event-id.h │   │   │   │   ├── diagnostic.h │   │   │   │   ├── diagnostic-metadata.h │   │   │   │   ├── diagnostic-path.h │   │   │   │   ├── diagnostic-url.h │   │   │   │   ├── digraph.h │   │   │   │   ├── dojump.h │   │   │   │   ├── dominance.h │   │   │   │   ├── domwalk.h │   │   │   │   ├── double-int.h │   │   │   │   ├── dump-context.h │   │   │   │   ├── dumpfile.h │   │   │   │   ├── dwarf2asm.h │   │   │   │   ├── dwarf2out.h │   │   │   │   ├── edit-context.h │   │   │   │   ├── emit-rtl.h │   │   │   │   ├── errors.h │   │   │   │   ├── escaped_string.h │   │   │   │   ├── et-forest.h │   │   │   │   ├── except.h │   │   │   │   ├── explow.h │   │   │   │   ├── expmed.h │   │   │   │   ├── expr.h │   │   │   │   ├── fibonacci_heap.h │   │   │   │   ├── file-find.h │   │   │   │   ├── filenames.h │   │   │   │   ├── file-prefix-map.h │   │   │   │   ├── fixed-value.h │   │   │   │   ├── flags.h │   │   │   │   ├── flag-types.h │   │   │   │   ├── fold-const-call.h │   │   │   │   ├── fold-const.h │   │   │   │   ├── function-abi.h │   │   │   │   ├── function.h │   │   │   │   ├── gcc.h │   │   │   │   ├── gcc-plugin.h │   │   │   │   ├── gcc-rich-location.h │   │   │   │   ├── gcc-symtab.h │   │   │   │   ├── gcov-counter.def │   │   │   │   ├── gcov-io.h │   │   │   │   ├── gcse-common.h │   │   │   │   ├── gcse.h │   │   │   │   ├── generic-match.h │   │   │   │   ├── gengtype.h │   │   │   │   ├── genrtl.h │   │   │   │   ├── gensupport.h │   │   │   │   ├── ggc.h │   │   │   │   ├── ggc-internal.h │   │   │   │   ├── gimple-builder.h │   │   │   │   ├── gimple.def │   │   │   │   ├── gimple-expr.h │   │   │   │   ├── gimple-fold.h │   │   │   │   ├── gimple.h │   │   │   │   ├── gimple-iterator.h │   │   │   │   ├── gimple-low.h │   │   │   │   ├── gimple-match.h │   │   │   │   ├── gimple-predict.h │   │   │   │   ├── gimple-pretty-print.h │   │   │   │   ├── gimple-ssa-evrp-analyze.h │   │   │   │   ├── gimple-ssa.h │   │   │   │   ├── gimple-ssa-warn-restrict.h │   │   │   │   ├── gimple-streamer.h │   │   │   │   ├── gimple-walk.h │   │   │   │   ├── gimplify.h │   │   │   │   ├── gimplify-me.h │   │   │   │   ├── glimits.h │   │   │   │   ├── graphds.h │   │   │   │   ├── graph.h │   │   │   │   ├── graphite.h │   │   │   │   ├── graphviz.h │   │   │   │   ├── gsstruct.def │   │   │   │   ├── gstab.h │   │   │   │   ├── gsyms.h │   │   │   │   ├── gsyslimits.h │   │   │   │   ├── gtm-builtins.def │   │   │   │   ├── gtype-desc.h │   │   │   │   ├── hard-reg-set.h │   │   │   │   ├── hash-map.h │   │   │   │   ├── hash-map-traits.h │   │   │   │   ├── hash-set.h │   │   │   │   ├── hashtab.h │   │   │   │   ├── hash-table.h │   │   │   │   ├── hash-traits.h │   │   │   │   ├── highlev-plugin-common.h │   │   │   │   ├── hooks.h │   │   │   │   ├── hosthooks-def.h │   │   │   │   ├── hosthooks.h │   │   │   │   ├── hsa-brig-format.h │   │   │   │   ├── hsa-builtins.def │   │   │   │   ├── hsa-common.h │   │   │   │   ├── hw-doloop.h │   │   │   │   ├── hwint.h │   │   │   │   ├── ifcvt.h │   │   │   │   ├── inchash.h │   │   │   │   ├── incpath.h │   │   │   │   ├── input.h │   │   │   │   ├── insn-addr.h │   │   │   │   ├── insn-attr-common.h │   │   │   │   ├── insn-attr.h │   │   │   │   ├── insn-codes.h │   │   │   │   ├── insn-constants.h │   │   │   │   ├── insn-flags.h │   │   │   │   ├── insn-modes.h │   │   │   │   ├── insn-modes-inline.h │   │   │   │   ├── insn-notes.def │   │   │   │   ├── internal-fn.def │   │   │   │   ├── internal-fn.h │   │   │   │   ├── intl.h │   │   │   │   ├── int-vector-builder.h │   │   │   │   ├── ipa-fnsummary.h │   │   │   │   ├── ipa-icf-gimple.h │   │   │   │   ├── ipa-icf.h │   │   │   │   ├── ipa-inline.h │   │   │   │   ├── ipa-param-manipulation.h │   │   │   │   ├── ipa-predicate.h │   │   │   │   ├── ipa-prop.h │   │   │   │   ├── ipa-reference.h │   │   │   │   ├── ipa-ref.h │   │   │   │   ├── ipa-utils.h │   │   │   │   ├── ira.h │   │   │   │   ├── ira-int.h │   │   │   │   ├── is-a.h │   │   │   │   ├── json.h │   │   │   │   ├── langhooks-def.h │   │   │   │   ├── langhooks.h │   │   │   │   ├── lcm.h │   │   │   │   ├── libfuncs.h │   │   │   │   ├── libiberty.h │   │   │   │   ├── limitx.h │   │   │   │   ├── limity.h │   │   │   │   ├── line-map.h │   │   │   │   ├── loop-unroll.h │   │   │   │   ├── lower-subreg.h │   │   │   │   ├── lra.h │   │   │   │   ├── lra-int.h │   │   │   │   ├── lto-compress.h │   │   │   │   ├── lto-section-names.h │   │   │   │   ├── lto-streamer.h │   │   │   │   ├── machmode.def │   │   │   │   ├── machmode.h │   │   │   │   ├── md5.h │   │   │   │   ├── memmodel.h │   │   │   │   ├── memory-block.h │   │   │   │   ├── mem-stats.h │   │   │   │   ├── mem-stats-traits.h │   │   │   │   ├── mode-classes.def │   │   │   │   ├── obstack.h │   │   │   │   ├── omp-builtins.def │   │   │   │   ├── omp-expand.h │   │   │   │   ├── omp-general.h │   │   │   │   ├── omp-grid.h │   │   │   │   ├── omp-low.h │   │   │   │   ├── omp-offload.h │   │   │   │   ├── omp-simd-clone.h │   │   │   │   ├── optabs.def │   │   │   │   ├── optabs.h │   │   │   │   ├── optabs-libfuncs.h │   │   │   │   ├── optabs-query.h │   │   │   │   ├── optabs-tree.h │   │   │   │   ├── optinfo-emit-json.h │   │   │   │   ├── optinfo.h │   │   │   │   ├── options.h │   │   │   │   ├── opt-problem.h │   │   │   │   ├── opts-diagnostic.h │   │   │   │   ├── opts.h │   │   │   │   ├── opt-suggestions.h │   │   │   │   ├── ordered-hash-map.h │   │   │   │   ├── output.h │   │   │   │   ├── passes.def │   │   │   │   ├── pass-instances.def │   │   │   │   ├── pass_manager.h │   │   │   │   ├── plugin-api.h │   │   │   │   ├── plugin.def │   │   │   │   ├── plugin.h │   │   │   │   ├── plugin-version.h │   │   │   │   ├── poly-int.h │   │   │   │   ├── poly-int-types.h │   │   │   │   ├── predict.def │   │   │   │   ├── predict.h │   │   │   │   ├── prefix.h │   │   │   │   ├── pretty-print.h │   │   │   │   ├── print-rtl.h │   │   │   │   ├── print-tree.h │   │   │   │   ├── profile-count.h │   │   │   │   ├── profile.h │   │   │   │   ├── range.h │   │   │   │   ├── range-op.h │   │   │   │   ├── read-md.h │   │   │   │   ├── read-rtl-function.h │   │   │   │   ├── real.h │   │   │   │   ├── realmpfr.h │   │   │   │   ├── recog.h │   │   │   │   ├── regcprop.h │   │   │   │   ├── reg-notes.def │   │   │   │   ├── regrename.h │   │   │   │   ├── regset.h │   │   │   │   ├── regs.h │   │   │   │   ├── reload.h │   │   │   │   ├── resource.h │   │   │   │   ├── rtl.def │   │   │   │   ├── rtl-error.h │   │   │   │   ├── rtl.h │   │   │   │   ├── rtlhash.h │   │   │   │   ├── rtlhooks-def.h │   │   │   │   ├── rtl-iter.h │   │   │   │   ├── rtx-vector-builder.h │   │   │   │   ├── run-rtl-passes.h │   │   │   │   ├── safe-ctype.h │   │   │   │   ├── sanitizer.def │   │   │   │   ├── sbitmap.h │   │   │   │   ├── sched-int.h │   │   │   │   ├── selftest-diagnostic.h │   │   │   │   ├── selftest.h │   │   │   │   ├── selftest-rtl.h │   │   │   │   ├── sel-sched-dump.h │   │   │   │   ├── sel-sched.h │   │   │   │   ├── sel-sched-ir.h │   │   │   │   ├── sese.h │   │   │   │   ├── shortest-paths.h │   │   │   │   ├── shrink-wrap.h │   │   │   │   ├── signop.h │   │   │   │   ├── sparseset.h │   │   │   │   ├── spellcheck.h │   │   │   │   ├── spellcheck-tree.h │   │   │   │   ├── splay-tree.h │   │   │   │   ├── sreal.h │   │   │   │   ├── ssa.h │   │   │   │   ├── ssa-iterators.h │   │   │   │   ├── stab.def │   │   │   │   ├── statistics.h │   │   │   │   ├── stmt.h │   │   │   │   ├── stor-layout.h │   │   │   │   ├── streamer-hooks.h │   │   │   │   ├── stringpool.h │   │   │   │   ├── substring-locations.h │   │   │   │   ├── symbol-summary.h │   │   │   │   ├── symtab.h │   │   │   │   ├── sync-builtins.def │   │   │   │   ├── system.h │   │   │   │   ├── target.def │   │   │   │   ├── target-def.h │   │   │   │   ├── target-globals.h │   │   │   │   ├── target.h │   │   │   │   ├── target-hooks-macros.h │   │   │   │   ├── target-insns.def │   │   │   │   ├── targhooks.h │   │   │   │   ├── timevar.def │   │   │   │   ├── timevar.h │   │   │   │   ├── tm.h │   │   │   │   ├── tm_p.h │   │   │   │   ├── tm-preds.h │   │   │   │   ├── toplev.h │   │   │   │   ├── tracer.h │   │   │   │   ├── trans-mem.h │   │   │   │   ├── tree-affine.h │   │   │   │   ├── tree-cfgcleanup.h │   │   │   │   ├── tree-cfg.h │   │   │   │   ├── tree-check.h │   │   │   │   ├── tree-chrec.h │   │   │   │   ├── tree-core.h │   │   │   │   ├── tree-data-ref.h │   │   │   │   ├── tree.def │   │   │   │   ├── tree-dfa.h │   │   │   │   ├── tree-diagnostic.h │   │   │   │   ├── tree-dump.h │   │   │   │   ├── tree-eh.h │   │   │   │   ├── tree.h │   │   │   │   ├── tree-hasher.h │   │   │   │   ├── tree-hash-traits.h │   │   │   │   ├── tree-if-conv.h │   │   │   │   ├── tree-inline.h │   │   │   │   ├── tree-into-ssa.h │   │   │   │   ├── tree-iterator.h │   │   │   │   ├── tree-nested.h │   │   │   │   ├── tree-object-size.h │   │   │   │   ├── tree-outof-ssa.h │   │   │   │   ├── tree-parloops.h │   │   │   │   ├── tree-pass.h │   │   │   │   ├── tree-phinodes.h │   │   │   │   ├── tree-pretty-print.h │   │   │   │   ├── tree-scalar-evolution.h │   │   │   │   ├── tree-sra.h │   │   │   │   ├── tree-ssa-address.h │   │   │   │   ├── tree-ssa-alias.h │   │   │   │   ├── tree-ssa-ccp.h │   │   │   │   ├── tree-ssa-coalesce.h │   │   │   │   ├── tree-ssa-dce.h │   │   │   │   ├── tree-ssa-dom.h │   │   │   │   ├── tree-ssa-dse.h │   │   │   │   ├── tree-ssa.h │   │   │   │   ├── tree-ssa-live.h │   │   │   │   ├── tree-ssa-loop.h │   │   │   │   ├── tree-ssa-loop-ivopts.h │   │   │   │   ├── tree-ssa-loop-manip.h │   │   │   │   ├── tree-ssa-loop-niter.h │   │   │   │   ├── tree-ssanames.h │   │   │   │   ├── tree-ssa-operands.h │   │   │   │   ├── tree-ssa-propagate.h │   │   │   │   ├── tree-ssa-sccvn.h │   │   │   │   ├── tree-ssa-scopedtables.h │   │   │   │   ├── tree-ssa-strlen.h │   │   │   │   ├── tree-ssa-ter.h │   │   │   │   ├── tree-ssa-threadedge.h │   │   │   │   ├── tree-ssa-threadupdate.h │   │   │   │   ├── tree-stdarg.h │   │   │   │   ├── tree-streamer.h │   │   │   │   ├── treestruct.def │   │   │   │   ├── tree-switch-conversion.h │   │   │   │   ├── tree-vector-builder.h │   │   │   │   ├── tree-vectorizer.h │   │   │   │   ├── tree-vrp.h │   │   │   │   ├── tristate.h │   │   │   │   ├── tsan.h │   │   │   │   ├── tsystem.h │   │   │   │   ├── typeclass.h │   │   │   │   ├── typed-splay-tree.h │   │   │   │   ├── ubsan.h │   │   │   │   ├── valtrack.h │   │   │   │   ├── value-prof.h │   │   │   │   ├── value-range.h │   │   │   │   ├── varasm.h │   │   │   │   ├── vec.h │   │   │   │   ├── vec-perm-indices.h │   │   │   │   ├── vector-builder.h │   │   │   │   ├── version.h │   │   │   │   ├── vmsdbg.h │   │   │   │   ├── vr-values.h │   │   │   │   ├── vtable-verify.h │   │   │   │   ├── wide-int-bitmask.h │   │   │   │   ├── wide-int.h │   │   │   │   ├── wide-int-print.h │   │   │   │   ├── xcoff.h │   │   │   │   └── xcoffout.h │   │   │   └── gtype.state │   │   ├── crtbegin.o │   │   ├── crtend.o │   │   ├── libgcc.a │   │   └── libgcov.a │   ├── libexec │   │   └── gcc │   │   └── x86_64-elf │   │   └── 10.1.0 │   │   ├── install-tools │   │   │   ├── fixincl │   │   │   ├── fixinc.sh │   │   │   ├── mkheaders │   │   │   └── mkinstalldirs │   │   ├── plugin │   │   │   └── gengtype │   │   ├── cc1 │   │   ├── cc1plus │   │   ├── collect2 │   │   ├── liblto_plugin.la │   │   ├── liblto_plugin.so -> liblto_plugin.so.0.0.0 │   │   ├── liblto_plugin.so.0 -> liblto_plugin.so.0.0.0 │   │   ├── liblto_plugin.so.0.0.0 │   │   ├── lto1 │   │   └── lto-wrapper │   ├── share │   │   ├── info │   │   │   ├── as.info │   │   │   ├── bfd.info │   │   │   ├── binutils.info │   │   │   ├── cpp.info │   │   │   ├── cppinternals.info │   │   │   ├── dir │   │   │   ├── gcc.info │   │   │   ├── gccinstall.info │   │   │   ├── gccint.info │   │   │   ├── gprof.info │   │   │   └── ld.info │   │   └── man │   │   ├── man1 │   │   │   ├── x86_64-elf-addr2line.1 │   │   │   ├── x86_64-elf-ar.1 │   │   │   ├── x86_64-elf-as.1 │   │   │   ├── x86_64-elf-c++filt.1 │   │   │   ├── x86_64-elf-cpp.1 │   │   │   ├── x86_64-elf-dlltool.1 │   │   │   ├── x86_64-elf-elfedit.1 │   │   │   ├── x86_64-elf-g++.1 │   │   │   ├── x86_64-elf-gcc.1 │   │   │   ├── x86_64-elf-gcov.1 │   │   │   ├── x86_64-elf-gcov-dump.1 │   │   │   ├── x86_64-elf-gcov-tool.1 │   │   │   ├── x86_64-elf-gprof.1 │   │   │   ├── x86_64-elf-ld.1 │   │   │   ├── x86_64-elf-lto-dump.1 │   │   │   ├── x86_64-elf-nm.1 │   │   │   ├── x86_64-elf-objcopy.1 │   │   │   ├── x86_64-elf-objdump.1 │   │   │   ├── x86_64-elf-ranlib.1 │   │   │   ├── x86_64-elf-readelf.1 │   │   │   ├── x86_64-elf-size.1 │   │   │   ├── x86_64-elf-strings.1 │   │   │   ├── x86_64-elf-strip.1 │   │   │   ├── x86_64-elf-windmc.1 │   │   │   └── x86_64-elf-windres.1 │   │   └── man7 │   │   ├── fsf-funding.7 │   │   ├── gfdl.7 │   │   └── gpl.7 │   └── x86_64-elf │   └── lib │   └── ldscripts │   ├── elf32_x86_64.x │   ├── elf32_x86_64.xbn │   ├── elf32_x86_64.xc │   ├── elf32_x86_64.xce │   ├── elf32_x86_64.xd │   ├── elf32_x86_64.xdc │   ├── elf32_x86_64.xdce │   ├── elf32_x86_64.xde │   ├── elf32_x86_64.xdw │   ├── elf32_x86_64.xdwe │   ├── elf32_x86_64.xe │   ├── elf32_x86_64.xn │   ├── elf32_x86_64.xr │   ├── elf32_x86_64.xs │   ├── elf32_x86_64.xsc │   ├── elf32_x86_64.xsce │   ├── elf32_x86_64.xse │   ├── elf32_x86_64.xsw │   ├── elf32_x86_64.xswe │   ├── elf32_x86_64.xu │   ├── elf32_x86_64.xw │   ├── elf32_x86_64.xwe │   ├── elf_i386.x │   ├── elf_i386.xbn │   ├── elf_i386.xc │   ├── elf_i386.xce │   ├── elf_i386.xd │   ├── elf_i386.xdc │   ├── elf_i386.xdce │   ├── elf_i386.xde │   ├── elf_i386.xdw │   ├── elf_i386.xdwe │   ├── elf_i386.xe │   ├── elf_i386.xn │   ├── elf_i386.xr │   ├── elf_i386.xs │   ├── elf_i386.xsc │   ├── elf_i386.xsce │   ├── elf_i386.xse │   ├── elf_i386.xsw │   ├── elf_i386.xswe │   ├── elf_i386.xu │   ├── elf_i386.xw │   ├── elf_i386.xwe │   ├── elf_iamcu.x │   ├── elf_iamcu.xbn │   ├── elf_iamcu.xc │   ├── elf_iamcu.xce │   ├── elf_iamcu.xd │   ├── elf_iamcu.xdc │   ├── elf_iamcu.xdce │   ├── elf_iamcu.xde │   ├── elf_iamcu.xdw │   ├── elf_iamcu.xdwe │   ├── elf_iamcu.xe │   ├── elf_iamcu.xn │   ├── elf_iamcu.xr │   ├── elf_iamcu.xs │   ├── elf_iamcu.xsc │   ├── elf_iamcu.xsce │   ├── elf_iamcu.xse │   ├── elf_iamcu.xsw │   ├── elf_iamcu.xswe │   ├── elf_iamcu.xu │   ├── elf_iamcu.xw │   ├── elf_iamcu.xwe │   ├── elf_k1om.x │   ├── elf_k1om.xbn │   ├── elf_k1om.xc │   ├── elf_k1om.xce │   ├── elf_k1om.xd │   ├── elf_k1om.xdc │   ├── elf_k1om.xdce │   ├── elf_k1om.xde │   ├── elf_k1om.xdw │   ├── elf_k1om.xdwe │   ├── elf_k1om.xe │   ├── elf_k1om.xn │   ├── elf_k1om.xr │   ├── elf_k1om.xs │   ├── elf_k1om.xsc │   ├── elf_k1om.xsce │   ├── elf_k1om.xse │   ├── elf_k1om.xsw │   ├── elf_k1om.xswe │   ├── elf_k1om.xu │   ├── elf_k1om.xw │   ├── elf_k1om.xwe │   ├── elf_l1om.x │   ├── elf_l1om.xbn │   ├── elf_l1om.xc │   ├── elf_l1om.xce │   ├── elf_l1om.xd │   ├── elf_l1om.xdc │   ├── elf_l1om.xdce │   ├── elf_l1om.xde │   ├── elf_l1om.xdw │   ├── elf_l1om.xdwe │   ├── elf_l1om.xe │   ├── elf_l1om.xn │   ├── elf_l1om.xr │   ├── elf_l1om.xs │   ├── elf_l1om.xsc │   ├── elf_l1om.xsce │   ├── elf_l1om.xse │   ├── elf_l1om.xsw │   ├── elf_l1om.xswe │   ├── elf_l1om.xu │   ├── elf_l1om.xw │   ├── elf_l1om.xwe │   ├── elf_x86_64.x │   ├── elf_x86_64.xbn │   ├── elf_x86_64.xc │   ├── elf_x86_64.xce │   ├── elf_x86_64.xd │   ├── elf_x86_64.xdc │   ├── elf_x86_64.xdce │   ├── elf_x86_64.xde │   ├── elf_x86_64.xdw │   ├── elf_x86_64.xdwe │   ├── elf_x86_64.xe │   ├── elf_x86_64.xn │   ├── elf_x86_64.xr │   ├── elf_x86_64.xs │   ├── elf_x86_64.xsc │   ├── elf_x86_64.xsce │   ├── elf_x86_64.xse │   ├── elf_x86_64.xsw │   ├── elf_x86_64.xswe │   ├── elf_x86_64.xu │   ├── elf_x86_64.xw │   └── elf_x86_64.xwe ├── docs │   ├── boot │   │   ├── grub │   │   │   └── grub.desc │   │   └── loader │   │   ├── cpu │   │   ├── io │   │   └── loader.desc │   ├── kaleid │   │   ├── drivers │   │   ├── kernel │   │   ├── libbuf │   │   └── libc │   ├── COPYING.GFDL │   └── Documentation ├── include │   ├── drivers │   │   └── ata.h │   ├── kernel │   │   ├── ex │   │   │   ├── lock.h │   │   │   └── malloc.h │   │   ├── init │   │   │   ├── boot.h │   │   │   └── mboot.h │   │   ├── io │   │   │   ├── acpi.h │   │   │   ├── cursor.h │   │   │   ├── keyb.h │   │   │   ├── pci.h │   │   │   ├── spkr.h │   │   │   └── vga.h │   │   ├── ke │   │   │   ├── cpuid.h │   │   │   ├── idt.h │   │   │   ├── proc.h │   │   │   ├── sched.h │   │   │   ├── spinlock.h │   │   │   └── time.h │   │   ├── mm │   │   │   ├── gdt.h │   │   │   ├── heap.h │   │   │   ├── malloc.h │   │   │   ├── map.h │   │   │   ├── paging.h │   │   │   └── palloc.h │   │   ├── po │   │   │   └── shtdwn.h │   │   └── sh │   │   ├── argv.h │   │   └── shell.h │   ├── asm.h │   ├── errno.h │   ├── kernel.h │   ├── libbuf.h │   ├── libc.h │   ├── liblist.h │   └── vers.h ├── kaleid │   ├── drivers │   │   ├── ata.asm │   │   └── ata.c │   ├── kernel │   │   ├── init │   │   │   ├── info.c │   │   │   ├── init.c │   │   │   ├── ssp.c │   │   │   └── table.c │   │   ├── io │   │   │   ├── acpi.c │   │   │   ├── cursor.c │   │   │   ├── keyb.c │   │   │   ├── pci.c │   │   │   ├── scan.c │   │   │   ├── spkr.c │   │   │   └── vga.c │   │   ├── ke │   │   │   ├── cpuf.asm │   │   │   ├── cpuf.inc │   │   │   ├── cpuid.c │   │   │   ├── idt.c │   │   │   ├── isr.asm │   │   │   ├── log.c │   │   │   ├── panic.c │   │   │   ├── pit.c │   │   │   └── rtc.c │   │   ├── mm │   │   │   ├── gdt.asm │   │   │   ├── gdt.c │   │   │   ├── heap.c │   │   │   ├── malloc.c │   │   │   ├── map.c │   │   │   ├── paging.asm │   │   │   ├── paging.c │   │   │   └── palloc.c │   │   ├── po │   │   │   └── shtdwn.c │   │   ├── ps │   │   │   └── sched.c │   │   └── sh │   │   ├── argv.c │   │   ├── musage.c │   │   ├── shcmds.c │   │   ├── shell.c │   │   ├── shell.h │   │   └── testcmds.c │   ├── libbuf │   │   ├── bclose.c │   │   ├── bflush.c │   │   ├── bgetc.c │   │   ├── bmisc.c │   │   ├── bopen.c │   │   ├── bprint.c │   │   ├── bputc.c │   │   ├── bread.c │   │   ├── bscan.c │   │   ├── bscroll.c │   │   └── bwrite.c │   └── libc │   ├── atoi.c │   ├── ctype.c │   ├── errno.c │   ├── itoa.c │   ├── mem.c │   ├── rand.c │   ├── sprintf.c │   ├── string.c │   └── strtol.c ├── AUTHORS ├── ChangeLog ├── COPYING ├── cross-cc.tar.xz ├── Makefile ├── ProjectTree └── README.md 74 directories, 845 files