LLVM API Documentation

Functions
Floating Point Types
Types
Collaboration diagram for Floating Point Types:

Functions

LLVMTypeRef LLVMHalfTypeInContext (LLVMContextRef C)
LLVMTypeRef LLVMFloatTypeInContext (LLVMContextRef C)
LLVMTypeRef LLVMDoubleTypeInContext (LLVMContextRef C)
LLVMTypeRef LLVMX86FP80TypeInContext (LLVMContextRef C)
LLVMTypeRef LLVMFP128TypeInContext (LLVMContextRef C)
LLVMTypeRef LLVMPPCFP128TypeInContext (LLVMContextRef C)
LLVMTypeRef LLVMHalfType (void)
LLVMTypeRef LLVMFloatType (void)
LLVMTypeRef LLVMDoubleType (void)
LLVMTypeRef LLVMX86FP80Type (void)
LLVMTypeRef LLVMFP128Type (void)
LLVMTypeRef LLVMPPCFP128Type (void)

Function Documentation

Definition at line 370 of file Core.cpp.

References LLVMDoubleTypeInContext(), and LLVMGetGlobalContext().

Obtain a 64-bit floating point type from a context.

Definition at line 348 of file Core.cpp.

References llvm::Type::getDoubleTy(), and llvm::unwrap().

Referenced by LLVMDoubleType().

Definition at line 367 of file Core.cpp.

References LLVMFloatTypeInContext(), and LLVMGetGlobalContext().

Obtain a 32-bit floating point type from a context.

Definition at line 345 of file Core.cpp.

References llvm::Type::getFloatTy(), and llvm::unwrap().

Referenced by LLVMFloatType().

Definition at line 376 of file Core.cpp.

References LLVMFP128TypeInContext(), and LLVMGetGlobalContext().

Obtain a 128-bit floating point type (112-bit mantissa) from a context.

Definition at line 354 of file Core.cpp.

References llvm::Type::getFP128Ty(), and llvm::unwrap().

Referenced by LLVMFP128Type().

Obtain a floating point type from the global context.

These map to the functions in this group of the same name.

Definition at line 364 of file Core.cpp.

References LLVMGetGlobalContext(), and LLVMHalfTypeInContext().

Obtain a 16-bit floating point type from a context.

Definition at line 342 of file Core.cpp.

References llvm::Type::getHalfTy(), and llvm::unwrap().

Referenced by LLVMHalfType().

Definition at line 379 of file Core.cpp.

References LLVMGetGlobalContext(), and LLVMPPCFP128TypeInContext().

Obtain a 128-bit floating point type (two 64-bits) from a context.

Definition at line 357 of file Core.cpp.

References llvm::Type::getPPC_FP128Ty(), and llvm::unwrap().

Referenced by LLVMPPCFP128Type().

Definition at line 373 of file Core.cpp.

References LLVMGetGlobalContext(), and LLVMX86FP80TypeInContext().

Obtain a 80-bit floating point type (X87) from a context.

Definition at line 351 of file Core.cpp.

References llvm::Type::getX86_FP80Ty(), and llvm::unwrap().

Referenced by LLVMX86FP80Type().