1 //===-- IntrinsicLowering.h - Intrinsic Function Lowering -------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines the IntrinsicLowering interface. This interface allows
11 // addition of domain-specific or front-end specific intrinsics to LLVM without
12 // having to modify all of the C backend or interpreter.
14 //===----------------------------------------------------------------------===//
16 #ifndef LLVM_CODEGEN_INTRINSICLOWERING_H
17 #define LLVM_CODEGEN_INTRINSICLOWERING_H
19 #include "llvm/IR/Intrinsics.h"
26 class IntrinsicLowering {
32 explicit IntrinsicLowering(const DataLayout &DL) : DL(DL), Warned(false) {}
34 /// AddPrototypes - This method, if called, causes all of the prototypes
35 /// that might be needed by an intrinsic lowering implementation to be
36 /// inserted into the module specified.
37 void AddPrototypes(Module &M);
39 /// LowerIntrinsicCall - This method replaces a call with the LLVM function
40 /// which should be used to implement the specified intrinsic function call.
41 /// If an intrinsic function must be implemented by the code generator
42 /// (such as va_start), this function should print a message and abort.
44 /// Otherwise, if an intrinsic function call can be lowered, the code to
45 /// implement it (often a call to a non-intrinsic function) is inserted
46 /// _after_ the call instruction and the call is deleted. The caller must
47 /// be capable of handling this kind of change.
49 void LowerIntrinsicCall(CallInst *CI);
51 /// LowerToByteSwap - Replace a call instruction into a call to bswap
52 /// intrinsic. Return false if it has determined the call is not a
53 /// simple integer bswap.
54 static bool LowerToByteSwap(CallInst *CI);