Home | History | Annotate | Download | only in IR

Lines Matching refs:DestTy

2374                             LLVMTypeRef DestTy, const char *Name) {
2375 return wrap(unwrap(B)->CreateTrunc(unwrap(Val), unwrap(DestTy), Name));
2379 LLVMTypeRef DestTy, const char *Name) {
2380 return wrap(unwrap(B)->CreateZExt(unwrap(Val), unwrap(DestTy), Name));
2384 LLVMTypeRef DestTy, const char *Name) {
2385 return wrap(unwrap(B)->CreateSExt(unwrap(Val), unwrap(DestTy), Name));
2389 LLVMTypeRef DestTy, const char *Name) {
2390 return wrap(unwrap(B)->CreateFPToUI(unwrap(Val), unwrap(DestTy), Name));
2394 LLVMTypeRef DestTy, const char *Name) {
2395 return wrap(unwrap(B)->CreateFPToSI(unwrap(Val), unwrap(DestTy), Name));
2399 LLVMTypeRef DestTy, const char *Name) {
2400 return wrap(unwrap(B)->CreateUIToFP(unwrap(Val), unwrap(DestTy), Name));
2404 LLVMTypeRef DestTy, const char *Name) {
2405 return wrap(unwrap(B)->CreateSIToFP(unwrap(Val), unwrap(DestTy), Name));
2409 LLVMTypeRef DestTy, const char *Name) {
2410 return wrap(unwrap(B)->CreateFPTrunc(unwrap(Val), unwrap(DestTy), Name));
2414 LLVMTypeRef DestTy, const char *Name) {
2415 return wrap(unwrap(B)->CreateFPExt(unwrap(Val), unwrap(DestTy), Name));
2419 LLVMTypeRef DestTy, const char *Name) {
2420 return wrap(unwrap(B)->CreatePtrToInt(unwrap(Val), unwrap(DestTy), Name));
2424 LLVMTypeRef DestTy, const char *Name) {
2425 return wrap(unwrap(B)->CreateIntToPtr(unwrap(Val), unwrap(DestTy), Name));
2429 LLVMTypeRef DestTy, const char *Name) {
2430 return wrap(unwrap(B)->CreateBitCast(unwrap(Val), unwrap(DestTy), Name));
2434 LLVMTypeRef DestTy, const char *Name) {
2435 return wrap(unwrap(B)->CreateAddrSpaceCast(unwrap(Val), unwrap(DestTy), Name));
2439 LLVMTypeRef DestTy, const char *Name) {
2440 return wrap(unwrap(B)->CreateZExtOrBitCast(unwrap(Val), unwrap(DestTy),
2445 LLVMTypeRef DestTy, const char *Name) {
2446 return wrap(unwrap(B)->CreateSExtOrBitCast(unwrap(Val), unwrap(DestTy),
2451 LLVMTypeRef DestTy, const char *Name) {
2452 return wrap(unwrap(B)->CreateTruncOrBitCast(unwrap(Val), unwrap(DestTy),
2457 LLVMTypeRef DestTy, const char *Name) {
2459 unwrap(DestTy), Name));
2463 LLVMTypeRef DestTy, const char *Name) {
2464 return wrap(unwrap(B)->CreatePointerCast(unwrap(Val), unwrap(DestTy), Name));
2468 LLVMTypeRef DestTy, const char *Name) {
2469 return wrap(unwrap(B)->CreateIntCast(unwrap(Val), unwrap(DestTy),
2474 LLVMTypeRef DestTy, const char *Name) {
2475 return wrap(unwrap(B)->CreateFPCast(unwrap(Val), unwrap(DestTy), Name));