/external/llvm-project/compiler-rt/lib/xray/ |
D | xray_flags.inc | 12 #ifndef XRAY_FLAG 13 #error "Define XRAY_FLAG prior to including this file!" 16 XRAY_FLAG(bool, patch_premain, false, 18 XRAY_FLAG(const char *, xray_logfile_base, "xray-log.", 20 XRAY_FLAG(const char *, xray_mode, "", "Mode to install by default.") 21 XRAY_FLAG(uptr, xray_page_size_override, 0, 26 XRAY_FLAG(bool, xray_naive_log, false, 28 XRAY_FLAG(int, xray_naive_log_func_duration_threshold_us, 5, 31 XRAY_FLAG(int, xray_naive_log_max_stack_depth, 64, 34 XRAY_FLAG(int, xray_naive_log_thread_buffer_size, 1024, [all …]
|
D | xray_profiling_flags.inc | 12 #ifndef XRAY_FLAG 13 #error "Define XRAY_FLAG prior to including this file!" 16 XRAY_FLAG(uptr, per_thread_allocator_max, 16384, 18 XRAY_FLAG(uptr, global_allocator_max, 2 << 24, 20 XRAY_FLAG(uptr, stack_allocator_max, 2 << 20, 22 XRAY_FLAG(int, grace_period_ms, 1, 26 XRAY_FLAG(bool, no_flush, false, 29 XRAY_FLAG(int, buffers_max, 128,
|
D | xray_fdr_flags.inc | 12 #ifndef XRAY_FLAG 13 #error "Define XRAY_FLAG prior to including this file!" 17 XRAY_FLAG(int, func_duration_threshold_us, 5, 20 XRAY_FLAG(int, grace_period_ms, 100, 24 XRAY_FLAG(int, buffer_size, 16384, 26 XRAY_FLAG(int, buffer_max, 100, "Maximum number of buffers in the queue.") 27 XRAY_FLAG(bool, no_file_flush, false,
|
D | xray_basic_flags.inc | 12 #ifndef XRAY_FLAG 13 #error "Define XRAY_FLAG prior to including this file!" 16 XRAY_FLAG(int, func_duration_threshold_us, 5, 19 XRAY_FLAG(int, max_stack_depth, 64, 22 XRAY_FLAG(int, thread_buffer_size, 1024,
|
D | xray_profiling_flags.cpp | 26 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue; in setDefaults() macro 28 #undef XRAY_FLAG in setDefaults() 33 #define XRAY_FLAG(Type, Name, DefaultValue, Description) \ in registerProfilerFlags() macro 36 #undef XRAY_FLAG in registerProfilerFlags()
|
D | xray_basic_flags.cpp | 28 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue; in setDefaults() macro 30 #undef XRAY_FLAG in setDefaults() 35 #define XRAY_FLAG(Type, Name, DefaultValue, Description) \ in registerXRayBasicFlags() macro 38 #undef XRAY_FLAG in registerXRayBasicFlags()
|
D | xray_fdr_flags.cpp | 27 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue; in setDefaults() macro 29 #undef XRAY_FLAG in setDefaults() 33 #define XRAY_FLAG(Type, Name, DefaultValue, Description) \ in registerXRayFDRFlags() macro 36 #undef XRAY_FLAG in registerXRayFDRFlags()
|
D | xray_flags.cpp | 27 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue; in setDefaults() macro 29 #undef XRAY_FLAG in setDefaults() 33 #define XRAY_FLAG(Type, Name, DefaultValue, Description) \ in registerXRayFlags() macro 36 #undef XRAY_FLAG in registerXRayFlags()
|
D | xray_profiling_flags.h | 23 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Type Name; macro 25 #undef XRAY_FLAG
|
D | xray_fdr_flags.h | 23 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Type Name; macro 25 #undef XRAY_FLAG
|
D | xray_basic_flags.h | 23 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Type Name; macro 25 #undef XRAY_FLAG
|
D | xray_flags.h | 23 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Type Name; macro 25 #undef XRAY_FLAG
|