2007-11-08 17:20:05 +00:00
|
|
|
//===- IntrinsicsARM.td - Defines ARM intrinsics -----------*- tablegen -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 22:59:10 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-11-08 17:20:05 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines all of the ARM-specific intrinsics.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// TLS
|
|
|
|
|
|
|
|
let TargetPrefix = "arm" in { // All intrinsics start with "llvm.arm.".
|
|
|
|
def int_arm_thread_pointer : GCCBuiltin<"__builtin_thread_pointer">,
|
2008-11-13 09:08:33 +00:00
|
|
|
Intrinsic<[llvm_ptr_ty], [], [IntrNoMem]>;
|
2007-11-08 17:20:05 +00:00
|
|
|
}
|