DebugOptions.h 1.1 KB

1234567891011121314151617181920212223242526272829
  1. //===-- DebugOptions.h - Global Command line opt for libSupport *- C++ -*-===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. //
  9. // This file defines the entry point to initialize the options registered on the
  10. // command line for libSupport, this is internal to libSupport.
  11. //
  12. //===----------------------------------------------------------------------===//
  13. namespace llvm {
  14. // These are invoked internally before parsing command line options.
  15. // This enables lazy-initialization of all the globals in libSupport, instead
  16. // of eagerly loading everything on program startup.
  17. void initDebugCounterOptions();
  18. void initGraphWriterOptions();
  19. void initSignalsOptions();
  20. void initStatisticOptions();
  21. void initTimerOptions();
  22. void initTypeSizeOptions();
  23. void initWithColorOptions();
  24. void initDebugOptions();
  25. void initRandomSeedOptions();
  26. } // namespace llvm