Home
last modified time | relevance | path

Searched refs:FPFastMathMode (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Target/SPIRV/MCTargetDesc/
H A DSPIRVBaseInfo.cpp535 if (e == static_cast<uint32_t>(FPFastMathMode::None)) in getFPFastMathModeName()
537 if (e == static_cast<uint32_t>(FPFastMathMode::NotNaN)) in getFPFastMathModeName()
539 if (e & static_cast<uint32_t>(FPFastMathMode::NotNaN)) { in getFPFastMathModeName()
543 if (e == static_cast<uint32_t>(FPFastMathMode::NotInf)) in getFPFastMathModeName()
545 if (e & static_cast<uint32_t>(FPFastMathMode::NotInf)) { in getFPFastMathModeName()
549 if (e == static_cast<uint32_t>(FPFastMathMode::NSZ)) in getFPFastMathModeName()
551 if (e & static_cast<uint32_t>(FPFastMathMode::NSZ)) { in getFPFastMathModeName()
555 if (e == static_cast<uint32_t>(FPFastMathMode::AllowRecip)) in getFPFastMathModeName()
561 if (e == static_cast<uint32_t>(FPFastMathMode::Fast)) in getFPFastMathModeName()
563 if (e & static_cast<uint32_t>(FPFastMathMode::Fast)) { in getFPFastMathModeName()
[all …]
H A DSPIRVBaseInfo.h413 enum class FPFastMathMode : uint32_t { enum
496 FPFastMathMode = 40, enumerator
H A DSPIRVInstPrinter.cpp218 case SPIRV::Decoration::FPFastMathMode: in printOpDecorate()
/llvm-project-15.0.7/llvm/lib/Target/SPIRV/
H A DSPIRVEnums.td36 def FPFastMathMode : EnumOperand<"FPFastMathMode">;
/llvm-project-15.0.7/llvm/test/CodeGen/SPIRV/transcoding/
H A Dfcmp.ll93 ; CHECK-SPIRV-NOT: OpDecorate %{{.*}} FPFastMathMode
/llvm-project-15.0.7/mlir/include/mlir/Dialect/SPIRV/IR/
H A DSPIRVBase.td2207 def SPV_D_FPFastMathMode : I32EnumAttrCase<"FPFastMathMode", 40> {