2008-11-14 11:12:16 +01:00
|
|
|
//==- IntrinsicsXCore.td - XCore intrinsics -*- tablegen -*-==//
|
|
|
|
//
|
|
|
|
// Copyright (C) 2008 XMOS
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines all of the XCore-specific intrinsics.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
let TargetPrefix = "xcore" in { // All intrinsics start with "llvm.xcore.".
|
2011-03-15 14:45:47 +01:00
|
|
|
// Miscellaneous instructions.
|
2008-11-14 11:12:16 +01:00
|
|
|
def int_xcore_bitrev : Intrinsic<[llvm_i32_ty],[llvm_i32_ty],[IntrNoMem]>;
|
|
|
|
def int_xcore_getid : Intrinsic<[llvm_i32_ty],[],[IntrNoMem]>;
|
2011-03-15 14:45:47 +01:00
|
|
|
def int_xcore_getps : Intrinsic<[llvm_i32_ty],[llvm_i32_ty]>;
|
|
|
|
def int_xcore_setps : Intrinsic<[],[llvm_i32_ty, llvm_i32_ty]>;
|
|
|
|
def int_xcore_setsr : Intrinsic<[],[llvm_i32_ty]>;
|
|
|
|
def int_xcore_clrsr : Intrinsic<[],[llvm_i32_ty]>;
|
2011-02-03 14:14:25 +01:00
|
|
|
|
|
|
|
// Resource instructions.
|
|
|
|
def int_xcore_getr : Intrinsic<[llvm_anyptr_ty],[llvm_i32_ty]>;
|
|
|
|
def int_xcore_freer : Intrinsic<[],[llvm_anyptr_ty],
|
|
|
|
[NoCapture<0>]>;
|
|
|
|
def int_xcore_in : Intrinsic<[llvm_i32_ty],[llvm_anyptr_ty],[NoCapture<0>]>;
|
|
|
|
def int_xcore_int : Intrinsic<[llvm_i32_ty],[llvm_anyptr_ty],
|
|
|
|
[NoCapture<0>]>;
|
|
|
|
def int_xcore_inct : Intrinsic<[llvm_i32_ty],[llvm_anyptr_ty],
|
|
|
|
[NoCapture<0>]>;
|
|
|
|
def int_xcore_out : Intrinsic<[],[llvm_anyptr_ty, llvm_i32_ty],
|
|
|
|
[NoCapture<0>]>;
|
|
|
|
def int_xcore_outt : Intrinsic<[],[llvm_anyptr_ty, llvm_i32_ty],
|
|
|
|
[NoCapture<0>]>;
|
|
|
|
def int_xcore_outct : Intrinsic<[],[llvm_anyptr_ty, llvm_i32_ty],
|
|
|
|
[NoCapture<0>]>;
|
|
|
|
def int_xcore_chkct : Intrinsic<[],[llvm_anyptr_ty, llvm_i32_ty],
|
|
|
|
[NoCapture<0>]>;
|
|
|
|
def int_xcore_setd : Intrinsic<[],[llvm_anyptr_ty, llvm_i32_ty],
|
|
|
|
[NoCapture<0>]>;
|
2011-02-09 14:22:12 +01:00
|
|
|
def int_xcore_setc : Intrinsic<[],[llvm_anyptr_ty, llvm_i32_ty],
|
|
|
|
[NoCapture<0>]>;
|
2011-02-21 19:23:30 +01:00
|
|
|
def int_xcore_inshr : Intrinsic<[llvm_i32_ty],[llvm_anyptr_ty, llvm_i32_ty],
|
|
|
|
[NoCapture<0>]>;
|
|
|
|
def int_xcore_outshr : Intrinsic<[llvm_i32_ty],[llvm_anyptr_ty, llvm_i32_ty],
|
|
|
|
[NoCapture<0>]>;
|
|
|
|
def int_xcore_setpt : Intrinsic<[],[llvm_anyptr_ty, llvm_i32_ty],
|
|
|
|
[NoCapture<0>]>;
|
|
|
|
def int_xcore_getts : Intrinsic<[llvm_i32_ty],[llvm_anyptr_ty],
|
|
|
|
[NoCapture<0>]>;
|
|
|
|
def int_xcore_syncr : Intrinsic<[],[llvm_anyptr_ty],
|
|
|
|
[NoCapture<0>]>;
|
2011-02-23 15:45:03 +01:00
|
|
|
def int_xcore_settw : Intrinsic<[],[llvm_anyptr_ty, llvm_i32_ty],
|
|
|
|
[NoCapture<0>]>;
|
2011-02-23 17:46:37 +01:00
|
|
|
def int_xcore_setv : Intrinsic<[],[llvm_anyptr_ty, llvm_ptr_ty],
|
|
|
|
[NoCapture<0>]>;
|
2011-02-24 14:39:18 +01:00
|
|
|
def int_xcore_eeu : Intrinsic<[],[llvm_anyptr_ty], [NoCapture<0>]>;
|
2011-03-16 22:56:00 +01:00
|
|
|
def int_xcore_setclk : Intrinsic<[],[llvm_anyptr_ty, llvm_anyptr_ty],
|
|
|
|
[NoCapture<0>, NoCapture<1>]>;
|
|
|
|
def int_xcore_setrdy : Intrinsic<[],[llvm_anyptr_ty, llvm_anyptr_ty],
|
|
|
|
[NoCapture<0>, NoCapture<1>]>;
|
2011-03-17 19:42:05 +01:00
|
|
|
def int_xcore_setpsc : Intrinsic<[],[llvm_anyptr_ty, llvm_i32_ty],
|
|
|
|
[NoCapture<0>]>;
|
2011-02-23 19:35:59 +01:00
|
|
|
|
|
|
|
// Intrinsics for events.
|
|
|
|
def int_xcore_waitevent : Intrinsic<[llvm_ptr_ty],[], [IntrReadMem]>;
|
2011-03-16 19:34:00 +01:00
|
|
|
|
|
|
|
// If any of the resources owned by the thread are ready this returns the
|
|
|
|
// vector of one of the ready resources. If no resources owned by the thread
|
|
|
|
// are ready then the operand passed to the intrinsic is returned.
|
|
|
|
def int_xcore_checkevent : Intrinsic<[llvm_ptr_ty],[llvm_ptr_ty]>;
|
|
|
|
|
2011-02-23 19:52:05 +01:00
|
|
|
def int_xcore_clre : Intrinsic<[],[],[]>;
|
2011-03-31 17:13:13 +02:00
|
|
|
|
|
|
|
// Intrinsics for threads.
|
|
|
|
def int_xcore_getst : Intrinsic <[llvm_anyptr_ty],[llvm_anyptr_ty],
|
|
|
|
[NoCapture<0>]>;
|
|
|
|
def int_xcore_msync : Intrinsic <[],[llvm_anyptr_ty], [NoCapture<0>]>;
|
|
|
|
def int_xcore_ssync : Intrinsic <[],[]>;
|
|
|
|
def int_xcore_mjoin : Intrinsic <[],[llvm_anyptr_ty], [NoCapture<0>]>;
|
|
|
|
def int_xcore_initsp : Intrinsic <[],[llvm_anyptr_ty, llvm_ptr_ty],
|
|
|
|
[NoCapture<0>]>;
|
|
|
|
def int_xcore_initpc : Intrinsic <[],[llvm_anyptr_ty, llvm_ptr_ty],
|
|
|
|
[NoCapture<0>]>;
|
|
|
|
def int_xcore_initlr : Intrinsic <[],[llvm_anyptr_ty, llvm_ptr_ty],
|
|
|
|
[NoCapture<0>]>;
|
|
|
|
def int_xcore_initcp : Intrinsic <[],[llvm_anyptr_ty, llvm_ptr_ty],
|
|
|
|
[NoCapture<0>]>;
|
|
|
|
def int_xcore_initdp : Intrinsic <[],[llvm_anyptr_ty, llvm_ptr_ty],
|
|
|
|
[NoCapture<0>]>;
|
2008-11-14 11:12:16 +01:00
|
|
|
}
|