blob: 3d979867e65130fe06676dd8b98cd531a4d85d4b [file] [log] [blame]
// Copyright 2023 The Tint Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "src/tint/lang/core/type/builtin_structs.h"
#include <algorithm>
#include <string>
#include <utility>
#include "src/tint/lang/core/builtin.h"
#include "src/tint/lang/core/type/abstract_float.h"
#include "src/tint/lang/core/type/abstract_int.h"
#include "src/tint/lang/core/type/bool.h"
#include "src/tint/lang/core/type/f16.h"
#include "src/tint/lang/core/type/f32.h"
#include "src/tint/lang/core/type/i32.h"
#include "src/tint/lang/core/type/manager.h"
#include "src/tint/lang/core/type/u32.h"
#include "src/tint/lang/core/type/vector.h"
#include "src/tint/utils/rtti/switch.h"
#include "src/tint/utils/symbol/symbol_table.h"
#include "src/tint/utils/text/string.h"
namespace tint::core::type {
/// An array of `modf()` return type names for an argument of `vecN<f32>`.
constexpr std::array kModfVecF32Names{
core::Builtin::kModfResultVec2F32, // return type of modf(vec2<f32>)
core::Builtin::kModfResultVec3F32, // return type of modf(vec3<f32>)
core::Builtin::kModfResultVec4F32, // return type of modf(vec4<f32>)
};
/// An array of `modf()` return type names for an argument of `vecN<f16>`.
constexpr std::array kModfVecF16Names{
core::Builtin::kModfResultVec2F16, // return type of modf(vec2<f16>)
core::Builtin::kModfResultVec3F16, // return type of modf(vec3<f16>)
core::Builtin::kModfResultVec4F16, // return type of modf(vec4<f16>)
};
/// An array of `modf()` return type names for an argument of `vecN<abstract-float>`.
constexpr std::array kModfVecAbstractNames{
core::Builtin::kModfResultVec2Abstract, // return type of modf(vec2<abstract-float>)
core::Builtin::kModfResultVec3Abstract, // return type of modf(vec3<abstract-float>)
core::Builtin::kModfResultVec4Abstract, // return type of modf(vec4<abstract-float>)
};
Struct* CreateModfResult(Manager& types, SymbolTable& symbols, const Type* ty) {
auto build = [&](core::Builtin name, const Type* t) {
return types.Struct(symbols.Register(tint::ToString(name)),
{{symbols.Register("fract"), t}, {symbols.Register("whole"), t}});
};
return Switch(
ty, //
[&](const F32*) { return build(core::Builtin::kModfResultF32, ty); },
[&](const F16*) { return build(core::Builtin::kModfResultF16, ty); },
[&](const AbstractFloat*) {
auto* abstract = build(core::Builtin::kModfResultAbstract, ty);
abstract->SetConcreteTypes(tint::Vector{
build(core::Builtin::kModfResultF32, types.f32()),
build(core::Builtin::kModfResultF16, types.f16()),
});
return abstract;
},
[&](const Vector* vec) {
auto width = vec->Width();
return Switch(
vec->type(), //
[&](const F32*) { return build(kModfVecF32Names[width - 2], vec); },
[&](const F16*) { return build(kModfVecF16Names[width - 2], vec); },
[&](const AbstractFloat*) {
auto* abstract = build(kModfVecAbstractNames[width - 2], vec);
abstract->SetConcreteTypes(tint::Vector{
build(kModfVecF32Names[width - 2], types.vec(types.f32(), width)),
build(kModfVecF16Names[width - 2], types.vec(types.f16(), width)),
});
return abstract;
},
[&](Default) {
TINT_UNREACHABLE() << "unhandled modf type";
return nullptr;
});
},
[&](Default) {
TINT_UNREACHABLE() << "unhandled modf type";
return nullptr;
});
}
/// An array of `frexp()` return type names for an argument of `vecN<f32>`.
constexpr std::array kFrexpVecF32Names{
core::Builtin::kFrexpResultVec2F32, // return type of frexp(vec2<f32>)
core::Builtin::kFrexpResultVec3F32, // return type of frexp(vec3<f32>)
core::Builtin::kFrexpResultVec4F32, // return type of frexp(vec4<f32>)
};
/// An array of `frexp()` return type names for an argument of `vecN<f16>`.
constexpr std::array kFrexpVecF16Names{
core::Builtin::kFrexpResultVec2F16, // return type of frexp(vec2<f16>)
core::Builtin::kFrexpResultVec3F16, // return type of frexp(vec3<f16>)
core::Builtin::kFrexpResultVec4F16, // return type of frexp(vec4<f16>)
};
/// An array of `frexp()` return type names for an argument of `vecN<abstract-float>`.
constexpr std::array kFrexpVecAbstractNames{
core::Builtin::kFrexpResultVec2Abstract, // return type of frexp(vec2<abstract-float>)
core::Builtin::kFrexpResultVec3Abstract, // return type of frexp(vec3<abstract-float>)
core::Builtin::kFrexpResultVec4Abstract, // return type of frexp(vec4<abstract-float>)
};
Struct* CreateFrexpResult(Manager& types, SymbolTable& symbols, const Type* ty) {
auto build = [&](core::Builtin name, const Type* fract_ty, const Type* exp_ty) {
return types.Struct(
symbols.Register(tint::ToString(name)),
{{symbols.Register("fract"), fract_ty}, {symbols.Register("exp"), exp_ty}});
};
return Switch(
ty, //
[&](const F32*) { return build(core::Builtin::kFrexpResultF32, ty, types.i32()); },
[&](const F16*) { return build(core::Builtin::kFrexpResultF16, ty, types.i32()); },
[&](const AbstractFloat*) {
auto* abstract = build(core::Builtin::kFrexpResultAbstract, ty, types.AInt());
abstract->SetConcreteTypes(tint::Vector{
build(core::Builtin::kFrexpResultF32, types.f32(), types.i32()),
build(core::Builtin::kFrexpResultF16, types.f16(), types.i32()),
});
return abstract;
},
[&](const Vector* vec) {
auto width = vec->Width();
return Switch(
vec->type(), //
[&](const F32*) {
return build(kFrexpVecF32Names[width - 2], ty, types.vec(types.i32(), width));
},
[&](const F16*) {
return build(kFrexpVecF16Names[width - 2], ty, types.vec(types.i32(), width));
},
[&](const AbstractFloat*) {
auto* vec_f32 = types.vec(types.f32(), width);
auto* vec_f16 = types.vec(types.f16(), width);
auto* vec_i32 = types.vec(types.i32(), width);
auto* vec_ai = types.vec(types.AInt(), width);
auto* abstract = build(kFrexpVecAbstractNames[width - 2], ty, vec_ai);
abstract->SetConcreteTypes(tint::Vector{
build(kFrexpVecF32Names[width - 2], vec_f32, vec_i32),
build(kFrexpVecF16Names[width - 2], vec_f16, vec_i32),
});
return abstract;
},
[&](Default) {
TINT_UNREACHABLE() << "unhandled frexp type";
return nullptr;
});
},
[&](Default) {
TINT_UNREACHABLE() << "unhandled frexp type";
return nullptr;
});
}
Struct* CreateAtomicCompareExchangeResult(Manager& types, SymbolTable& symbols, const Type* ty) {
auto build = [&](core::Builtin name) {
return types.Struct(symbols.Register(tint::ToString(name)),
{
{symbols.Register("old_value"), ty},
{symbols.Register("exchanged"), types.bool_()},
});
};
return Switch(
ty, //
[&](const I32*) { return build(core::Builtin::kAtomicCompareExchangeResultI32); },
[&](const U32*) { return build(core::Builtin::kAtomicCompareExchangeResultU32); },
[&](Default) {
TINT_UNREACHABLE() << "unhandled atomic_compare_exchange type";
return nullptr;
});
}
} // namespace tint::core::type