forked from OSchip/llvm-project
				
			
		
			
				
	
	
		
			23 lines
		
	
	
		
			841 B
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			841 B
		
	
	
	
		
			C++
		
	
	
	
//===-- xray_flags.inc ------------------------------------------*- C++ -*-===//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
// This file is distributed under the University of Illinois Open Source
 | 
						|
// License. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
//
 | 
						|
// XRay runtime flags.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
#ifndef XRAY_FLAG
 | 
						|
#error "Define XRAY_FLAG prior to including this file!"
 | 
						|
#endif
 | 
						|
 | 
						|
XRAY_FLAG(bool, patch_premain, true,
 | 
						|
          "Whether to patch instrumentation points before main.")
 | 
						|
XRAY_FLAG(bool, xray_naive_log, true,
 | 
						|
          "Whether to install the naive log implementation.")
 | 
						|
XRAY_FLAG(const char *, xray_logfile_base, "xray-log.",
 | 
						|
          "Filename base for the xray logfile.")
 |