Home
last modified time | relevance | path

Searched refs:DenormalMode (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DFloatingPointMode.h22 enum class DenormalMode { enum
36 inline DenormalMode parseDenormalFPAttribute(StringRef Str) { in parseDenormalFPAttribute()
38 return StringSwitch<DenormalMode>(Str) in parseDenormalFPAttribute()
39 .Cases("", "ieee", DenormalMode::IEEE) in parseDenormalFPAttribute()
40 .Case("preserve-sign", DenormalMode::PreserveSign) in parseDenormalFPAttribute()
41 .Case("positive-zero", DenormalMode::PositiveZero) in parseDenormalFPAttribute()
42 .Default(DenormalMode::Invalid); in parseDenormalFPAttribute()
47 inline StringRef denormalModeName(DenormalMode Mode) { in denormalModeName()
49 case DenormalMode::IEEE: in denormalModeName()
51 case DenormalMode::PreserveSign: in denormalModeName()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Target/
DTargetOptions.h58 enum DenormalMode { enum
303 FPDenormal::DenormalMode FPDenormalMode = FPDenormal::IEEE;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineFunction.cpp273 DenormalMode MachineFunction::getDenormalMode(const fltSemantics &FPType) const { in getDenormalMode()
283 return DenormalMode::Invalid; in getDenormalMode()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineFunction.h580 DenormalMode getDenormalMode(const fltSemantics &FPType) const;
DCommandFlags.inc154 static cl::opt<llvm::FPDenormal::DenormalMode> DenormalFPMath(
DSelectionDAG.h1742 DenormalMode getDenormalMode(EVT VT) const {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp20772 DenormalMode DenormMode = DAG.getDenormalMode(VT); in buildSqrtEstimateImpl()
20773 if (DenormMode == DenormalMode::IEEE) { in buildSqrtEstimateImpl()