mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-06 13:15:59 +00:00
This CL makes the builtin argument resolve as a shadowable enumerator expression. Bug: tint:1841 Bug: tint:1845 Change-Id: I2aaa2c63025752f25c113cf2fb38f4d91c2c16c2 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/120680 Kokoro: Ben Clayton <bclayton@google.com> Reviewed-by: Dan Sinclair <dsinclair@chromium.org> Commit-Queue: Ben Clayton <bclayton@google.com> Reviewed-by: James Price <jrprice@google.com>
533 lines
25 KiB
C++
533 lines
25 KiB
C++
// Copyright 2021 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.
|
|
|
|
#ifndef SRC_TINT_WRITER_GLSL_GENERATOR_IMPL_H_
|
|
#define SRC_TINT_WRITER_GLSL_GENERATOR_IMPL_H_
|
|
|
|
#include <string>
|
|
#include <tuple>
|
|
#include <unordered_map>
|
|
#include <unordered_set>
|
|
#include <utility>
|
|
|
|
#include "src/tint/ast/assignment_statement.h"
|
|
#include "src/tint/ast/bitcast_expression.h"
|
|
#include "src/tint/ast/break_statement.h"
|
|
#include "src/tint/ast/continue_statement.h"
|
|
#include "src/tint/ast/discard_statement.h"
|
|
#include "src/tint/ast/for_loop_statement.h"
|
|
#include "src/tint/ast/if_statement.h"
|
|
#include "src/tint/ast/loop_statement.h"
|
|
#include "src/tint/ast/return_statement.h"
|
|
#include "src/tint/ast/switch_statement.h"
|
|
#include "src/tint/ast/unary_op_expression.h"
|
|
#include "src/tint/builtin/builtin_value.h"
|
|
#include "src/tint/program_builder.h"
|
|
#include "src/tint/scope_stack.h"
|
|
#include "src/tint/transform/decompose_memory_access.h"
|
|
#include "src/tint/utils/hash.h"
|
|
#include "src/tint/writer/glsl/generator.h"
|
|
#include "src/tint/writer/glsl/version.h"
|
|
#include "src/tint/writer/text_generator.h"
|
|
|
|
// Forward declarations
|
|
namespace tint::sem {
|
|
class Call;
|
|
class Builtin;
|
|
class TypeInitializer;
|
|
class TypeConversion;
|
|
} // namespace tint::sem
|
|
|
|
namespace tint::writer::glsl {
|
|
|
|
/// The result of sanitizing a program for generation.
|
|
struct SanitizedResult {
|
|
/// Constructor
|
|
SanitizedResult();
|
|
/// Destructor
|
|
~SanitizedResult();
|
|
/// Move constructor
|
|
SanitizedResult(SanitizedResult&&);
|
|
|
|
/// The sanitized program.
|
|
Program program;
|
|
};
|
|
|
|
/// Sanitize a program in preparation for generating GLSL.
|
|
/// @program The program to sanitize
|
|
/// @param options The HLSL generator options.
|
|
/// @param entry_point the entry point to generate GLSL for
|
|
/// @returns the sanitized program and any supplementary information
|
|
SanitizedResult Sanitize(const Program* program,
|
|
const Options& options,
|
|
const std::string& entry_point);
|
|
|
|
/// Implementation class for GLSL generator
|
|
class GeneratorImpl : public TextGenerator {
|
|
public:
|
|
/// Constructor
|
|
/// @param program the program to generate
|
|
/// @param version the GLSL version to use
|
|
GeneratorImpl(const Program* program, const Version& version);
|
|
~GeneratorImpl();
|
|
|
|
/// @returns true on successful generation; false otherwise
|
|
bool Generate();
|
|
|
|
/// Record an extension directive within the generator
|
|
/// @param ext the extension to record
|
|
/// @returns true if the extension directive was recorded successfully
|
|
bool RecordExtension(const ast::Enable* ext);
|
|
/// Handles an index accessor expression
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the expression to emit
|
|
/// @returns true if the index accessor was emitted
|
|
bool EmitIndexAccessor(std::ostream& out, const ast::IndexAccessorExpression* expr);
|
|
/// Handles an assignment statement
|
|
/// @param stmt the statement to emit
|
|
/// @returns true if the statement was emitted successfully
|
|
bool EmitAssign(const ast::AssignmentStatement* stmt);
|
|
/// Handles emission of bitwise operators (&|) on bool scalars and vectors
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the binary expression
|
|
/// @returns true if the expression was emitted, false otherwise
|
|
bool EmitBitwiseBoolOp(std::ostream& out, const ast::BinaryExpression* expr);
|
|
/// Handles generating a binary expression
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the binary expression
|
|
/// @returns true if the expression was emitted, false otherwise
|
|
bool EmitFloatModulo(std::ostream& out, const ast::BinaryExpression* expr);
|
|
/// Handles generating the modulo operator on float vector operands
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the binary expression
|
|
/// @returns true if the expression was emitted, false otherwise
|
|
bool EmitBinary(std::ostream& out, const ast::BinaryExpression* expr);
|
|
/// Handles generating a bitcast expression
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the expression
|
|
/// @returns true if the binary expression was emitted
|
|
bool EmitVectorRelational(std::ostream& out, const ast::BinaryExpression* expr);
|
|
/// Handles generating a vector relational expression
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the expression
|
|
/// @returns true if the vector relational expression was emitted
|
|
bool EmitBitcast(std::ostream& out, const ast::BitcastExpression* expr);
|
|
/// Emits a list of statements
|
|
/// @param stmts the statement list
|
|
/// @returns true if the statements were emitted successfully
|
|
bool EmitStatements(utils::VectorRef<const ast::Statement*> stmts);
|
|
/// Emits a list of statements with an indentation
|
|
/// @param stmts the statement list
|
|
/// @returns true if the statements were emitted successfully
|
|
bool EmitStatementsWithIndent(utils::VectorRef<const ast::Statement*> stmts);
|
|
/// Handles a block statement
|
|
/// @param stmt the statement to emit
|
|
/// @returns true if the statement was emitted successfully
|
|
bool EmitBlock(const ast::BlockStatement* stmt);
|
|
/// Handles a break statement
|
|
/// @param stmt the statement to emit
|
|
/// @returns true if the statement was emitted successfully
|
|
bool EmitBreak(const ast::BreakStatement* stmt);
|
|
/// Handles a break-if statement
|
|
/// @param stmt the statement to emit
|
|
/// @returns true if the statement was emitted successfully
|
|
bool EmitBreakIf(const ast::BreakIfStatement* stmt);
|
|
/// Handles generating a call expression
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the call expression
|
|
/// @returns true if the call expression is emitted
|
|
bool EmitCall(std::ostream& out, const ast::CallExpression* expr);
|
|
/// Handles generating a function call expression
|
|
/// @param out the output of the expression stream
|
|
/// @param call the call expression
|
|
/// @param fn the function being called
|
|
/// @returns true if the expression is emitted
|
|
bool EmitFunctionCall(std::ostream& out, const sem::Call* call, const sem::Function* fn);
|
|
/// Handles generating a builtin call expression
|
|
/// @param out the output of the expression stream
|
|
/// @param call the call expression
|
|
/// @param builtin the builtin being called
|
|
/// @returns true if the expression is emitted
|
|
bool EmitBuiltinCall(std::ostream& out, const sem::Call* call, const sem::Builtin* builtin);
|
|
/// Handles generating a type conversion expression
|
|
/// @param out the output of the expression stream
|
|
/// @param call the call expression
|
|
/// @param conv the type conversion
|
|
/// @returns true if the expression is emitted
|
|
bool EmitTypeConversion(std::ostream& out,
|
|
const sem::Call* call,
|
|
const sem::TypeConversion* conv);
|
|
/// Handles generating a type initializer expression
|
|
/// @param out the output of the expression stream
|
|
/// @param call the call expression
|
|
/// @param ctor the type initializer
|
|
/// @returns true if the expression is emitted
|
|
bool EmitTypeInitializer(std::ostream& out,
|
|
const sem::Call* call,
|
|
const sem::TypeInitializer* ctor);
|
|
/// Handles generating a barrier builtin call
|
|
/// @param out the output of the expression stream
|
|
/// @param builtin the semantic information for the barrier builtin
|
|
/// @returns true if the call expression is emitted
|
|
bool EmitBarrierCall(std::ostream& out, const sem::Builtin* builtin);
|
|
/// Handles generating an atomic builtin call for a workgroup variable
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the call expression
|
|
/// @param builtin the semantic information for the atomic builtin
|
|
/// @returns true if the call expression is emitted
|
|
bool EmitWorkgroupAtomicCall(std::ostream& out,
|
|
const ast::CallExpression* expr,
|
|
const sem::Builtin* builtin);
|
|
/// Handles generating an array.length() call
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the call expression
|
|
/// @returns true if the array length expression is emitted
|
|
bool EmitArrayLength(std::ostream& out, const ast::CallExpression* expr);
|
|
/// Handles generating a call to `bitfieldExtract`
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the call expression
|
|
/// @returns true if the expression is emitted
|
|
bool EmitExtractBits(std::ostream& out, const ast::CallExpression* expr);
|
|
/// Handles generating a call to `bitfieldInsert`
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the call expression
|
|
/// @returns true if the expression is emitted
|
|
bool EmitInsertBits(std::ostream& out, const ast::CallExpression* expr);
|
|
/// Emulates 'fma' on GLSL ES, where it is unsupported.
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the fma() expression
|
|
/// @returns true if the expression is emitted
|
|
bool EmitEmulatedFMA(std::ostream& out, const ast::CallExpression* expr);
|
|
/// Create a float literal zero AST node, and associated semantic nodes.
|
|
/// @param stmt the statement which will own the semantic expression node
|
|
/// @returns an AST expression representing 0.0f
|
|
const ast::Expression* CreateF32Zero(const sem::Statement* stmt);
|
|
|
|
/// Handles generating a call to a texture function (`textureSample`,
|
|
/// `textureSampleGrad`, etc)
|
|
/// @param out the output of the expression stream
|
|
/// @param call the call expression
|
|
/// @param builtin the semantic information for the texture builtin
|
|
/// @returns true if the call expression is emitted
|
|
bool EmitTextureCall(std::ostream& out, const sem::Call* call, const sem::Builtin* builtin);
|
|
/// Handles generating a call to the `select()` builtin
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the call expression
|
|
/// @returns true if the call expression is emitted
|
|
bool EmitCountOneBitsCall(std::ostream& out, const ast::CallExpression* expr);
|
|
/// Handles generating a call to the `countOneBits()` builtin
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the call expression
|
|
/// @returns true if the call expression is emitted
|
|
bool EmitSelectCall(std::ostream& out, const ast::CallExpression* expr);
|
|
/// Handles generating a call to the `dot()` builtin
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the call expression
|
|
/// @param builtin the semantic information for the builtin
|
|
/// @returns true if the call expression is emitted
|
|
bool EmitDotCall(std::ostream& out,
|
|
const ast::CallExpression* expr,
|
|
const sem::Builtin* builtin);
|
|
/// Handles generating a call to the `modf()` builtin
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the call expression
|
|
/// @param builtin the semantic information for the builtin
|
|
/// @returns true if the call expression is emitted
|
|
bool EmitModfCall(std::ostream& out,
|
|
const ast::CallExpression* expr,
|
|
const sem::Builtin* builtin);
|
|
/// Handles generating a call to the `frexp()` builtin
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the call expression
|
|
/// @param builtin the semantic information for the builtin
|
|
/// @returns true if the call expression is emitted
|
|
bool EmitFrexpCall(std::ostream& out,
|
|
const ast::CallExpression* expr,
|
|
const sem::Builtin* builtin);
|
|
/// Handles generating a call to the `degrees()` builtin
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the call expression
|
|
/// @param builtin the semantic information for the builtin
|
|
/// @returns true if the call expression is emitted
|
|
bool EmitDegreesCall(std::ostream& out,
|
|
const ast::CallExpression* expr,
|
|
const sem::Builtin* builtin);
|
|
/// Handles generating a call to the `radians()` builtin
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the call expression
|
|
/// @param builtin the semantic information for the builtin
|
|
/// @returns true if the call expression is emitted
|
|
bool EmitRadiansCall(std::ostream& out,
|
|
const ast::CallExpression* expr,
|
|
const sem::Builtin* builtin);
|
|
/// Handles generating a call to the `quantizeToF16()` intrinsic
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the call expression
|
|
/// @param builtin the semantic information for the builtin
|
|
/// @returns true if the call expression is emitted
|
|
bool EmitQuantizeToF16Call(std::ostream& out,
|
|
const ast::CallExpression* expr,
|
|
const sem::Builtin* builtin);
|
|
/// Handles a case statement
|
|
/// @param stmt the statement
|
|
/// @returns true if the statement was emitted successfully
|
|
bool EmitCase(const ast::CaseStatement* stmt);
|
|
/// Handles generating a discard statement
|
|
/// @param stmt the discard statement
|
|
/// @returns true if the statement was successfully emitted
|
|
bool EmitDiscard(const ast::DiscardStatement* stmt);
|
|
/// Handles a continue statement
|
|
/// @param stmt the statement to emit
|
|
/// @returns true if the statement was emitted successfully
|
|
bool EmitContinue(const ast::ContinueStatement* stmt);
|
|
/// Handles generate an Expression
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the expression
|
|
/// @returns true if the expression was emitted
|
|
bool EmitExpression(std::ostream& out, const ast::Expression* expr);
|
|
/// Handles generating a function
|
|
/// @param func the function to generate
|
|
/// @returns true if the function was emitted
|
|
bool EmitFunction(const ast::Function* func);
|
|
|
|
/// Handles emitting a global variable
|
|
/// @param global the global variable
|
|
/// @returns true on success
|
|
bool EmitGlobalVariable(const ast::Variable* global);
|
|
|
|
/// Handles emitting a global variable with the uniform address space
|
|
/// @param var the AST node for the 'var'
|
|
/// @param sem the semantic node for the 'var'
|
|
/// @returns true on success
|
|
bool EmitUniformVariable(const ast::Var* var, const sem::Variable* sem);
|
|
|
|
/// Handles emitting a global variable with the storage address space
|
|
/// @param var the AST node for the 'var'
|
|
/// @param sem the semantic node for the 'var'
|
|
/// @returns true on success
|
|
bool EmitStorageVariable(const ast::Var* var, const sem::Variable* sem);
|
|
|
|
/// Handles emitting a global variable with the handle address space
|
|
/// @param var the AST node for the 'var'
|
|
/// @param sem the semantic node for the 'var'
|
|
/// @returns true on success
|
|
bool EmitHandleVariable(const ast::Var* var, const sem::Variable* sem);
|
|
|
|
/// Handles emitting a global variable with the private address space
|
|
/// @param var the global variable
|
|
/// @returns true on success
|
|
bool EmitPrivateVariable(const sem::Variable* var);
|
|
|
|
/// Handles emitting a global variable with the workgroup address space
|
|
/// @param var the global variable
|
|
/// @returns true on success
|
|
bool EmitWorkgroupVariable(const sem::Variable* var);
|
|
|
|
/// Handles emitting a global variable with the input or output address space
|
|
/// @param var the global variable
|
|
/// @returns true on success
|
|
bool EmitIOVariable(const sem::GlobalVariable* var);
|
|
|
|
/// Handles emitting interpolation qualifiers
|
|
/// @param out the output of the expression stream
|
|
/// @param attrs the attributes
|
|
void EmitInterpolationQualifiers(std::ostream& out,
|
|
utils::VectorRef<const ast::Attribute*> attrs);
|
|
/// Handles emitting attributes
|
|
/// @param out the output of the expression stream
|
|
/// @param var the global variable semantics
|
|
/// @param attrs the attributes
|
|
/// @returns true if the attributes were emitted
|
|
bool EmitAttributes(std::ostream& out,
|
|
const sem::GlobalVariable* var,
|
|
utils::VectorRef<const ast::Attribute*> attrs);
|
|
/// Handles emitting the entry point function
|
|
/// @param func the entry point
|
|
/// @returns true if the entry point function was emitted
|
|
bool EmitEntryPointFunction(const ast::Function* func);
|
|
/// Handles an if statement
|
|
/// @param stmt the statement to emit
|
|
/// @returns true if the statement was successfully emitted
|
|
bool EmitIf(const ast::IfStatement* stmt);
|
|
/// Handles a constant value
|
|
/// @param out the output stream
|
|
/// @param constant the constant value to emit
|
|
/// @returns true if the constant value was successfully emitted
|
|
bool EmitConstant(std::ostream& out, const constant::Value* constant);
|
|
/// Handles a literal
|
|
/// @param out the output stream
|
|
/// @param lit the literal to emit
|
|
/// @returns true if the literal was successfully emitted
|
|
bool EmitLiteral(std::ostream& out, const ast::LiteralExpression* lit);
|
|
/// Handles a loop statement
|
|
/// @param stmt the statement to emit
|
|
/// @returns true if the statement was emitted
|
|
bool EmitLoop(const ast::LoopStatement* stmt);
|
|
/// Handles a for loop statement
|
|
/// @param stmt the statement to emit
|
|
/// @returns true if the statement was emitted
|
|
bool EmitForLoop(const ast::ForLoopStatement* stmt);
|
|
/// Handles a while statement
|
|
/// @param stmt the statement to emit
|
|
/// @returns true if the statement was emitted
|
|
bool EmitWhile(const ast::WhileStatement* stmt);
|
|
/// Handles generating an identifier expression
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the identifier expression
|
|
/// @returns true if the identifier was emitted
|
|
bool EmitIdentifier(std::ostream& out, const ast::IdentifierExpression* expr);
|
|
/// Handles a member accessor expression
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the member accessor expression
|
|
/// @returns true if the member accessor was emitted
|
|
bool EmitMemberAccessor(std::ostream& out, const ast::MemberAccessorExpression* expr);
|
|
/// Handles return statements
|
|
/// @param stmt the statement to emit
|
|
/// @returns true if the statement was successfully emitted
|
|
bool EmitReturn(const ast::ReturnStatement* stmt);
|
|
/// Handles statement
|
|
/// @param stmt the statement to emit
|
|
/// @returns true if the statement was emitted
|
|
bool EmitStatement(const ast::Statement* stmt);
|
|
/// Handles generating a switch statement
|
|
/// @param stmt the statement to emit
|
|
/// @returns true if the statement was emitted
|
|
bool EmitSwitch(const ast::SwitchStatement* stmt);
|
|
/// Handles generating type
|
|
/// @param out the output stream
|
|
/// @param type the type to generate
|
|
/// @param address_space the address space of the variable
|
|
/// @param access the access control type of the variable
|
|
/// @param name the name of the variable, used for array emission.
|
|
/// @param name_printed (optional) if not nullptr and an array was printed
|
|
/// then the boolean is set to true.
|
|
/// @returns true if the type is emitted
|
|
bool EmitType(std::ostream& out,
|
|
const type::Type* type,
|
|
builtin::AddressSpace address_space,
|
|
builtin::Access access,
|
|
const std::string& name,
|
|
bool* name_printed = nullptr);
|
|
/// Handles generating type and name
|
|
/// @param out the output stream
|
|
/// @param type the type to generate
|
|
/// @param address_space the address space of the variable
|
|
/// @param access the access control type of the variable
|
|
/// @param name the name to emit
|
|
/// @returns true if the type is emitted
|
|
bool EmitTypeAndName(std::ostream& out,
|
|
const type::Type* type,
|
|
builtin::AddressSpace address_space,
|
|
builtin::Access access,
|
|
const std::string& name);
|
|
/// Handles generating a structure declaration. If the structure has already been emitted, then
|
|
/// this function will simply return `true` without emitting anything.
|
|
/// @param buffer the text buffer that the type declaration will be written to
|
|
/// @param ty the struct to generate
|
|
/// @returns true if the struct is emitted
|
|
bool EmitStructType(TextBuffer* buffer, const sem::Struct* ty);
|
|
/// Handles generating the members of a structure
|
|
/// @param buffer the text buffer that the struct members will be written to
|
|
/// @param ty the struct to generate
|
|
/// @returns true if the struct members are emitted
|
|
bool EmitStructMembers(TextBuffer* buffer, const sem::Struct* ty);
|
|
/// Handles a unary op expression
|
|
/// @param out the output of the expression stream
|
|
/// @param expr the expression to emit
|
|
/// @returns true if the expression was emitted
|
|
bool EmitUnaryOp(std::ostream& out, const ast::UnaryOpExpression* expr);
|
|
/// Emits the zero value for the given type
|
|
/// @param out the output stream
|
|
/// @param type the type to emit the value for
|
|
/// @returns true if the zero value was successfully emitted.
|
|
bool EmitZeroValue(std::ostream& out, const type::Type* type);
|
|
/// Handles generating a 'var' declaration
|
|
/// @param var the variable to generate
|
|
/// @returns true if the variable was emitted
|
|
bool EmitVar(const ast::Var* var);
|
|
/// Handles generating a function-scope 'let' declaration
|
|
/// @param let the variable to generate
|
|
/// @returns true if the variable was emitted
|
|
bool EmitLet(const ast::Let* let);
|
|
/// Handles generating a module-scope 'let' declaration
|
|
/// @param let the 'let' to emit
|
|
/// @returns true if the variable was emitted
|
|
bool EmitProgramConstVariable(const ast::Variable* let);
|
|
/// Handles generating a builtin method name
|
|
/// @param builtin the semantic info for the builtin
|
|
/// @returns the name or "" if not valid
|
|
std::string generate_builtin_name(const sem::Builtin* builtin);
|
|
/// Converts a builtin to a gl_ string
|
|
/// @param builtin the builtin to convert
|
|
/// @param stage pipeline stage in which this builtin is used
|
|
/// @returns the string name of the builtin or blank on error
|
|
const char* builtin_to_string(builtin::BuiltinValue builtin, ast::PipelineStage stage);
|
|
/// Converts a builtin to a type::Type appropriate for GLSL.
|
|
/// @param builtin the builtin to convert
|
|
/// @returns the appropriate semantic type or null on error.
|
|
type::Type* builtin_type(builtin::BuiltinValue builtin);
|
|
|
|
private:
|
|
enum class VarType { kIn, kOut };
|
|
|
|
struct EntryPointData {
|
|
std::string struct_name;
|
|
std::string var_name;
|
|
};
|
|
|
|
/// The map key for two semantic types.
|
|
using BinaryOperandType =
|
|
utils::UnorderedKeyWrapper<std::tuple<const type::Type*, const type::Type*>>;
|
|
|
|
/// CallBuiltinHelper will call the builtin helper function, creating it
|
|
/// if it hasn't been built already. If the builtin needs to be built then
|
|
/// CallBuiltinHelper will generate the function signature and will call
|
|
/// `build` to emit the body of the function.
|
|
/// @param out the output of the expression stream
|
|
/// @param call the call expression
|
|
/// @param builtin the semantic information for the builtin
|
|
/// @param build a function with the signature:
|
|
/// `bool(TextBuffer* buffer, const std::vector<std::string>& params)`
|
|
/// Where:
|
|
/// `buffer` is the body of the generated function
|
|
/// `params` is the name of all the generated function parameters
|
|
/// @returns true if the call expression is emitted
|
|
template <typename F>
|
|
bool CallBuiltinHelper(std::ostream& out,
|
|
const ast::CallExpression* call,
|
|
const sem::Builtin* builtin,
|
|
F&& build);
|
|
|
|
/// Create a uint type corresponding to the given bool or bool vector type.
|
|
/// @param type the bool or bool vector type to convert
|
|
/// @returns the corresponding uint type
|
|
type::Type* BoolTypeToUint(const type::Type* type);
|
|
|
|
TextBuffer helpers_; // Helper functions emitted at the top of the output
|
|
std::function<bool()> emit_continuing_;
|
|
std::unordered_map<const sem::Builtin*, std::string> builtins_;
|
|
std::unordered_map<const type::Vector*, std::string> dynamic_vector_write_;
|
|
std::unordered_map<const type::Vector*, std::string> int_dot_funcs_;
|
|
std::unordered_map<BinaryOperandType, std::string> float_modulo_funcs_;
|
|
std::unordered_set<const sem::Struct*> emitted_structs_;
|
|
bool requires_oes_sample_variables_ = false;
|
|
bool requires_default_precision_qualifier_ = false;
|
|
bool requires_f16_extension_ = false;
|
|
Version version_;
|
|
};
|
|
|
|
} // namespace tint::writer::glsl
|
|
|
|
#endif // SRC_TINT_WRITER_GLSL_GENERATOR_IMPL_H_
|