Searched refs:DECLARE_LLVM_ATTRIBUTE (Results 1 – 1 of 1) sorted by relevance
/external/llvm/include/llvm/ |
D | Attributes.h | 94 #define DECLARE_LLVM_ATTRIBUTE(name, value) \ macro 98 DECLARE_LLVM_ATTRIBUTE(None,0) ///< No attributes have been set 99 DECLARE_LLVM_ATTRIBUTE(ZExt,1<<0) ///< Zero extended before/after call 100 DECLARE_LLVM_ATTRIBUTE(SExt,1<<1) ///< Sign extended before/after call 101 DECLARE_LLVM_ATTRIBUTE(NoReturn,1<<2) ///< Mark the function as not returning 102 DECLARE_LLVM_ATTRIBUTE(InReg,1<<3) ///< Force argument to be passed in register 103 DECLARE_LLVM_ATTRIBUTE(StructRet,1<<4) ///< Hidden pointer to structure to return 104 DECLARE_LLVM_ATTRIBUTE(NoUnwind,1<<5) ///< Function doesn't unwind stack 105 DECLARE_LLVM_ATTRIBUTE(NoAlias,1<<6) ///< Considered to not alias after call 106 DECLARE_LLVM_ATTRIBUTE(ByVal,1<<7) ///< Pass structure by value [all …]
|