mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	This effectively reverts revert 219707. After fixing the test to work with new function name format and renamed intrinsic. Reviewed-by: Tom Stellard <tom@stellard.net> Signed-off-by: Jan Vesely <jan.vesely@rutgers.edu> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219710 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			83 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			TableGen
		
	
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			TableGen
		
	
	
	
	
	
| //===- IntrinsicsR600.td - Defines R600 intrinsics ---------*- tablegen -*-===//
 | |
| //
 | |
| //                     The LLVM Compiler Infrastructure
 | |
| //
 | |
| // This file is distributed under the University of Illinois Open Source
 | |
| // License. See LICENSE.TXT for details.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| //
 | |
| // This file defines all of the R600-specific intrinsics.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| 
 | |
| let TargetPrefix = "r600" in {
 | |
| 
 | |
| class R600ReadPreloadRegisterIntrinsic<string name>
 | |
|   : Intrinsic<[llvm_i32_ty], [], [IntrNoMem]>,
 | |
|     GCCBuiltin<name>;
 | |
| 
 | |
| multiclass R600ReadPreloadRegisterIntrinsic_xyz<string prefix> {
 | |
|   def _x : R600ReadPreloadRegisterIntrinsic<!strconcat(prefix, "_x")>;
 | |
|   def _y : R600ReadPreloadRegisterIntrinsic<!strconcat(prefix, "_y")>;
 | |
|   def _z : R600ReadPreloadRegisterIntrinsic<!strconcat(prefix, "_z")>;
 | |
| }
 | |
| 
 | |
| defm int_r600_read_global_size : R600ReadPreloadRegisterIntrinsic_xyz <
 | |
|                                        "__builtin_r600_read_global_size">;
 | |
| defm int_r600_read_local_size : R600ReadPreloadRegisterIntrinsic_xyz <
 | |
|                                        "__builtin_r600_read_local_size">;
 | |
| defm int_r600_read_ngroups : R600ReadPreloadRegisterIntrinsic_xyz <
 | |
|                                        "__builtin_r600_read_ngroups">;
 | |
| defm int_r600_read_tgid : R600ReadPreloadRegisterIntrinsic_xyz <
 | |
|                                        "__builtin_r600_read_tgid">;
 | |
| defm int_r600_read_tidig : R600ReadPreloadRegisterIntrinsic_xyz <
 | |
|                                        "__builtin_r600_read_tidig">;
 | |
| } // End TargetPrefix = "r600"
 | |
| 
 | |
| let TargetPrefix = "AMDGPU" in {
 | |
| 
 | |
| class AMDGPUReadPreloadRegisterIntrinsic<string name>
 | |
|   : Intrinsic<[llvm_i32_ty], [], [IntrNoMem]>,
 | |
|     GCCBuiltin<name>;
 | |
| 
 | |
| def int_AMDGPU_div_scale : GCCBuiltin<"__builtin_amdgpu_div_scale">,
 | |
|   // 1st parameter: Numerator
 | |
|   // 2nd parameter: Denominator
 | |
|   // 3rd parameter: Constant to select select between first and
 | |
|   //                second. (0 = first, 1 = second).
 | |
|   Intrinsic<[llvm_anyfloat_ty, llvm_i1_ty],
 | |
|             [LLVMMatchType<0>, LLVMMatchType<0>, llvm_i1_ty],
 | |
|             [IntrNoMem]>;
 | |
| 
 | |
| def int_AMDGPU_div_fmas : GCCBuiltin<"__builtin_amdgpu_div_fmas">,
 | |
|   Intrinsic<[llvm_anyfloat_ty],
 | |
|             [LLVMMatchType<0>, LLVMMatchType<0>, LLVMMatchType<0>],
 | |
|             [IntrNoMem]>;
 | |
| 
 | |
| def int_AMDGPU_div_fixup : GCCBuiltin<"__builtin_amdgpu_div_fixup">,
 | |
|   Intrinsic<[llvm_anyfloat_ty],
 | |
|             [LLVMMatchType<0>, LLVMMatchType<0>, LLVMMatchType<0>],
 | |
|             [IntrNoMem]>;
 | |
| 
 | |
| def int_AMDGPU_trig_preop : GCCBuiltin<"__builtin_amdgpu_trig_preop">,
 | |
|   Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>, llvm_i32_ty],
 | |
|             [IntrNoMem]>;
 | |
| 
 | |
| def int_AMDGPU_rcp : GCCBuiltin<"__builtin_amdgpu_rcp">,
 | |
|   Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>], [IntrNoMem]>;
 | |
| 
 | |
| def int_AMDGPU_rsq : GCCBuiltin<"__builtin_amdgpu_rsq">,
 | |
|   Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>], [IntrNoMem]>;
 | |
| 
 | |
| def int_AMDGPU_rsq_clamped : GCCBuiltin<"__builtin_amdgpu_rsq_clamped">,
 | |
|   Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>], [IntrNoMem]>;
 | |
| 
 | |
| def int_AMDGPU_ldexp : GCCBuiltin<"__builtin_amdgpu_ldexp">,
 | |
|   Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>, llvm_i32_ty], [IntrNoMem]>;
 | |
| 
 | |
| def int_AMDGPU_read_workdim : AMDGPUReadPreloadRegisterIntrinsic <
 | |
|                                        "__builtin_amdgpu_read_workdim">;
 | |
| 
 | |
| } // End TargetPrefix = "AMDGPU"
 |