Home | History | Annotate | Download | only in IR

Lines Matching refs:DestTy

2146                             LLVMTypeRef DestTy, const char *Name) {
2147 return wrap(unwrap(B)->CreateTrunc(unwrap(Val), unwrap(DestTy), Name));
2151 LLVMTypeRef DestTy, const char *Name) {
2152 return wrap(unwrap(B)->CreateZExt(unwrap(Val), unwrap(DestTy), Name));
2156 LLVMTypeRef DestTy, const char *Name) {
2157 return wrap(unwrap(B)->CreateSExt(unwrap(Val), unwrap(DestTy), Name));
2161 LLVMTypeRef DestTy, const char *Name) {
2162 return wrap(unwrap(B)->CreateFPToUI(unwrap(Val), unwrap(DestTy), Name));
2166 LLVMTypeRef DestTy, const char *Name) {
2167 return wrap(unwrap(B)->CreateFPToSI(unwrap(Val), unwrap(DestTy), Name));
2171 LLVMTypeRef DestTy, const char *Name) {
2172 return wrap(unwrap(B)->CreateUIToFP(unwrap(Val), unwrap(DestTy), Name));
2176 LLVMTypeRef DestTy, const char *Name) {
2177 return wrap(unwrap(B)->CreateSIToFP(unwrap(Val), unwrap(DestTy), Name));
2181 LLVMTypeRef DestTy, const char *Name) {
2182 return wrap(unwrap(B)->CreateFPTrunc(unwrap(Val), unwrap(DestTy), Name));
2186 LLVMTypeRef DestTy, const char *Name) {
2187 return wrap(unwrap(B)->CreateFPExt(unwrap(Val), unwrap(DestTy), Name));
2191 LLVMTypeRef DestTy, const char *Name) {
2192 return wrap(unwrap(B)->CreatePtrToInt(unwrap(Val), unwrap(DestTy), Name));
2196 LLVMTypeRef DestTy, const char *Name) {
2197 return wrap(unwrap(B)->CreateIntToPtr(unwrap(Val), unwrap(DestTy), Name));
2201 LLVMTypeRef DestTy, const char *Name) {
2202 return wrap(unwrap(B)->CreateBitCast(unwrap(Val), unwrap(DestTy), Name));
2206 LLVMTypeRef DestTy, const char *Name) {
2207 return wrap(unwrap(B)->CreateZExtOrBitCast(unwrap(Val), unwrap(DestTy),
2212 LLVMTypeRef DestTy, const char *Name) {
2213 return wrap(unwrap(B)->CreateSExtOrBitCast(unwrap(Val), unwrap(DestTy),
2218 LLVMTypeRef DestTy, const char *Name) {
2219 return wrap(unwrap(B)->CreateTruncOrBitCast(unwrap(Val), unwrap(DestTy),
2224 LLVMTypeRef DestTy, const char *Name) {
2226 unwrap(DestTy), Name));
2230 LLVMTypeRef DestTy, const char *Name) {
2231 return wrap(unwrap(B)->CreatePointerCast(unwrap(Val), unwrap(DestTy), Name));
2235 LLVMTypeRef DestTy, const char *Name) {
2236 return wrap(unwrap(B)->CreateIntCast(unwrap(Val), unwrap(DestTy),
2241 LLVMTypeRef DestTy, const char *Name) {
2242 return wrap(unwrap(B)->CreateFPCast(unwrap(Val), unwrap(DestTy), Name));