Please use GitHub pull requests for new patches. Avoid migrating existing patches. Phabricator shutdown timeline
Changeset View
Changeset View
Standalone View
Standalone View
llvm/include/llvm/CodeGen/ISDOpcodes.h
Show First 20 Lines • Show All 298 Lines • ▼ Show 20 Lines | enum NodeType { | ||||
/// These will be lowered to the equivalent non-constrained pseudo-op | /// These will be lowered to the equivalent non-constrained pseudo-op | ||||
/// (or expanded to the equivalent library call) before final selection. | /// (or expanded to the equivalent library call) before final selection. | ||||
/// They are used to limit optimizations while the DAG is being optimized. | /// They are used to limit optimizations while the DAG is being optimized. | ||||
STRICT_FSQRT, STRICT_FPOW, STRICT_FPOWI, STRICT_FSIN, STRICT_FCOS, | STRICT_FSQRT, STRICT_FPOW, STRICT_FPOWI, STRICT_FSIN, STRICT_FCOS, | ||||
STRICT_FEXP, STRICT_FEXP2, STRICT_FLOG, STRICT_FLOG10, STRICT_FLOG2, | STRICT_FEXP, STRICT_FEXP2, STRICT_FLOG, STRICT_FLOG10, STRICT_FLOG2, | ||||
STRICT_FRINT, STRICT_FNEARBYINT, STRICT_FMAXNUM, STRICT_FMINNUM, | STRICT_FRINT, STRICT_FNEARBYINT, STRICT_FMAXNUM, STRICT_FMINNUM, | ||||
STRICT_FCEIL, STRICT_FFLOOR, STRICT_FROUND, STRICT_FTRUNC, | STRICT_FCEIL, STRICT_FFLOOR, STRICT_FROUND, STRICT_FTRUNC, | ||||
STRICT_LROUND, STRICT_LLROUND, STRICT_LRINT, STRICT_LLRINT, | STRICT_LROUND, STRICT_LLROUND, STRICT_LRINT, STRICT_LLRINT, | ||||
STRICT_FMAXIMUM, STRICT_FMINIMUM, | |||||
/// STRICT_FP_TO_[US]INT - Convert a floating point value to a signed or | /// STRICT_FP_TO_[US]INT - Convert a floating point value to a signed or | ||||
/// unsigned integer. These have the same semantics as fptosi and fptoui | /// unsigned integer. These have the same semantics as fptosi and fptoui | ||||
/// in IR. | /// in IR. | ||||
/// They are used to limit optimizations while the DAG is being optimized. | /// They are used to limit optimizations while the DAG is being optimized. | ||||
STRICT_FP_TO_SINT, | STRICT_FP_TO_SINT, | ||||
STRICT_FP_TO_UINT, | STRICT_FP_TO_UINT, | ||||
▲ Show 20 Lines • Show All 800 Lines • Show Last 20 Lines |