blob: a5ea71599d2c4137f1d2558f9cf03f450d720657 [file] [log] [blame]
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001//
Nicolas Capensb1f45b72013-12-19 17:37:19 -05002// Copyright (c) 2002-2014 The ANGLE Project Authors. All rights reserved.
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003// Use of this source code is governed by a BSD-style license that can be
4// found in the LICENSE file.
5//
6
Geoff Lang17732822013-08-29 13:46:49 -04007#include "compiler/translator/OutputHLSL.h"
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00008
alokp@chromium.org79fb1012012-04-26 21:07:39 +00009#include "common/angleutils.h"
shannonwoods@chromium.org4a643ae2013-05-30 00:12:27 +000010#include "common/utilities.h"
Jamie Madill834e8b72014-04-11 13:33:58 -040011#include "common/blocklayout.h"
Geoff Lang17732822013-08-29 13:46:49 -040012#include "compiler/translator/compilerdebug.h"
13#include "compiler/translator/InfoSink.h"
14#include "compiler/translator/DetectDiscontinuity.h"
15#include "compiler/translator/SearchSymbol.h"
16#include "compiler/translator/UnfoldShortCircuit.h"
Geoff Lang17732822013-08-29 13:46:49 -040017#include "compiler/translator/FlagStd140Structs.h"
Jamie Madill3c9eeb92013-11-04 11:09:26 -050018#include "compiler/translator/NodeSearch.h"
Jamie Madille53c98b2014-02-03 11:57:13 -050019#include "compiler/translator/RewriteElseBlocks.h"
Jamie Madill033dae62014-06-18 12:56:28 -040020#include "compiler/translator/UtilsHLSL.h"
21#include "compiler/translator/util.h"
Jamie Madillf91ce812014-06-13 10:04:34 -040022#include "compiler/translator/UniformHLSL.h"
Jamie Madill8daaba12014-06-13 10:04:33 -040023#include "compiler/translator/StructureHLSL.h"
Jamie Madill54ad4f82014-09-03 09:40:46 -040024#include "compiler/translator/TranslatorHLSL.h"
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000025
daniel@transgaming.com7a7003c2010-04-29 03:35:33 +000026#include <algorithm>
shannon.woods@transgaming.comfff89b32013-02-28 23:20:15 +000027#include <cfloat>
28#include <stdio.h>
daniel@transgaming.com7a7003c2010-04-29 03:35:33 +000029
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000030namespace sh
31{
daniel@transgaming.com005c7392010-04-15 20:45:27 +000032
Nicolas Capense0ba27a2013-06-24 16:10:52 -040033TString OutputHLSL::TextureFunction::name() const
34{
35 TString name = "gl_texture";
36
Nicolas Capens6d232bb2013-07-08 15:56:38 -040037 if (IsSampler2D(sampler))
Nicolas Capense0ba27a2013-06-24 16:10:52 -040038 {
39 name += "2D";
40 }
Nicolas Capens6d232bb2013-07-08 15:56:38 -040041 else if (IsSampler3D(sampler))
Nicolas Capense0ba27a2013-06-24 16:10:52 -040042 {
43 name += "3D";
44 }
Nicolas Capens6d232bb2013-07-08 15:56:38 -040045 else if (IsSamplerCube(sampler))
Nicolas Capense0ba27a2013-06-24 16:10:52 -040046 {
47 name += "Cube";
48 }
49 else UNREACHABLE();
50
51 if (proj)
52 {
53 name += "Proj";
54 }
55
Nicolas Capensb1f45b72013-12-19 17:37:19 -050056 if (offset)
57 {
58 name += "Offset";
59 }
60
Nicolas Capens75fb4752013-07-10 15:14:47 -040061 switch(method)
Nicolas Capense0ba27a2013-06-24 16:10:52 -040062 {
Nicolas Capensfc014542014-02-18 14:47:13 -050063 case IMPLICIT: break;
Nicolas Capens84cfa122014-04-14 13:48:45 -040064 case BIAS: break; // Extra parameter makes the signature unique
Nicolas Capensfc014542014-02-18 14:47:13 -050065 case LOD: name += "Lod"; break;
66 case LOD0: name += "Lod0"; break;
Nicolas Capens84cfa122014-04-14 13:48:45 -040067 case LOD0BIAS: name += "Lod0"; break; // Extra parameter makes the signature unique
Nicolas Capensfc014542014-02-18 14:47:13 -050068 case SIZE: name += "Size"; break;
69 case FETCH: name += "Fetch"; break;
Nicolas Capensd11d5492014-02-19 17:06:10 -050070 case GRAD: name += "Grad"; break;
Nicolas Capense0ba27a2013-06-24 16:10:52 -040071 default: UNREACHABLE();
72 }
73
74 return name + "(";
75}
76
77bool OutputHLSL::TextureFunction::operator<(const TextureFunction &rhs) const
78{
79 if (sampler < rhs.sampler) return true;
Nicolas Capens04296f82014-04-14 14:24:38 -040080 if (sampler > rhs.sampler) return false;
81
Nicolas Capense0ba27a2013-06-24 16:10:52 -040082 if (coords < rhs.coords) return true;
Nicolas Capens04296f82014-04-14 14:24:38 -040083 if (coords > rhs.coords) return false;
84
Nicolas Capense0ba27a2013-06-24 16:10:52 -040085 if (!proj && rhs.proj) return true;
Nicolas Capens04296f82014-04-14 14:24:38 -040086 if (proj && !rhs.proj) return false;
87
88 if (!offset && rhs.offset) return true;
89 if (offset && !rhs.offset) return false;
90
Nicolas Capens75fb4752013-07-10 15:14:47 -040091 if (method < rhs.method) return true;
Nicolas Capens04296f82014-04-14 14:24:38 -040092 if (method > rhs.method) return false;
Nicolas Capense0ba27a2013-06-24 16:10:52 -040093
94 return false;
95}
96
Jamie Madill54ad4f82014-09-03 09:40:46 -040097OutputHLSL::OutputHLSL(TParseContext &context, TranslatorHLSL *parentTranslator)
98 : TIntermTraverser(true, true, true),
99 mContext(context),
100 mOutputType(parentTranslator->getOutputType())
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000101{
daniel@transgaming.comf8f8f362012-04-28 00:35:00 +0000102 mUnfoldShortCircuit = new UnfoldShortCircuit(context, this);
daniel@transgaming.comf9ef1072010-04-22 13:35:16 +0000103 mInsideFunction = false;
daniel@transgaming.comb5875982010-04-15 20:44:53 +0000104
shannon.woods%transgaming.com@gtempaccount.comaa8b5cf2013-04-13 03:31:55 +0000105 mUsesFragColor = false;
106 mUsesFragData = false;
daniel@transgaming.comd7c98102010-05-14 17:30:48 +0000107 mUsesDepthRange = false;
daniel@transgaming.com4af7acc2010-05-14 17:30:53 +0000108 mUsesFragCoord = false;
109 mUsesPointCoord = false;
110 mUsesFrontFacing = false;
111 mUsesPointSize = false;
Jamie Madill2aeb26a2013-07-08 14:02:55 -0400112 mUsesFragDepth = false;
daniel@transgaming.comd7c98102010-05-14 17:30:48 +0000113 mUsesXor = false;
114 mUsesMod1 = false;
daniel@transgaming.com4229f592011-11-24 22:34:04 +0000115 mUsesMod2v = false;
116 mUsesMod2f = false;
117 mUsesMod3v = false;
118 mUsesMod3f = false;
119 mUsesMod4v = false;
120 mUsesMod4f = false;
daniel@transgaming.com0bbb0312010-04-26 15:33:39 +0000121 mUsesFaceforward1 = false;
122 mUsesFaceforward2 = false;
123 mUsesFaceforward3 = false;
124 mUsesFaceforward4 = false;
daniel@transgaming.com35342dc2012-02-28 02:01:22 +0000125 mUsesAtan2_1 = false;
126 mUsesAtan2_2 = false;
127 mUsesAtan2_3 = false;
128 mUsesAtan2_4 = false;
Jamie Madill3c9eeb92013-11-04 11:09:26 -0500129 mUsesDiscardRewriting = false;
Nicolas Capens655fe362014-04-11 13:12:34 -0400130 mUsesNestedBreak = false;
daniel@transgaming.com005c7392010-04-15 20:45:27 +0000131
Jamie Madill54ad4f82014-09-03 09:40:46 -0400132 const ShBuiltInResources &resources = parentTranslator->getResources();
shannon.woods%transgaming.com@gtempaccount.comaa8b5cf2013-04-13 03:31:55 +0000133 mNumRenderTargets = resources.EXT_draw_buffers ? resources.MaxDrawBuffers : 1;
134
daniel@transgaming.comb6ef8f12010-11-15 16:41:14 +0000135 mUniqueIndex = 0;
daniel@transgaming.com89431aa2012-05-31 01:20:29 +0000136
137 mContainsLoopDiscontinuity = false;
138 mOutputLod0Function = false;
daniel@transgaming.come11100c2012-05-31 01:20:32 +0000139 mInsideDiscontinuousLoop = false;
Nicolas Capens655fe362014-04-11 13:12:34 -0400140 mNestedLoopDepth = 0;
daniel@transgaming.come9b3f602012-07-11 20:37:31 +0000141
142 mExcessiveLoopIndex = NULL;
daniel@transgaming.com652468c2012-12-20 21:11:57 +0000143
Jamie Madill8daaba12014-06-13 10:04:33 -0400144 mStructureHLSL = new StructureHLSL;
Jamie Madill54ad4f82014-09-03 09:40:46 -0400145 mUniformHLSL = new UniformHLSL(mStructureHLSL, parentTranslator);
Jamie Madill8daaba12014-06-13 10:04:33 -0400146
shannon.woods@transgaming.com46a5b872013-01-25 21:52:57 +0000147 if (mOutputType == SH_HLSL9_OUTPUT)
daniel@transgaming.coma390e1e2013-01-11 04:09:39 +0000148 {
Jamie Madill183bde52014-07-02 15:31:19 -0400149 if (mContext.shaderType == GL_FRAGMENT_SHADER)
shannon.woods@transgaming.com46a5b872013-01-25 21:52:57 +0000150 {
Jamie Madillf91ce812014-06-13 10:04:34 -0400151 // Reserve registers for dx_DepthRange, dx_ViewCoords and dx_DepthFront
152 mUniformHLSL->reserveUniformRegisters(3);
shannon.woods@transgaming.com46a5b872013-01-25 21:52:57 +0000153 }
154 else
155 {
Jamie Madillf91ce812014-06-13 10:04:34 -0400156 // Reserve registers for dx_DepthRange and dx_ViewAdjust
157 mUniformHLSL->reserveUniformRegisters(2);
shannon.woods@transgaming.com46a5b872013-01-25 21:52:57 +0000158 }
daniel@transgaming.coma390e1e2013-01-11 04:09:39 +0000159 }
daniel@transgaming.coma390e1e2013-01-11 04:09:39 +0000160
Jamie Madillf91ce812014-06-13 10:04:34 -0400161 // Reserve registers for the default uniform block and driver constants
162 mUniformHLSL->reserveInterfaceBlockRegisters(2);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000163}
164
daniel@transgaming.comb5875982010-04-15 20:44:53 +0000165OutputHLSL::~OutputHLSL()
166{
Jamie Madill8daaba12014-06-13 10:04:33 -0400167 SafeDelete(mUnfoldShortCircuit);
168 SafeDelete(mStructureHLSL);
Jamie Madillf91ce812014-06-13 10:04:34 -0400169 SafeDelete(mUniformHLSL);
daniel@transgaming.comb5875982010-04-15 20:44:53 +0000170}
171
daniel@transgaming.com950f9932010-04-13 03:26:14 +0000172void OutputHLSL::output()
173{
Jamie Madill183bde52014-07-02 15:31:19 -0400174 mContainsLoopDiscontinuity = mContext.shaderType == GL_FRAGMENT_SHADER && containsLoopDiscontinuity(mContext.treeRoot);
Jamie Madill570e04d2013-06-21 09:15:33 -0400175 const std::vector<TIntermTyped*> &flaggedStructs = FlagStd140ValueStructs(mContext.treeRoot);
176 makeFlaggedStructMaps(flaggedStructs);
daniel@transgaming.com89431aa2012-05-31 01:20:29 +0000177
Jamie Madille53c98b2014-02-03 11:57:13 -0500178 // Work around D3D9 bug that would manifest in vertex shaders with selection blocks which
179 // use a vertex attribute as a condition, and some related computation in the else block.
Jamie Madill183bde52014-07-02 15:31:19 -0400180 if (mOutputType == SH_HLSL9_OUTPUT && mContext.shaderType == GL_VERTEX_SHADER)
Jamie Madille53c98b2014-02-03 11:57:13 -0500181 {
182 RewriteElseBlocks(mContext.treeRoot);
183 }
184
daniel@transgaming.com4af7acc2010-05-14 17:30:53 +0000185 mContext.treeRoot->traverse(this); // Output the body first to determine what has to go in the header
daniel@transgaming.com950f9932010-04-13 03:26:14 +0000186 header();
daniel@transgaming.com950f9932010-04-13 03:26:14 +0000187
alokp@chromium.org646ea1e2012-06-15 17:36:31 +0000188 mContext.infoSink().obj << mHeader.c_str();
189 mContext.infoSink().obj << mBody.c_str();
daniel@transgaming.com950f9932010-04-13 03:26:14 +0000190}
191
Jamie Madill570e04d2013-06-21 09:15:33 -0400192void OutputHLSL::makeFlaggedStructMaps(const std::vector<TIntermTyped *> &flaggedStructs)
193{
194 for (unsigned int structIndex = 0; structIndex < flaggedStructs.size(); structIndex++)
195 {
196 TIntermTyped *flaggedNode = flaggedStructs[structIndex];
197
198 // This will mark the necessary block elements as referenced
199 flaggedNode->traverse(this);
200 TString structName(mBody.c_str());
201 mBody.erase();
202
203 mFlaggedStructOriginalNames[flaggedNode] = structName;
204
205 for (size_t pos = structName.find('.'); pos != std::string::npos; pos = structName.find('.'))
206 {
207 structName.erase(pos, 1);
208 }
209
210 mFlaggedStructMappedNames[flaggedNode] = "map" + structName;
211 }
212}
213
daniel@transgaming.comb5875982010-04-15 20:44:53 +0000214TInfoSinkBase &OutputHLSL::getBodyStream()
215{
216 return mBody;
217}
218
Jamie Madill4e1fd412014-07-10 17:50:10 -0400219const std::map<std::string, unsigned int> &OutputHLSL::getInterfaceBlockRegisterMap() const
220{
221 return mUniformHLSL->getInterfaceBlockRegisterMap();
222}
223
Jamie Madill9fe25e92014-07-18 10:33:08 -0400224const std::map<std::string, unsigned int> &OutputHLSL::getUniformRegisterMap() const
225{
226 return mUniformHLSL->getUniformRegisterMap();
227}
228
daniel@transgaming.com0b6b8342010-04-26 15:33:45 +0000229int OutputHLSL::vectorSize(const TType &type) const
230{
shannonwoods@chromium.org9bd22fa2013-05-30 00:18:47 +0000231 int elementSize = type.isMatrix() ? type.getCols() : 1;
daniel@transgaming.com0b6b8342010-04-26 15:33:45 +0000232 int arraySize = type.isArray() ? type.getArraySize() : 1;
233
234 return elementSize * arraySize;
235}
236
Jamie Madill98493dd2013-07-08 14:39:03 -0400237TString OutputHLSL::structInitializerString(int indent, const TStructure &structure, const TString &rhsStructName)
Jamie Madill570e04d2013-06-21 09:15:33 -0400238{
239 TString init;
240
241 TString preIndentString;
242 TString fullIndentString;
243
244 for (int spaces = 0; spaces < (indent * 4); spaces++)
245 {
246 preIndentString += ' ';
247 }
248
249 for (int spaces = 0; spaces < ((indent+1) * 4); spaces++)
250 {
251 fullIndentString += ' ';
252 }
253
254 init += preIndentString + "{\n";
255
Jamie Madill98493dd2013-07-08 14:39:03 -0400256 const TFieldList &fields = structure.fields();
257 for (unsigned int fieldIndex = 0; fieldIndex < fields.size(); fieldIndex++)
Jamie Madill570e04d2013-06-21 09:15:33 -0400258 {
Jamie Madill98493dd2013-07-08 14:39:03 -0400259 const TField &field = *fields[fieldIndex];
Jamie Madill033dae62014-06-18 12:56:28 -0400260 const TString &fieldName = rhsStructName + "." + Decorate(field.name());
Jamie Madill98493dd2013-07-08 14:39:03 -0400261 const TType &fieldType = *field.type();
Jamie Madill570e04d2013-06-21 09:15:33 -0400262
Jamie Madill98493dd2013-07-08 14:39:03 -0400263 if (fieldType.getStruct())
Jamie Madill570e04d2013-06-21 09:15:33 -0400264 {
Jamie Madill98493dd2013-07-08 14:39:03 -0400265 init += structInitializerString(indent + 1, *fieldType.getStruct(), fieldName);
Jamie Madill570e04d2013-06-21 09:15:33 -0400266 }
267 else
268 {
Jamie Madill98493dd2013-07-08 14:39:03 -0400269 init += fullIndentString + fieldName + ",\n";
Jamie Madill570e04d2013-06-21 09:15:33 -0400270 }
271 }
272
273 init += preIndentString + "}" + (indent == 0 ? ";" : ",") + "\n";
274
275 return init;
276}
277
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000278void OutputHLSL::header()
279{
daniel@transgaming.com950f9932010-04-13 03:26:14 +0000280 TInfoSinkBase &out = mHeader;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000281
daniel@transgaming.com8803b852012-12-20 21:11:47 +0000282 TString varyings;
283 TString attributes;
Jamie Madill570e04d2013-06-21 09:15:33 -0400284 TString flaggedStructs;
daniel@transgaming.com8803b852012-12-20 21:11:47 +0000285
Jamie Madill829f59e2013-11-13 19:40:54 -0500286 for (std::map<TIntermTyped*, TString>::const_iterator flaggedStructIt = mFlaggedStructMappedNames.begin(); flaggedStructIt != mFlaggedStructMappedNames.end(); flaggedStructIt++)
Jamie Madill570e04d2013-06-21 09:15:33 -0400287 {
288 TIntermTyped *structNode = flaggedStructIt->first;
289 const TString &mappedName = flaggedStructIt->second;
Jamie Madill98493dd2013-07-08 14:39:03 -0400290 const TStructure &structure = *structNode->getType().getStruct();
Jamie Madill570e04d2013-06-21 09:15:33 -0400291 const TString &originalName = mFlaggedStructOriginalNames[structNode];
292
Jamie Madill033dae62014-06-18 12:56:28 -0400293 flaggedStructs += "static " + Decorate(structure.name()) + " " + mappedName + " =\n";
Jamie Madill98493dd2013-07-08 14:39:03 -0400294 flaggedStructs += structInitializerString(0, structure, originalName);
Jamie Madill570e04d2013-06-21 09:15:33 -0400295 flaggedStructs += "\n";
296 }
297
daniel@transgaming.com8803b852012-12-20 21:11:47 +0000298 for (ReferencedSymbols::const_iterator varying = mReferencedVaryings.begin(); varying != mReferencedVaryings.end(); varying++)
299 {
300 const TType &type = varying->second->getType();
301 const TString &name = varying->second->getSymbol();
302
303 // Program linking depends on this exact format
Jamie Madill033dae62014-06-18 12:56:28 -0400304 varyings += "static " + InterpolationString(type.getQualifier()) + " " + TypeString(type) + " " +
305 Decorate(name) + ArrayString(type) + " = " + initializer(type) + ";\n";
daniel@transgaming.com8803b852012-12-20 21:11:47 +0000306 }
307
308 for (ReferencedSymbols::const_iterator attribute = mReferencedAttributes.begin(); attribute != mReferencedAttributes.end(); attribute++)
309 {
310 const TType &type = attribute->second->getType();
311 const TString &name = attribute->second->getSymbol();
312
Jamie Madill033dae62014-06-18 12:56:28 -0400313 attributes += "static " + TypeString(type) + " " + Decorate(name) + ArrayString(type) + " = " + initializer(type) + ";\n";
daniel@transgaming.com8803b852012-12-20 21:11:47 +0000314 }
315
Jamie Madill8daaba12014-06-13 10:04:33 -0400316 out << mStructureHLSL->structsHeader();
Jamie Madill529077d2013-06-20 11:55:54 -0400317
Jamie Madillf91ce812014-06-13 10:04:34 -0400318 out << mUniformHLSL->uniformsHeader(mOutputType, mReferencedUniforms);
319 out << mUniformHLSL->interfaceBlocksHeader(mReferencedInterfaceBlocks);
320
Jamie Madill3c9eeb92013-11-04 11:09:26 -0500321 if (mUsesDiscardRewriting)
322 {
323 out << "#define ANGLE_USES_DISCARD_REWRITING" << "\n";
324 }
325
Nicolas Capens655fe362014-04-11 13:12:34 -0400326 if (mUsesNestedBreak)
327 {
328 out << "#define ANGLE_USES_NESTED_BREAK" << "\n";
329 }
330
Jamie Madill183bde52014-07-02 15:31:19 -0400331 if (mContext.shaderType == GL_FRAGMENT_SHADER)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000332 {
shannon.woods%transgaming.com@gtempaccount.comaa8b5cf2013-04-13 03:31:55 +0000333 TExtensionBehavior::const_iterator iter = mContext.extensionBehavior().find("GL_EXT_draw_buffers");
shannon.woods%transgaming.com@gtempaccount.com99ab6eb2013-04-13 03:42:00 +0000334 const bool usingMRTExtension = (iter != mContext.extensionBehavior().end() && (iter->second == EBhEnable || iter->second == EBhRequire));
shannon.woods%transgaming.com@gtempaccount.comaa8b5cf2013-04-13 03:31:55 +0000335
daniel@transgaming.com4af7acc2010-05-14 17:30:53 +0000336 out << "// Varyings\n";
337 out << varyings;
Jamie Madill46131a32013-06-20 11:55:50 -0400338 out << "\n";
339
340 if (mContext.getShaderVersion() >= 300)
shannon.woods%transgaming.com@gtempaccount.coma28864c2013-04-13 03:32:03 +0000341 {
Jamie Madill829f59e2013-11-13 19:40:54 -0500342 for (ReferencedSymbols::const_iterator outputVariableIt = mReferencedOutputVariables.begin(); outputVariableIt != mReferencedOutputVariables.end(); outputVariableIt++)
shannon.woods%transgaming.com@gtempaccount.coma28864c2013-04-13 03:32:03 +0000343 {
Jamie Madill46131a32013-06-20 11:55:50 -0400344 const TString &variableName = outputVariableIt->first;
345 const TType &variableType = outputVariableIt->second->getType();
Jamie Madill46131a32013-06-20 11:55:50 -0400346
Jamie Madill033dae62014-06-18 12:56:28 -0400347 out << "static " + TypeString(variableType) + " out_" + variableName + ArrayString(variableType) +
Jamie Madill46131a32013-06-20 11:55:50 -0400348 " = " + initializer(variableType) + ";\n";
shannon.woods%transgaming.com@gtempaccount.coma28864c2013-04-13 03:32:03 +0000349 }
shannon.woods%transgaming.com@gtempaccount.coma28864c2013-04-13 03:32:03 +0000350 }
Jamie Madill46131a32013-06-20 11:55:50 -0400351 else
352 {
353 const unsigned int numColorValues = usingMRTExtension ? mNumRenderTargets : 1;
354
355 out << "static float4 gl_Color[" << numColorValues << "] =\n"
356 "{\n";
357 for (unsigned int i = 0; i < numColorValues; i++)
358 {
359 out << " float4(0, 0, 0, 0)";
360 if (i + 1 != numColorValues)
361 {
362 out << ",";
363 }
364 out << "\n";
365 }
366
367 out << "};\n";
368 }
daniel@transgaming.com4af7acc2010-05-14 17:30:53 +0000369
Jamie Madill2aeb26a2013-07-08 14:02:55 -0400370 if (mUsesFragDepth)
371 {
372 out << "static float gl_Depth = 0.0;\n";
373 }
374
daniel@transgaming.com4af7acc2010-05-14 17:30:53 +0000375 if (mUsesFragCoord)
376 {
377 out << "static float4 gl_FragCoord = float4(0, 0, 0, 0);\n";
378 }
379
380 if (mUsesPointCoord)
381 {
382 out << "static float2 gl_PointCoord = float2(0.5, 0.5);\n";
383 }
384
385 if (mUsesFrontFacing)
386 {
387 out << "static bool gl_FrontFacing = false;\n";
388 }
389
390 out << "\n";
391
shannon.woods@transgaming.com46a5b872013-01-25 21:52:57 +0000392 if (mUsesDepthRange)
daniel@transgaming.com4af7acc2010-05-14 17:30:53 +0000393 {
shannon.woods@transgaming.com46a5b872013-01-25 21:52:57 +0000394 out << "struct gl_DepthRangeParameters\n"
395 "{\n"
396 " float near;\n"
397 " float far;\n"
398 " float diff;\n"
399 "};\n"
400 "\n";
daniel@transgaming.com4af7acc2010-05-14 17:30:53 +0000401 }
402
shannon.woods@transgaming.com46a5b872013-01-25 21:52:57 +0000403 if (mOutputType == SH_HLSL11_OUTPUT)
daniel@transgaming.com4af7acc2010-05-14 17:30:53 +0000404 {
shannon.woods@transgaming.com46a5b872013-01-25 21:52:57 +0000405 out << "cbuffer DriverConstants : register(b1)\n"
406 "{\n";
407
408 if (mUsesDepthRange)
409 {
410 out << " float3 dx_DepthRange : packoffset(c0);\n";
411 }
412
413 if (mUsesFragCoord)
414 {
shannon.woods@transgaming.coma14ecf32013-02-28 23:09:42 +0000415 out << " float4 dx_ViewCoords : packoffset(c1);\n";
shannon.woods@transgaming.com46a5b872013-01-25 21:52:57 +0000416 }
417
418 if (mUsesFragCoord || mUsesFrontFacing)
419 {
420 out << " float3 dx_DepthFront : packoffset(c2);\n";
421 }
422
423 out << "};\n";
424 }
425 else
426 {
427 if (mUsesDepthRange)
428 {
429 out << "uniform float3 dx_DepthRange : register(c0);";
430 }
431
432 if (mUsesFragCoord)
433 {
shannon.woods@transgaming.coma14ecf32013-02-28 23:09:42 +0000434 out << "uniform float4 dx_ViewCoords : register(c1);\n";
shannon.woods@transgaming.com46a5b872013-01-25 21:52:57 +0000435 }
436
437 if (mUsesFragCoord || mUsesFrontFacing)
438 {
439 out << "uniform float3 dx_DepthFront : register(c2);\n";
440 }
441 }
442
443 out << "\n";
444
445 if (mUsesDepthRange)
446 {
447 out << "static gl_DepthRangeParameters gl_DepthRange = {dx_DepthRange.x, dx_DepthRange.y, dx_DepthRange.z};\n"
448 "\n";
daniel@transgaming.com4af7acc2010-05-14 17:30:53 +0000449 }
daniel@transgaming.com5024cc42010-04-20 18:52:04 +0000450
Jamie Madillf91ce812014-06-13 10:04:34 -0400451 if (!flaggedStructs.empty())
shannonwoods@chromium.org4a643ae2013-05-30 00:12:27 +0000452 {
Jamie Madillf91ce812014-06-13 10:04:34 -0400453 out << "// Std140 Structures accessed by value\n";
shannonwoods@chromium.org4a643ae2013-05-30 00:12:27 +0000454 out << "\n";
Jamie Madillf91ce812014-06-13 10:04:34 -0400455 out << flaggedStructs;
456 out << "\n";
shannonwoods@chromium.org4a643ae2013-05-30 00:12:27 +0000457 }
458
shannon.woods%transgaming.com@gtempaccount.comaa8b5cf2013-04-13 03:31:55 +0000459 if (usingMRTExtension && mNumRenderTargets > 1)
460 {
461 out << "#define GL_USES_MRT\n";
462 }
463
464 if (mUsesFragColor)
465 {
466 out << "#define GL_USES_FRAG_COLOR\n";
467 }
468
469 if (mUsesFragData)
470 {
471 out << "#define GL_USES_FRAG_DATA\n";
472 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000473 }
daniel@transgaming.comd25ab252010-03-30 03:36:26 +0000474 else // Vertex shader
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000475 {
daniel@transgaming.com4af7acc2010-05-14 17:30:53 +0000476 out << "// Attributes\n";
477 out << attributes;
478 out << "\n"
479 "static float4 gl_Position = float4(0, 0, 0, 0);\n";
Jamie Madillf91ce812014-06-13 10:04:34 -0400480
daniel@transgaming.com4af7acc2010-05-14 17:30:53 +0000481 if (mUsesPointSize)
482 {
483 out << "static float gl_PointSize = float(1);\n";
484 }
485
486 out << "\n"
487 "// Varyings\n";
488 out << varyings;
shannon.woods@transgaming.com46a5b872013-01-25 21:52:57 +0000489 out << "\n";
490
491 if (mUsesDepthRange)
492 {
493 out << "struct gl_DepthRangeParameters\n"
494 "{\n"
495 " float near;\n"
496 " float far;\n"
497 " float diff;\n"
498 "};\n"
499 "\n";
500 }
501
502 if (mOutputType == SH_HLSL11_OUTPUT)
503 {
shannon.woods@transgaming.com46a5b872013-01-25 21:52:57 +0000504 if (mUsesDepthRange)
505 {
shannon.woods@transgaming.coma14ecf32013-02-28 23:09:42 +0000506 out << "cbuffer DriverConstants : register(b1)\n"
507 "{\n"
508 " float3 dx_DepthRange : packoffset(c0);\n"
509 "};\n"
510 "\n";
shannon.woods@transgaming.com46a5b872013-01-25 21:52:57 +0000511 }
shannon.woods@transgaming.com46a5b872013-01-25 21:52:57 +0000512 }
513 else
514 {
515 if (mUsesDepthRange)
516 {
517 out << "uniform float3 dx_DepthRange : register(c0);\n";
518 }
519
shannon.woods@transgaming.com42832a62013-02-28 23:18:38 +0000520 out << "uniform float4 dx_ViewAdjust : register(c1);\n"
shannon.woods@transgaming.coma14ecf32013-02-28 23:09:42 +0000521 "\n";
shannon.woods@transgaming.com46a5b872013-01-25 21:52:57 +0000522 }
523
shannon.woods@transgaming.com46a5b872013-01-25 21:52:57 +0000524 if (mUsesDepthRange)
525 {
526 out << "static gl_DepthRangeParameters gl_DepthRange = {dx_DepthRange.x, dx_DepthRange.y, dx_DepthRange.z};\n"
527 "\n";
528 }
529
Jamie Madillf91ce812014-06-13 10:04:34 -0400530 if (!flaggedStructs.empty())
shannonwoods@chromium.org4a643ae2013-05-30 00:12:27 +0000531 {
Jamie Madillf91ce812014-06-13 10:04:34 -0400532 out << "// Std140 Structures accessed by value\n";
shannonwoods@chromium.org4a643ae2013-05-30 00:12:27 +0000533 out << "\n";
Jamie Madillf91ce812014-06-13 10:04:34 -0400534 out << flaggedStructs;
535 out << "\n";
shannonwoods@chromium.org4a643ae2013-05-30 00:12:27 +0000536 }
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400537 }
shannonwoods@chromium.org4a643ae2013-05-30 00:12:27 +0000538
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400539 for (TextureFunctionSet::const_iterator textureFunction = mUsesTexture.begin(); textureFunction != mUsesTexture.end(); textureFunction++)
540 {
541 // Return type
Nicolas Capens75fb4752013-07-10 15:14:47 -0400542 if (textureFunction->method == TextureFunction::SIZE)
daniel@transgaming.com15795192011-05-11 15:36:20 +0000543 {
Nicolas Capens75fb4752013-07-10 15:14:47 -0400544 switch(textureFunction->sampler)
545 {
Nicolas Capenscb127d32013-07-15 17:26:18 -0400546 case EbtSampler2D: out << "int2 "; break;
547 case EbtSampler3D: out << "int3 "; break;
548 case EbtSamplerCube: out << "int2 "; break;
549 case EbtSampler2DArray: out << "int3 "; break;
550 case EbtISampler2D: out << "int2 "; break;
551 case EbtISampler3D: out << "int3 "; break;
552 case EbtISamplerCube: out << "int2 "; break;
553 case EbtISampler2DArray: out << "int3 "; break;
554 case EbtUSampler2D: out << "int2 "; break;
555 case EbtUSampler3D: out << "int3 "; break;
556 case EbtUSamplerCube: out << "int2 "; break;
557 case EbtUSampler2DArray: out << "int3 "; break;
558 case EbtSampler2DShadow: out << "int2 "; break;
559 case EbtSamplerCubeShadow: out << "int2 "; break;
560 case EbtSampler2DArrayShadow: out << "int3 "; break;
Nicolas Capens75fb4752013-07-10 15:14:47 -0400561 default: UNREACHABLE();
562 }
563 }
564 else // Sampling function
565 {
566 switch(textureFunction->sampler)
567 {
Nicolas Capenscb127d32013-07-15 17:26:18 -0400568 case EbtSampler2D: out << "float4 "; break;
569 case EbtSampler3D: out << "float4 "; break;
570 case EbtSamplerCube: out << "float4 "; break;
571 case EbtSampler2DArray: out << "float4 "; break;
572 case EbtISampler2D: out << "int4 "; break;
573 case EbtISampler3D: out << "int4 "; break;
574 case EbtISamplerCube: out << "int4 "; break;
575 case EbtISampler2DArray: out << "int4 "; break;
576 case EbtUSampler2D: out << "uint4 "; break;
577 case EbtUSampler3D: out << "uint4 "; break;
578 case EbtUSamplerCube: out << "uint4 "; break;
579 case EbtUSampler2DArray: out << "uint4 "; break;
580 case EbtSampler2DShadow: out << "float "; break;
581 case EbtSamplerCubeShadow: out << "float "; break;
582 case EbtSampler2DArrayShadow: out << "float "; break;
Nicolas Capens75fb4752013-07-10 15:14:47 -0400583 default: UNREACHABLE();
584 }
daniel@transgaming.com15795192011-05-11 15:36:20 +0000585 }
586
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400587 // Function name
588 out << textureFunction->name();
589
590 // Argument list
591 int hlslCoords = 4;
592
593 if (mOutputType == SH_HLSL9_OUTPUT)
daniel@transgaming.com15795192011-05-11 15:36:20 +0000594 {
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400595 switch(textureFunction->sampler)
shannon.woods@transgaming.comfb256be2013-01-25 21:49:25 +0000596 {
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400597 case EbtSampler2D: out << "sampler2D s"; hlslCoords = 2; break;
598 case EbtSamplerCube: out << "samplerCUBE s"; hlslCoords = 3; break;
599 default: UNREACHABLE();
shannon.woods@transgaming.comfb256be2013-01-25 21:49:25 +0000600 }
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400601
Nicolas Capens75fb4752013-07-10 15:14:47 -0400602 switch(textureFunction->method)
shannon.woods@transgaming.comfb256be2013-01-25 21:49:25 +0000603 {
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400604 case TextureFunction::IMPLICIT: break;
605 case TextureFunction::BIAS: hlslCoords = 4; break;
606 case TextureFunction::LOD: hlslCoords = 4; break;
607 case TextureFunction::LOD0: hlslCoords = 4; break;
Nicolas Capens84cfa122014-04-14 13:48:45 -0400608 case TextureFunction::LOD0BIAS: hlslCoords = 4; break;
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400609 default: UNREACHABLE();
shannon.woods@transgaming.comfb256be2013-01-25 21:49:25 +0000610 }
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400611 }
612 else if (mOutputType == SH_HLSL11_OUTPUT)
613 {
614 switch(textureFunction->sampler)
615 {
Nicolas Capenscb127d32013-07-15 17:26:18 -0400616 case EbtSampler2D: out << "Texture2D x, SamplerState s"; hlslCoords = 2; break;
617 case EbtSampler3D: out << "Texture3D x, SamplerState s"; hlslCoords = 3; break;
618 case EbtSamplerCube: out << "TextureCube x, SamplerState s"; hlslCoords = 3; break;
619 case EbtSampler2DArray: out << "Texture2DArray x, SamplerState s"; hlslCoords = 3; break;
620 case EbtISampler2D: out << "Texture2D<int4> x, SamplerState s"; hlslCoords = 2; break;
621 case EbtISampler3D: out << "Texture3D<int4> x, SamplerState s"; hlslCoords = 3; break;
Nicolas Capens0027fa92014-02-20 14:26:42 -0500622 case EbtISamplerCube: out << "Texture2DArray<int4> x, SamplerState s"; hlslCoords = 3; break;
Nicolas Capenscb127d32013-07-15 17:26:18 -0400623 case EbtISampler2DArray: out << "Texture2DArray<int4> x, SamplerState s"; hlslCoords = 3; break;
624 case EbtUSampler2D: out << "Texture2D<uint4> x, SamplerState s"; hlslCoords = 2; break;
625 case EbtUSampler3D: out << "Texture3D<uint4> x, SamplerState s"; hlslCoords = 3; break;
Nicolas Capens0027fa92014-02-20 14:26:42 -0500626 case EbtUSamplerCube: out << "Texture2DArray<uint4> x, SamplerState s"; hlslCoords = 3; break;
Nicolas Capenscb127d32013-07-15 17:26:18 -0400627 case EbtUSampler2DArray: out << "Texture2DArray<uint4> x, SamplerState s"; hlslCoords = 3; break;
628 case EbtSampler2DShadow: out << "Texture2D x, SamplerComparisonState s"; hlslCoords = 2; break;
629 case EbtSamplerCubeShadow: out << "TextureCube x, SamplerComparisonState s"; hlslCoords = 3; break;
630 case EbtSampler2DArrayShadow: out << "Texture2DArray x, SamplerComparisonState s"; hlslCoords = 3; break;
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400631 default: UNREACHABLE();
632 }
633 }
634 else UNREACHABLE();
635
Nicolas Capensfc014542014-02-18 14:47:13 -0500636 if (textureFunction->method == TextureFunction::FETCH) // Integer coordinates
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400637 {
Nicolas Capensfc014542014-02-18 14:47:13 -0500638 switch(textureFunction->coords)
639 {
640 case 2: out << ", int2 t"; break;
641 case 3: out << ", int3 t"; break;
642 default: UNREACHABLE();
643 }
644 }
645 else // Floating-point coordinates (except textureSize)
646 {
647 switch(textureFunction->coords)
648 {
649 case 1: out << ", int lod"; break; // textureSize()
650 case 2: out << ", float2 t"; break;
651 case 3: out << ", float3 t"; break;
652 case 4: out << ", float4 t"; break;
653 default: UNREACHABLE();
654 }
daniel@transgaming.com15795192011-05-11 15:36:20 +0000655 }
656
Nicolas Capensd11d5492014-02-19 17:06:10 -0500657 if (textureFunction->method == TextureFunction::GRAD)
658 {
659 switch(textureFunction->sampler)
660 {
661 case EbtSampler2D:
662 case EbtISampler2D:
663 case EbtUSampler2D:
664 case EbtSampler2DArray:
665 case EbtISampler2DArray:
666 case EbtUSampler2DArray:
667 case EbtSampler2DShadow:
668 case EbtSampler2DArrayShadow:
669 out << ", float2 ddx, float2 ddy";
670 break;
671 case EbtSampler3D:
672 case EbtISampler3D:
673 case EbtUSampler3D:
674 case EbtSamplerCube:
675 case EbtISamplerCube:
676 case EbtUSamplerCube:
677 case EbtSamplerCubeShadow:
678 out << ", float3 ddx, float3 ddy";
679 break;
680 default: UNREACHABLE();
681 }
682 }
683
Nicolas Capens75fb4752013-07-10 15:14:47 -0400684 switch(textureFunction->method)
daniel@transgaming.com15795192011-05-11 15:36:20 +0000685 {
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400686 case TextureFunction::IMPLICIT: break;
Nicolas Capens84cfa122014-04-14 13:48:45 -0400687 case TextureFunction::BIAS: break; // Comes after the offset parameter
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400688 case TextureFunction::LOD: out << ", float lod"; break;
689 case TextureFunction::LOD0: break;
Nicolas Capens84cfa122014-04-14 13:48:45 -0400690 case TextureFunction::LOD0BIAS: break; // Comes after the offset parameter
Nicolas Capens75fb4752013-07-10 15:14:47 -0400691 case TextureFunction::SIZE: break;
Nicolas Capensfc014542014-02-18 14:47:13 -0500692 case TextureFunction::FETCH: out << ", int mip"; break;
Nicolas Capensd11d5492014-02-19 17:06:10 -0500693 case TextureFunction::GRAD: break;
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400694 default: UNREACHABLE();
daniel@transgaming.com15795192011-05-11 15:36:20 +0000695 }
696
Nicolas Capensb1f45b72013-12-19 17:37:19 -0500697 if (textureFunction->offset)
698 {
699 switch(textureFunction->sampler)
700 {
701 case EbtSampler2D: out << ", int2 offset"; break;
702 case EbtSampler3D: out << ", int3 offset"; break;
703 case EbtSampler2DArray: out << ", int2 offset"; break;
704 case EbtISampler2D: out << ", int2 offset"; break;
705 case EbtISampler3D: out << ", int3 offset"; break;
706 case EbtISampler2DArray: out << ", int2 offset"; break;
707 case EbtUSampler2D: out << ", int2 offset"; break;
708 case EbtUSampler3D: out << ", int3 offset"; break;
709 case EbtUSampler2DArray: out << ", int2 offset"; break;
710 case EbtSampler2DShadow: out << ", int2 offset"; break;
Nicolas Capensbf7db102014-02-19 17:20:28 -0500711 case EbtSampler2DArrayShadow: out << ", int2 offset"; break;
Nicolas Capensb1f45b72013-12-19 17:37:19 -0500712 default: UNREACHABLE();
713 }
714 }
715
Nicolas Capens84cfa122014-04-14 13:48:45 -0400716 if (textureFunction->method == TextureFunction::BIAS ||
717 textureFunction->method == TextureFunction::LOD0BIAS)
Nicolas Capensb1f45b72013-12-19 17:37:19 -0500718 {
719 out << ", float bias";
720 }
721
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400722 out << ")\n"
Nicolas Capens6d232bb2013-07-08 15:56:38 -0400723 "{\n";
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400724
Nicolas Capens75fb4752013-07-10 15:14:47 -0400725 if (textureFunction->method == TextureFunction::SIZE)
726 {
727 if (IsSampler2D(textureFunction->sampler) || IsSamplerCube(textureFunction->sampler))
728 {
729 if (IsSamplerArray(textureFunction->sampler))
730 {
731 out << " uint width; uint height; uint layers; uint numberOfLevels;\n"
732 " x.GetDimensions(lod, width, height, layers, numberOfLevels);\n";
733 }
734 else
735 {
736 out << " uint width; uint height; uint numberOfLevels;\n"
737 " x.GetDimensions(lod, width, height, numberOfLevels);\n";
738 }
739 }
740 else if (IsSampler3D(textureFunction->sampler))
741 {
742 out << " uint width; uint height; uint depth; uint numberOfLevels;\n"
743 " x.GetDimensions(lod, width, height, depth, numberOfLevels);\n";
744 }
745 else UNREACHABLE();
746
747 switch(textureFunction->sampler)
748 {
Nicolas Capenscb127d32013-07-15 17:26:18 -0400749 case EbtSampler2D: out << " return int2(width, height);"; break;
750 case EbtSampler3D: out << " return int3(width, height, depth);"; break;
751 case EbtSamplerCube: out << " return int2(width, height);"; break;
752 case EbtSampler2DArray: out << " return int3(width, height, layers);"; break;
753 case EbtISampler2D: out << " return int2(width, height);"; break;
754 case EbtISampler3D: out << " return int3(width, height, depth);"; break;
755 case EbtISamplerCube: out << " return int2(width, height);"; break;
756 case EbtISampler2DArray: out << " return int3(width, height, layers);"; break;
757 case EbtUSampler2D: out << " return int2(width, height);"; break;
758 case EbtUSampler3D: out << " return int3(width, height, depth);"; break;
759 case EbtUSamplerCube: out << " return int2(width, height);"; break;
760 case EbtUSampler2DArray: out << " return int3(width, height, layers);"; break;
761 case EbtSampler2DShadow: out << " return int2(width, height);"; break;
762 case EbtSamplerCubeShadow: out << " return int2(width, height);"; break;
763 case EbtSampler2DArrayShadow: out << " return int3(width, height, layers);"; break;
Nicolas Capens75fb4752013-07-10 15:14:47 -0400764 default: UNREACHABLE();
765 }
766 }
Nicolas Capens6d232bb2013-07-08 15:56:38 -0400767 else
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400768 {
Nicolas Capens0027fa92014-02-20 14:26:42 -0500769 if (IsIntegerSampler(textureFunction->sampler) && IsSamplerCube(textureFunction->sampler))
770 {
771 out << " float width; float height; float layers; float levels;\n";
772
773 out << " uint mip = 0;\n";
774
775 out << " x.GetDimensions(mip, width, height, layers, levels);\n";
776
777 out << " bool xMajor = abs(t.x) > abs(t.y) && abs(t.x) > abs(t.z);\n";
778 out << " bool yMajor = abs(t.y) > abs(t.z) && abs(t.y) > abs(t.x);\n";
779 out << " bool zMajor = abs(t.z) > abs(t.x) && abs(t.z) > abs(t.y);\n";
780 out << " bool negative = (xMajor && t.x < 0.0f) || (yMajor && t.y < 0.0f) || (zMajor && t.z < 0.0f);\n";
781
782 // FACE_POSITIVE_X = 000b
783 // FACE_NEGATIVE_X = 001b
784 // FACE_POSITIVE_Y = 010b
785 // FACE_NEGATIVE_Y = 011b
786 // FACE_POSITIVE_Z = 100b
787 // FACE_NEGATIVE_Z = 101b
788 out << " int face = (int)negative + (int)yMajor * 2 + (int)zMajor * 4;\n";
789
790 out << " float u = xMajor ? -t.z : (yMajor && t.y < 0.0f ? -t.x : t.x);\n";
791 out << " float v = yMajor ? t.z : (negative ? t.y : -t.y);\n";
792 out << " float m = xMajor ? t.x : (yMajor ? t.y : t.z);\n";
793
794 out << " t.x = (u * 0.5f / m) + 0.5f;\n";
795 out << " t.y = (v * 0.5f / m) + 0.5f;\n";
796 }
797 else if (IsIntegerSampler(textureFunction->sampler) &&
798 textureFunction->method != TextureFunction::FETCH)
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400799 {
Nicolas Capens6d232bb2013-07-08 15:56:38 -0400800 if (IsSampler2D(textureFunction->sampler))
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400801 {
Nicolas Capens93e50de2013-07-09 13:46:28 -0400802 if (IsSamplerArray(textureFunction->sampler))
803 {
Nicolas Capens9edebd62013-08-06 10:59:10 -0400804 out << " float width; float height; float layers; float levels;\n";
Nicolas Capens84cfa122014-04-14 13:48:45 -0400805
Nicolas Capens9edebd62013-08-06 10:59:10 -0400806 if (textureFunction->method == TextureFunction::LOD0)
807 {
808 out << " uint mip = 0;\n";
809 }
Nicolas Capens84cfa122014-04-14 13:48:45 -0400810 else if (textureFunction->method == TextureFunction::LOD0BIAS)
811 {
812 out << " uint mip = bias;\n";
813 }
Nicolas Capens9edebd62013-08-06 10:59:10 -0400814 else
815 {
816 if (textureFunction->method == TextureFunction::IMPLICIT ||
817 textureFunction->method == TextureFunction::BIAS)
818 {
819 out << " x.GetDimensions(0, width, height, layers, levels);\n"
820 " float2 tSized = float2(t.x * width, t.y * height);\n"
821 " float dx = length(ddx(tSized));\n"
822 " float dy = length(ddy(tSized));\n"
Jamie Madill03847b62013-11-13 19:42:39 -0500823 " float lod = log2(max(dx, dy));\n";
Nicolas Capens9edebd62013-08-06 10:59:10 -0400824
825 if (textureFunction->method == TextureFunction::BIAS)
826 {
827 out << " lod += bias;\n";
828 }
829 }
Nicolas Capensd11d5492014-02-19 17:06:10 -0500830 else if (textureFunction->method == TextureFunction::GRAD)
831 {
832 out << " x.GetDimensions(0, width, height, layers, levels);\n"
833 " float lod = log2(max(length(ddx), length(ddy)));\n";
834 }
Nicolas Capens9edebd62013-08-06 10:59:10 -0400835
836 out << " uint mip = uint(min(max(round(lod), 0), levels - 1));\n";
837 }
838
839 out << " x.GetDimensions(mip, width, height, layers, levels);\n";
Nicolas Capens93e50de2013-07-09 13:46:28 -0400840 }
841 else
842 {
Nicolas Capens9edebd62013-08-06 10:59:10 -0400843 out << " float width; float height; float levels;\n";
Nicolas Capens84cfa122014-04-14 13:48:45 -0400844
Nicolas Capens9edebd62013-08-06 10:59:10 -0400845 if (textureFunction->method == TextureFunction::LOD0)
846 {
847 out << " uint mip = 0;\n";
848 }
Nicolas Capens84cfa122014-04-14 13:48:45 -0400849 else if (textureFunction->method == TextureFunction::LOD0BIAS)
850 {
851 out << " uint mip = bias;\n";
852 }
Nicolas Capens9edebd62013-08-06 10:59:10 -0400853 else
854 {
855 if (textureFunction->method == TextureFunction::IMPLICIT ||
856 textureFunction->method == TextureFunction::BIAS)
857 {
858 out << " x.GetDimensions(0, width, height, levels);\n"
859 " float2 tSized = float2(t.x * width, t.y * height);\n"
860 " float dx = length(ddx(tSized));\n"
861 " float dy = length(ddy(tSized));\n"
Jamie Madill03847b62013-11-13 19:42:39 -0500862 " float lod = log2(max(dx, dy));\n";
Nicolas Capens9edebd62013-08-06 10:59:10 -0400863
864 if (textureFunction->method == TextureFunction::BIAS)
865 {
866 out << " lod += bias;\n";
867 }
868 }
Nicolas Capens2adc2562014-02-14 23:50:59 -0500869 else if (textureFunction->method == TextureFunction::LOD)
870 {
871 out << " x.GetDimensions(0, width, height, levels);\n";
872 }
Nicolas Capensd11d5492014-02-19 17:06:10 -0500873 else if (textureFunction->method == TextureFunction::GRAD)
874 {
875 out << " x.GetDimensions(0, width, height, levels);\n"
876 " float lod = log2(max(length(ddx), length(ddy)));\n";
877 }
Nicolas Capens9edebd62013-08-06 10:59:10 -0400878
879 out << " uint mip = uint(min(max(round(lod), 0), levels - 1));\n";
880 }
881
882 out << " x.GetDimensions(mip, width, height, levels);\n";
Nicolas Capens93e50de2013-07-09 13:46:28 -0400883 }
Nicolas Capens6d232bb2013-07-08 15:56:38 -0400884 }
885 else if (IsSampler3D(textureFunction->sampler))
886 {
Nicolas Capens9edebd62013-08-06 10:59:10 -0400887 out << " float width; float height; float depth; float levels;\n";
Nicolas Capens84cfa122014-04-14 13:48:45 -0400888
Nicolas Capens9edebd62013-08-06 10:59:10 -0400889 if (textureFunction->method == TextureFunction::LOD0)
890 {
891 out << " uint mip = 0;\n";
892 }
Nicolas Capens84cfa122014-04-14 13:48:45 -0400893 else if (textureFunction->method == TextureFunction::LOD0BIAS)
894 {
895 out << " uint mip = bias;\n";
896 }
Nicolas Capens9edebd62013-08-06 10:59:10 -0400897 else
898 {
899 if (textureFunction->method == TextureFunction::IMPLICIT ||
900 textureFunction->method == TextureFunction::BIAS)
901 {
902 out << " x.GetDimensions(0, width, height, depth, levels);\n"
903 " float3 tSized = float3(t.x * width, t.y * height, t.z * depth);\n"
904 " float dx = length(ddx(tSized));\n"
905 " float dy = length(ddy(tSized));\n"
Jamie Madill03847b62013-11-13 19:42:39 -0500906 " float lod = log2(max(dx, dy));\n";
Nicolas Capens9edebd62013-08-06 10:59:10 -0400907
908 if (textureFunction->method == TextureFunction::BIAS)
909 {
910 out << " lod += bias;\n";
911 }
912 }
Nicolas Capensd11d5492014-02-19 17:06:10 -0500913 else if (textureFunction->method == TextureFunction::GRAD)
914 {
915 out << " x.GetDimensions(0, width, height, depth, levels);\n"
916 " float lod = log2(max(length(ddx), length(ddy)));\n";
917 }
Nicolas Capens9edebd62013-08-06 10:59:10 -0400918
919 out << " uint mip = uint(min(max(round(lod), 0), levels - 1));\n";
920 }
921
922 out << " x.GetDimensions(mip, width, height, depth, levels);\n";
Nicolas Capens6d232bb2013-07-08 15:56:38 -0400923 }
924 else UNREACHABLE();
925 }
926
927 out << " return ";
928
929 // HLSL intrinsic
930 if (mOutputType == SH_HLSL9_OUTPUT)
931 {
932 switch(textureFunction->sampler)
933 {
934 case EbtSampler2D: out << "tex2D"; break;
935 case EbtSamplerCube: out << "texCUBE"; break;
936 default: UNREACHABLE();
937 }
938
Nicolas Capens75fb4752013-07-10 15:14:47 -0400939 switch(textureFunction->method)
Nicolas Capens6d232bb2013-07-08 15:56:38 -0400940 {
941 case TextureFunction::IMPLICIT: out << "(s, "; break;
942 case TextureFunction::BIAS: out << "bias(s, "; break;
943 case TextureFunction::LOD: out << "lod(s, "; break;
944 case TextureFunction::LOD0: out << "lod(s, "; break;
Nicolas Capens84cfa122014-04-14 13:48:45 -0400945 case TextureFunction::LOD0BIAS: out << "lod(s, "; break;
Nicolas Capens6d232bb2013-07-08 15:56:38 -0400946 default: UNREACHABLE();
947 }
948 }
949 else if (mOutputType == SH_HLSL11_OUTPUT)
950 {
Nicolas Capensd11d5492014-02-19 17:06:10 -0500951 if (textureFunction->method == TextureFunction::GRAD)
952 {
953 if (IsIntegerSampler(textureFunction->sampler))
954 {
955 out << "x.Load(";
956 }
957 else if (IsShadowSampler(textureFunction->sampler))
958 {
959 out << "x.SampleCmpLevelZero(s, ";
960 }
961 else
962 {
963 out << "x.SampleGrad(s, ";
964 }
965 }
966 else if (IsIntegerSampler(textureFunction->sampler) ||
967 textureFunction->method == TextureFunction::FETCH)
Nicolas Capens6d232bb2013-07-08 15:56:38 -0400968 {
969 out << "x.Load(";
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400970 }
Nicolas Capenscb127d32013-07-15 17:26:18 -0400971 else if (IsShadowSampler(textureFunction->sampler))
972 {
973 out << "x.SampleCmp(s, ";
974 }
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400975 else
976 {
Nicolas Capens75fb4752013-07-10 15:14:47 -0400977 switch(textureFunction->method)
Nicolas Capens6d232bb2013-07-08 15:56:38 -0400978 {
979 case TextureFunction::IMPLICIT: out << "x.Sample(s, "; break;
980 case TextureFunction::BIAS: out << "x.SampleBias(s, "; break;
981 case TextureFunction::LOD: out << "x.SampleLevel(s, "; break;
982 case TextureFunction::LOD0: out << "x.SampleLevel(s, "; break;
Nicolas Capens84cfa122014-04-14 13:48:45 -0400983 case TextureFunction::LOD0BIAS: out << "x.SampleLevel(s, "; break;
Nicolas Capens6d232bb2013-07-08 15:56:38 -0400984 default: UNREACHABLE();
985 }
Nicolas Capense0ba27a2013-06-24 16:10:52 -0400986 }
Nicolas Capens9fe6f982013-06-24 16:05:25 -0400987 }
Nicolas Capens6d232bb2013-07-08 15:56:38 -0400988 else UNREACHABLE();
Nicolas Capens9fe6f982013-06-24 16:05:25 -0400989
Nicolas Capens6d232bb2013-07-08 15:56:38 -0400990 // Integer sampling requires integer addresses
991 TString addressx = "";
992 TString addressy = "";
993 TString addressz = "";
994 TString close = "";
995
Nicolas Capensfc014542014-02-18 14:47:13 -0500996 if (IsIntegerSampler(textureFunction->sampler) ||
997 textureFunction->method == TextureFunction::FETCH)
Nicolas Capens9fe6f982013-06-24 16:05:25 -0400998 {
Nicolas Capens6d232bb2013-07-08 15:56:38 -0400999 switch(hlslCoords)
Nicolas Capense0ba27a2013-06-24 16:10:52 -04001000 {
Nicolas Capens6d232bb2013-07-08 15:56:38 -04001001 case 2: out << "int3("; break;
1002 case 3: out << "int4("; break;
1003 default: UNREACHABLE();
1004 }
Jamie Madillf91ce812014-06-13 10:04:34 -04001005
Nicolas Capensfc014542014-02-18 14:47:13 -05001006 // Convert from normalized floating-point to integer
1007 if (textureFunction->method != TextureFunction::FETCH)
Nicolas Capens93e50de2013-07-09 13:46:28 -04001008 {
Nicolas Capensfc014542014-02-18 14:47:13 -05001009 addressx = "int(floor(width * frac((";
1010 addressy = "int(floor(height * frac((";
Nicolas Capens93e50de2013-07-09 13:46:28 -04001011
Nicolas Capensfc014542014-02-18 14:47:13 -05001012 if (IsSamplerArray(textureFunction->sampler))
1013 {
1014 addressz = "int(max(0, min(layers - 1, floor(0.5 + ";
1015 }
Nicolas Capens0027fa92014-02-20 14:26:42 -05001016 else if (IsSamplerCube(textureFunction->sampler))
1017 {
1018 addressz = "((((";
1019 }
Nicolas Capensfc014542014-02-18 14:47:13 -05001020 else
1021 {
1022 addressz = "int(floor(depth * frac((";
1023 }
1024
1025 close = "))))";
1026 }
Nicolas Capens6d232bb2013-07-08 15:56:38 -04001027 }
1028 else
1029 {
1030 switch(hlslCoords)
1031 {
1032 case 2: out << "float2("; break;
1033 case 3: out << "float3("; break;
1034 case 4: out << "float4("; break;
Nicolas Capense0ba27a2013-06-24 16:10:52 -04001035 default: UNREACHABLE();
1036 }
Nicolas Capens9fe6f982013-06-24 16:05:25 -04001037 }
Nicolas Capens9fe6f982013-06-24 16:05:25 -04001038
Nicolas Capens6d232bb2013-07-08 15:56:38 -04001039 TString proj = ""; // Only used for projected textures
Jamie Madillf91ce812014-06-13 10:04:34 -04001040
Nicolas Capens6d232bb2013-07-08 15:56:38 -04001041 if (textureFunction->proj)
Nicolas Capense0ba27a2013-06-24 16:10:52 -04001042 {
Nicolas Capens6d232bb2013-07-08 15:56:38 -04001043 switch(textureFunction->coords)
1044 {
1045 case 3: proj = " / t.z"; break;
1046 case 4: proj = " / t.w"; break;
1047 default: UNREACHABLE();
1048 }
Nicolas Capense0ba27a2013-06-24 16:10:52 -04001049 }
daniel@transgaming.com15795192011-05-11 15:36:20 +00001050
Nicolas Capens6d232bb2013-07-08 15:56:38 -04001051 out << addressx + ("t.x" + proj) + close + ", " + addressy + ("t.y" + proj) + close;
Nicolas Capense0ba27a2013-06-24 16:10:52 -04001052
Nicolas Capens6d232bb2013-07-08 15:56:38 -04001053 if (mOutputType == SH_HLSL9_OUTPUT)
1054 {
1055 if (hlslCoords >= 3)
1056 {
1057 if (textureFunction->coords < 3)
1058 {
1059 out << ", 0";
1060 }
1061 else
1062 {
1063 out << ", t.z" + proj;
1064 }
1065 }
1066
1067 if (hlslCoords == 4)
1068 {
Nicolas Capens75fb4752013-07-10 15:14:47 -04001069 switch(textureFunction->method)
Nicolas Capens6d232bb2013-07-08 15:56:38 -04001070 {
Nicolas Capens84cfa122014-04-14 13:48:45 -04001071 case TextureFunction::BIAS: out << ", bias"; break;
1072 case TextureFunction::LOD: out << ", lod"; break;
1073 case TextureFunction::LOD0: out << ", 0"; break;
1074 case TextureFunction::LOD0BIAS: out << ", bias"; break;
Nicolas Capens6d232bb2013-07-08 15:56:38 -04001075 default: UNREACHABLE();
1076 }
1077 }
1078
1079 out << "));\n";
1080 }
1081 else if (mOutputType == SH_HLSL11_OUTPUT)
1082 {
1083 if (hlslCoords >= 3)
1084 {
Nicolas Capens0027fa92014-02-20 14:26:42 -05001085 if (IsIntegerSampler(textureFunction->sampler) && IsSamplerCube(textureFunction->sampler))
1086 {
1087 out << ", face";
1088 }
1089 else
1090 {
1091 out << ", " + addressz + ("t.z" + proj) + close;
1092 }
Nicolas Capens6d232bb2013-07-08 15:56:38 -04001093 }
1094
Nicolas Capensd11d5492014-02-19 17:06:10 -05001095 if (textureFunction->method == TextureFunction::GRAD)
1096 {
1097 if (IsIntegerSampler(textureFunction->sampler))
1098 {
Nicolas Capens0027fa92014-02-20 14:26:42 -05001099 out << ", mip)";
Nicolas Capensd11d5492014-02-19 17:06:10 -05001100 }
1101 else if (IsShadowSampler(textureFunction->sampler))
1102 {
Nicolas Capens0027fa92014-02-20 14:26:42 -05001103 // Compare value
Nicolas Capensd11d5492014-02-19 17:06:10 -05001104 switch(textureFunction->coords)
1105 {
1106 case 3: out << "), t.z"; break;
1107 case 4: out << "), t.w"; break;
1108 default: UNREACHABLE();
1109 }
1110 }
1111 else
1112 {
1113 out << "), ddx, ddy";
1114 }
1115 }
1116 else if (IsIntegerSampler(textureFunction->sampler) ||
1117 textureFunction->method == TextureFunction::FETCH)
Nicolas Capenscb127d32013-07-15 17:26:18 -04001118 {
Nicolas Capensb1f45b72013-12-19 17:37:19 -05001119 out << ", mip)";
Nicolas Capenscb127d32013-07-15 17:26:18 -04001120 }
1121 else if (IsShadowSampler(textureFunction->sampler))
1122 {
1123 // Compare value
1124 switch(textureFunction->coords)
1125 {
Nicolas Capensb1f45b72013-12-19 17:37:19 -05001126 case 3: out << "), t.z"; break;
1127 case 4: out << "), t.w"; break;
Nicolas Capenscb127d32013-07-15 17:26:18 -04001128 default: UNREACHABLE();
1129 }
1130 }
1131 else
Nicolas Capens6d232bb2013-07-08 15:56:38 -04001132 {
Nicolas Capens75fb4752013-07-10 15:14:47 -04001133 switch(textureFunction->method)
Nicolas Capens6d232bb2013-07-08 15:56:38 -04001134 {
Nicolas Capensb1f45b72013-12-19 17:37:19 -05001135 case TextureFunction::IMPLICIT: out << ")"; break;
1136 case TextureFunction::BIAS: out << "), bias"; break;
1137 case TextureFunction::LOD: out << "), lod"; break;
1138 case TextureFunction::LOD0: out << "), 0"; break;
Nicolas Capens84cfa122014-04-14 13:48:45 -04001139 case TextureFunction::LOD0BIAS: out << "), bias"; break;
Nicolas Capens6d232bb2013-07-08 15:56:38 -04001140 default: UNREACHABLE();
1141 }
1142 }
Nicolas Capensb1f45b72013-12-19 17:37:19 -05001143
1144 if (textureFunction->offset)
1145 {
1146 out << ", offset";
1147 }
1148
1149 out << ");";
Nicolas Capens6d232bb2013-07-08 15:56:38 -04001150 }
1151 else UNREACHABLE();
1152 }
1153
1154 out << "\n"
1155 "}\n"
Nicolas Capense0ba27a2013-06-24 16:10:52 -04001156 "\n";
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001157 }
1158
daniel@transgaming.com4af7acc2010-05-14 17:30:53 +00001159 if (mUsesFragCoord)
1160 {
1161 out << "#define GL_USES_FRAG_COORD\n";
1162 }
1163
1164 if (mUsesPointCoord)
1165 {
1166 out << "#define GL_USES_POINT_COORD\n";
1167 }
1168
1169 if (mUsesFrontFacing)
1170 {
1171 out << "#define GL_USES_FRONT_FACING\n";
1172 }
1173
1174 if (mUsesPointSize)
1175 {
1176 out << "#define GL_USES_POINT_SIZE\n";
1177 }
1178
Jamie Madill2aeb26a2013-07-08 14:02:55 -04001179 if (mUsesFragDepth)
1180 {
1181 out << "#define GL_USES_FRAG_DEPTH\n";
1182 }
1183
shannonwoods@chromium.org03299882013-05-30 00:05:26 +00001184 if (mUsesDepthRange)
1185 {
1186 out << "#define GL_USES_DEPTH_RANGE\n";
1187 }
1188
daniel@transgaming.comd7c98102010-05-14 17:30:48 +00001189 if (mUsesXor)
1190 {
1191 out << "bool xor(bool p, bool q)\n"
1192 "{\n"
1193 " return (p || q) && !(p && q);\n"
1194 "}\n"
1195 "\n";
1196 }
1197
1198 if (mUsesMod1)
1199 {
1200 out << "float mod(float x, float y)\n"
1201 "{\n"
1202 " return x - y * floor(x / y);\n"
1203 "}\n"
1204 "\n";
1205 }
daniel@transgaming.com4229f592011-11-24 22:34:04 +00001206
1207 if (mUsesMod2v)
1208 {
1209 out << "float2 mod(float2 x, float2 y)\n"
1210 "{\n"
1211 " return x - y * floor(x / y);\n"
1212 "}\n"
1213 "\n";
1214 }
1215
1216 if (mUsesMod2f)
daniel@transgaming.comd7c98102010-05-14 17:30:48 +00001217 {
1218 out << "float2 mod(float2 x, float y)\n"
1219 "{\n"
1220 " return x - y * floor(x / y);\n"
1221 "}\n"
1222 "\n";
1223 }
Jamie Madillf91ce812014-06-13 10:04:34 -04001224
daniel@transgaming.com4229f592011-11-24 22:34:04 +00001225 if (mUsesMod3v)
1226 {
1227 out << "float3 mod(float3 x, float3 y)\n"
1228 "{\n"
1229 " return x - y * floor(x / y);\n"
1230 "}\n"
1231 "\n";
1232 }
1233
1234 if (mUsesMod3f)
daniel@transgaming.comd7c98102010-05-14 17:30:48 +00001235 {
1236 out << "float3 mod(float3 x, float y)\n"
1237 "{\n"
1238 " return x - y * floor(x / y);\n"
1239 "}\n"
1240 "\n";
1241 }
1242
daniel@transgaming.com4229f592011-11-24 22:34:04 +00001243 if (mUsesMod4v)
1244 {
1245 out << "float4 mod(float4 x, float4 y)\n"
1246 "{\n"
1247 " return x - y * floor(x / y);\n"
1248 "}\n"
1249 "\n";
1250 }
1251
1252 if (mUsesMod4f)
daniel@transgaming.comd7c98102010-05-14 17:30:48 +00001253 {
1254 out << "float4 mod(float4 x, float y)\n"
1255 "{\n"
1256 " return x - y * floor(x / y);\n"
1257 "}\n"
1258 "\n";
1259 }
daniel@transgaming.comd91cfe72010-04-13 03:26:17 +00001260
daniel@transgaming.com0bbb0312010-04-26 15:33:39 +00001261 if (mUsesFaceforward1)
1262 {
1263 out << "float faceforward(float N, float I, float Nref)\n"
1264 "{\n"
daniel@transgaming.com3debd2b2010-05-13 02:07:34 +00001265 " if(dot(Nref, I) >= 0)\n"
daniel@transgaming.com0bbb0312010-04-26 15:33:39 +00001266 " {\n"
daniel@transgaming.com3debd2b2010-05-13 02:07:34 +00001267 " return -N;\n"
daniel@transgaming.com0bbb0312010-04-26 15:33:39 +00001268 " }\n"
1269 " else\n"
1270 " {\n"
daniel@transgaming.com3debd2b2010-05-13 02:07:34 +00001271 " return N;\n"
daniel@transgaming.com0bbb0312010-04-26 15:33:39 +00001272 " }\n"
1273 "}\n"
1274 "\n";
1275 }
1276
1277 if (mUsesFaceforward2)
1278 {
1279 out << "float2 faceforward(float2 N, float2 I, float2 Nref)\n"
1280 "{\n"
daniel@transgaming.com3debd2b2010-05-13 02:07:34 +00001281 " if(dot(Nref, I) >= 0)\n"
daniel@transgaming.com0bbb0312010-04-26 15:33:39 +00001282 " {\n"
daniel@transgaming.com3debd2b2010-05-13 02:07:34 +00001283 " return -N;\n"
daniel@transgaming.com0bbb0312010-04-26 15:33:39 +00001284 " }\n"
1285 " else\n"
1286 " {\n"
daniel@transgaming.com3debd2b2010-05-13 02:07:34 +00001287 " return N;\n"
daniel@transgaming.com0bbb0312010-04-26 15:33:39 +00001288 " }\n"
1289 "}\n"
1290 "\n";
1291 }
1292
1293 if (mUsesFaceforward3)
1294 {
1295 out << "float3 faceforward(float3 N, float3 I, float3 Nref)\n"
1296 "{\n"
daniel@transgaming.com3debd2b2010-05-13 02:07:34 +00001297 " if(dot(Nref, I) >= 0)\n"
daniel@transgaming.com0bbb0312010-04-26 15:33:39 +00001298 " {\n"
daniel@transgaming.com3debd2b2010-05-13 02:07:34 +00001299 " return -N;\n"
daniel@transgaming.com0bbb0312010-04-26 15:33:39 +00001300 " }\n"
1301 " else\n"
1302 " {\n"
daniel@transgaming.com3debd2b2010-05-13 02:07:34 +00001303 " return N;\n"
daniel@transgaming.com0bbb0312010-04-26 15:33:39 +00001304 " }\n"
1305 "}\n"
1306 "\n";
1307 }
1308
1309 if (mUsesFaceforward4)
1310 {
1311 out << "float4 faceforward(float4 N, float4 I, float4 Nref)\n"
1312 "{\n"
daniel@transgaming.com3debd2b2010-05-13 02:07:34 +00001313 " if(dot(Nref, I) >= 0)\n"
daniel@transgaming.com0bbb0312010-04-26 15:33:39 +00001314 " {\n"
daniel@transgaming.com3debd2b2010-05-13 02:07:34 +00001315 " return -N;\n"
daniel@transgaming.com0bbb0312010-04-26 15:33:39 +00001316 " }\n"
1317 " else\n"
1318 " {\n"
daniel@transgaming.com3debd2b2010-05-13 02:07:34 +00001319 " return N;\n"
daniel@transgaming.com0bbb0312010-04-26 15:33:39 +00001320 " }\n"
1321 "}\n"
1322 "\n";
1323 }
1324
daniel@transgaming.com35342dc2012-02-28 02:01:22 +00001325 if (mUsesAtan2_1)
daniel@transgaming.com0f189612010-05-07 13:03:36 +00001326 {
1327 out << "float atanyx(float y, float x)\n"
1328 "{\n"
1329 " if(x == 0 && y == 0) x = 1;\n" // Avoid producing a NaN
1330 " return atan2(y, x);\n"
1331 "}\n";
1332 }
daniel@transgaming.com35342dc2012-02-28 02:01:22 +00001333
1334 if (mUsesAtan2_2)
1335 {
1336 out << "float2 atanyx(float2 y, float2 x)\n"
1337 "{\n"
1338 " if(x[0] == 0 && y[0] == 0) x[0] = 1;\n"
1339 " if(x[1] == 0 && y[1] == 0) x[1] = 1;\n"
1340 " return float2(atan2(y[0], x[0]), atan2(y[1], x[1]));\n"
1341 "}\n";
1342 }
1343
1344 if (mUsesAtan2_3)
1345 {
1346 out << "float3 atanyx(float3 y, float3 x)\n"
1347 "{\n"
1348 " if(x[0] == 0 && y[0] == 0) x[0] = 1;\n"
1349 " if(x[1] == 0 && y[1] == 0) x[1] = 1;\n"
1350 " if(x[2] == 0 && y[2] == 0) x[2] = 1;\n"
1351 " return float3(atan2(y[0], x[0]), atan2(y[1], x[1]), atan2(y[2], x[2]));\n"
1352 "}\n";
1353 }
1354
1355 if (mUsesAtan2_4)
1356 {
1357 out << "float4 atanyx(float4 y, float4 x)\n"
1358 "{\n"
1359 " if(x[0] == 0 && y[0] == 0) x[0] = 1;\n"
1360 " if(x[1] == 0 && y[1] == 0) x[1] = 1;\n"
1361 " if(x[2] == 0 && y[2] == 0) x[2] = 1;\n"
1362 " if(x[3] == 0 && y[3] == 0) x[3] = 1;\n"
1363 " return float4(atan2(y[0], x[0]), atan2(y[1], x[1]), atan2(y[2], x[2]), atan2(y[3], x[3]));\n"
1364 "}\n";
1365 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001366}
1367
1368void OutputHLSL::visitSymbol(TIntermSymbol *node)
1369{
daniel@transgaming.com950f9932010-04-13 03:26:14 +00001370 TInfoSinkBase &out = mBody;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001371
Jamie Madill570e04d2013-06-21 09:15:33 -04001372 // Handle accessing std140 structs by value
1373 if (mFlaggedStructMappedNames.count(node) > 0)
1374 {
1375 out << mFlaggedStructMappedNames[node];
1376 return;
1377 }
1378
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001379 TString name = node->getSymbol();
1380
shannon.woods%transgaming.com@gtempaccount.come7d4a242013-04-13 03:38:33 +00001381 if (name == "gl_DepthRange")
daniel@transgaming.comd7c98102010-05-14 17:30:48 +00001382 {
1383 mUsesDepthRange = true;
1384 out << name;
1385 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001386 else
1387 {
daniel@transgaming.com86f7c9d2010-04-20 18:52:06 +00001388 TQualifier qualifier = node->getQualifier();
1389
1390 if (qualifier == EvqUniform)
1391 {
Jamie Madill98493dd2013-07-08 14:39:03 -04001392 const TType& nodeType = node->getType();
1393 const TInterfaceBlock* interfaceBlock = nodeType.getInterfaceBlock();
1394
1395 if (interfaceBlock)
shannonwoods@chromium.org4a643ae2013-05-30 00:12:27 +00001396 {
Jamie Madill98493dd2013-07-08 14:39:03 -04001397 mReferencedInterfaceBlocks[interfaceBlock->name()] = node;
shannonwoods@chromium.org4430b0d2013-05-30 00:12:34 +00001398 }
shannonwoods@chromium.org4a643ae2013-05-30 00:12:27 +00001399 else
1400 {
1401 mReferencedUniforms[name] = node;
shannonwoods@chromium.org4a643ae2013-05-30 00:12:27 +00001402 }
Jamie Madill98493dd2013-07-08 14:39:03 -04001403
Jamie Madill033dae62014-06-18 12:56:28 -04001404 out << DecorateUniform(name, nodeType);
daniel@transgaming.com86f7c9d2010-04-20 18:52:06 +00001405 }
Jamie Madill19571812013-08-12 15:26:34 -07001406 else if (qualifier == EvqAttribute || qualifier == EvqVertexIn)
daniel@transgaming.com86f7c9d2010-04-20 18:52:06 +00001407 {
daniel@transgaming.com8803b852012-12-20 21:11:47 +00001408 mReferencedAttributes[name] = node;
Jamie Madill033dae62014-06-18 12:56:28 -04001409 out << Decorate(name);
daniel@transgaming.com86f7c9d2010-04-20 18:52:06 +00001410 }
Jamie Madill033dae62014-06-18 12:56:28 -04001411 else if (IsVarying(qualifier))
daniel@transgaming.com86f7c9d2010-04-20 18:52:06 +00001412 {
daniel@transgaming.com8803b852012-12-20 21:11:47 +00001413 mReferencedVaryings[name] = node;
Jamie Madill033dae62014-06-18 12:56:28 -04001414 out << Decorate(name);
daniel@transgaming.com86f7c9d2010-04-20 18:52:06 +00001415 }
Jamie Madill19571812013-08-12 15:26:34 -07001416 else if (qualifier == EvqFragmentOut)
Jamie Madill46131a32013-06-20 11:55:50 -04001417 {
1418 mReferencedOutputVariables[name] = node;
1419 out << "out_" << name;
1420 }
1421 else if (qualifier == EvqFragColor)
shannon.woods%transgaming.com@gtempaccount.come7d4a242013-04-13 03:38:33 +00001422 {
1423 out << "gl_Color[0]";
1424 mUsesFragColor = true;
1425 }
1426 else if (qualifier == EvqFragData)
1427 {
1428 out << "gl_Color";
1429 mUsesFragData = true;
1430 }
1431 else if (qualifier == EvqFragCoord)
1432 {
1433 mUsesFragCoord = true;
1434 out << name;
1435 }
1436 else if (qualifier == EvqPointCoord)
1437 {
1438 mUsesPointCoord = true;
1439 out << name;
1440 }
1441 else if (qualifier == EvqFrontFacing)
1442 {
1443 mUsesFrontFacing = true;
1444 out << name;
1445 }
1446 else if (qualifier == EvqPointSize)
1447 {
1448 mUsesPointSize = true;
1449 out << name;
1450 }
Jamie Madill2aeb26a2013-07-08 14:02:55 -04001451 else if (name == "gl_FragDepthEXT")
1452 {
1453 mUsesFragDepth = true;
1454 out << "gl_Depth";
1455 }
Jamie Madille53c98b2014-02-03 11:57:13 -05001456 else if (qualifier == EvqInternal)
1457 {
1458 out << name;
1459 }
daniel@transgaming.comc72c6412011-09-20 16:09:17 +00001460 else
1461 {
Jamie Madill033dae62014-06-18 12:56:28 -04001462 out << Decorate(name);
daniel@transgaming.comc72c6412011-09-20 16:09:17 +00001463 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001464 }
1465}
1466
Jamie Madill4cfb1e82014-07-07 12:49:23 -04001467void OutputHLSL::visitRaw(TIntermRaw *node)
1468{
1469 mBody << node->getRawText();
1470}
1471
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001472bool OutputHLSL::visitBinary(Visit visit, TIntermBinary *node)
1473{
daniel@transgaming.com950f9932010-04-13 03:26:14 +00001474 TInfoSinkBase &out = mBody;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001475
Jamie Madill570e04d2013-06-21 09:15:33 -04001476 // Handle accessing std140 structs by value
1477 if (mFlaggedStructMappedNames.count(node) > 0)
1478 {
1479 out << mFlaggedStructMappedNames[node];
1480 return false;
1481 }
1482
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001483 switch (node->getOp())
1484 {
daniel@transgaming.com93a96c32010-03-28 19:36:13 +00001485 case EOpAssign: outputTriplet(visit, "(", " = ", ")"); break;
daniel@transgaming.comb6ef8f12010-11-15 16:41:14 +00001486 case EOpInitialize:
1487 if (visit == PreVisit)
1488 {
1489 // GLSL allows to write things like "float x = x;" where a new variable x is defined
1490 // and the value of an existing variable x is assigned. HLSL uses C semantics (the
1491 // new variable is created before the assignment is evaluated), so we need to convert
1492 // this to "float t = x, x = t;".
1493
daniel@transgaming.combdfb2e52010-11-15 16:41:20 +00001494 TIntermSymbol *symbolNode = node->getLeft()->getAsSymbolNode();
1495 TIntermTyped *expression = node->getRight();
daniel@transgaming.comb6ef8f12010-11-15 16:41:14 +00001496
daniel@transgaming.combdfb2e52010-11-15 16:41:20 +00001497 sh::SearchSymbol searchSymbol(symbolNode->getSymbol());
1498 expression->traverse(&searchSymbol);
1499 bool sameSymbol = searchSymbol.foundMatch();
daniel@transgaming.comb6ef8f12010-11-15 16:41:14 +00001500
daniel@transgaming.combdfb2e52010-11-15 16:41:20 +00001501 if (sameSymbol)
1502 {
1503 // Type already printed
1504 out << "t" + str(mUniqueIndex) + " = ";
1505 expression->traverse(this);
1506 out << ", ";
1507 symbolNode->traverse(this);
1508 out << " = t" + str(mUniqueIndex);
1509
1510 mUniqueIndex++;
1511 return false;
1512 }
1513 }
1514 else if (visit == InVisit)
1515 {
1516 out << " = ";
daniel@transgaming.comb6ef8f12010-11-15 16:41:14 +00001517 }
1518 break;
daniel@transgaming.com93a96c32010-03-28 19:36:13 +00001519 case EOpAddAssign: outputTriplet(visit, "(", " += ", ")"); break;
1520 case EOpSubAssign: outputTriplet(visit, "(", " -= ", ")"); break;
1521 case EOpMulAssign: outputTriplet(visit, "(", " *= ", ")"); break;
1522 case EOpVectorTimesScalarAssign: outputTriplet(visit, "(", " *= ", ")"); break;
1523 case EOpMatrixTimesScalarAssign: outputTriplet(visit, "(", " *= ", ")"); break;
1524 case EOpVectorTimesMatrixAssign:
daniel@transgaming.com8976c1e2010-04-13 19:53:27 +00001525 if (visit == PreVisit)
1526 {
1527 out << "(";
1528 }
1529 else if (visit == InVisit)
1530 {
1531 out << " = mul(";
1532 node->getLeft()->traverse(this);
Jamie Madillf91ce812014-06-13 10:04:34 -04001533 out << ", transpose(";
daniel@transgaming.com8976c1e2010-04-13 19:53:27 +00001534 }
1535 else
1536 {
daniel@transgaming.com3aa74202010-04-29 03:39:04 +00001537 out << ")))";
daniel@transgaming.com8976c1e2010-04-13 19:53:27 +00001538 }
1539 break;
daniel@transgaming.com93a96c32010-03-28 19:36:13 +00001540 case EOpMatrixTimesMatrixAssign:
1541 if (visit == PreVisit)
1542 {
1543 out << "(";
1544 }
1545 else if (visit == InVisit)
1546 {
1547 out << " = mul(";
1548 node->getLeft()->traverse(this);
Jamie Madillf91ce812014-06-13 10:04:34 -04001549 out << ", ";
daniel@transgaming.com93a96c32010-03-28 19:36:13 +00001550 }
1551 else
1552 {
daniel@transgaming.com3aa74202010-04-29 03:39:04 +00001553 out << "))";
daniel@transgaming.com93a96c32010-03-28 19:36:13 +00001554 }
1555 break;
1556 case EOpDivAssign: outputTriplet(visit, "(", " /= ", ")"); break;
Jamie Madillb4e664b2013-06-20 11:55:54 -04001557 case EOpIndexDirect:
Jamie Madillb4e664b2013-06-20 11:55:54 -04001558 {
Jamie Madill98493dd2013-07-08 14:39:03 -04001559 const TType& leftType = node->getLeft()->getType();
1560 if (leftType.isInterfaceBlock())
Jamie Madillb4e664b2013-06-20 11:55:54 -04001561 {
Jamie Madill98493dd2013-07-08 14:39:03 -04001562 if (visit == PreVisit)
1563 {
1564 TInterfaceBlock* interfaceBlock = leftType.getInterfaceBlock();
1565 const int arrayIndex = node->getRight()->getAsConstantUnion()->getIConst(0);
Jamie Madill98493dd2013-07-08 14:39:03 -04001566 mReferencedInterfaceBlocks[interfaceBlock->instanceName()] = node->getLeft()->getAsSymbolNode();
Jamie Madillf91ce812014-06-13 10:04:34 -04001567 out << mUniformHLSL->interfaceBlockInstanceString(*interfaceBlock, arrayIndex);
Jamie Madill98493dd2013-07-08 14:39:03 -04001568 return false;
1569 }
Jamie Madillb4e664b2013-06-20 11:55:54 -04001570 }
Jamie Madill98493dd2013-07-08 14:39:03 -04001571 else
1572 {
1573 outputTriplet(visit, "", "[", "]");
1574 }
Jamie Madillb4e664b2013-06-20 11:55:54 -04001575 }
1576 break;
1577 case EOpIndexIndirect:
1578 // We do not currently support indirect references to interface blocks
1579 ASSERT(node->getLeft()->getBasicType() != EbtInterfaceBlock);
1580 outputTriplet(visit, "", "[", "]");
1581 break;
daniel@transgaming.coma54da4e2010-05-07 13:03:28 +00001582 case EOpIndexDirectStruct:
Jamie Madill98493dd2013-07-08 14:39:03 -04001583 if (visit == InVisit)
1584 {
1585 const TStructure* structure = node->getLeft()->getType().getStruct();
1586 const TIntermConstantUnion* index = node->getRight()->getAsConstantUnion();
1587 const TField* field = structure->fields()[index->getIConst(0)];
Jamie Madill033dae62014-06-18 12:56:28 -04001588 out << "." + DecorateField(field->name(), *structure);
Jamie Madill98493dd2013-07-08 14:39:03 -04001589
1590 return false;
1591 }
1592 break;
shannonwoods@chromium.org4430b0d2013-05-30 00:12:34 +00001593 case EOpIndexDirectInterfaceBlock:
daniel@transgaming.coma54da4e2010-05-07 13:03:28 +00001594 if (visit == InVisit)
1595 {
Jamie Madill98493dd2013-07-08 14:39:03 -04001596 const TInterfaceBlock* interfaceBlock = node->getLeft()->getType().getInterfaceBlock();
1597 const TIntermConstantUnion* index = node->getRight()->getAsConstantUnion();
1598 const TField* field = interfaceBlock->fields()[index->getIConst(0)];
Jamie Madill033dae62014-06-18 12:56:28 -04001599 out << "." + Decorate(field->name());
daniel@transgaming.coma54da4e2010-05-07 13:03:28 +00001600
1601 return false;
1602 }
1603 break;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001604 case EOpVectorSwizzle:
1605 if (visit == InVisit)
1606 {
1607 out << ".";
1608
1609 TIntermAggregate *swizzle = node->getRight()->getAsAggregate();
1610
1611 if (swizzle)
1612 {
Zhenyao Moe40d1e92014-07-16 17:40:36 -07001613 TIntermSequence *sequence = swizzle->getSequence();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001614
Zhenyao Moe40d1e92014-07-16 17:40:36 -07001615 for (TIntermSequence::iterator sit = sequence->begin(); sit != sequence->end(); sit++)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001616 {
1617 TIntermConstantUnion *element = (*sit)->getAsConstantUnion();
1618
1619 if (element)
1620 {
shannon.woods%transgaming.com@gtempaccount.comc0d0c222013-04-13 03:29:36 +00001621 int i = element->getIConst(0);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001622
1623 switch (i)
1624 {
1625 case 0: out << "x"; break;
1626 case 1: out << "y"; break;
1627 case 2: out << "z"; break;
1628 case 3: out << "w"; break;
1629 default: UNREACHABLE();
1630 }
1631 }
1632 else UNREACHABLE();
1633 }
1634 }
1635 else UNREACHABLE();
1636
1637 return false; // Fully processed
1638 }
1639 break;
1640 case EOpAdd: outputTriplet(visit, "(", " + ", ")"); break;
1641 case EOpSub: outputTriplet(visit, "(", " - ", ")"); break;
1642 case EOpMul: outputTriplet(visit, "(", " * ", ")"); break;
1643 case EOpDiv: outputTriplet(visit, "(", " / ", ")"); break;
daniel@transgaming.com49bce7e2010-03-17 03:58:51 +00001644 case EOpEqual:
daniel@transgaming.com49bce7e2010-03-17 03:58:51 +00001645 case EOpNotEqual:
daniel@transgaming.comd91cfe72010-04-13 03:26:17 +00001646 if (node->getLeft()->isScalar())
daniel@transgaming.com49bce7e2010-03-17 03:58:51 +00001647 {
daniel@transgaming.comd91cfe72010-04-13 03:26:17 +00001648 if (node->getOp() == EOpEqual)
1649 {
1650 outputTriplet(visit, "(", " == ", ")");
1651 }
1652 else
1653 {
1654 outputTriplet(visit, "(", " != ", ")");
1655 }
1656 }
1657 else if (node->getLeft()->getBasicType() == EbtStruct)
1658 {
1659 if (node->getOp() == EOpEqual)
1660 {
1661 out << "(";
1662 }
1663 else
1664 {
1665 out << "!(";
1666 }
1667
Jamie Madill98493dd2013-07-08 14:39:03 -04001668 const TStructure &structure = *node->getLeft()->getType().getStruct();
1669 const TFieldList &fields = structure.fields();
daniel@transgaming.comd91cfe72010-04-13 03:26:17 +00001670
Jamie Madill98493dd2013-07-08 14:39:03 -04001671 for (size_t i = 0; i < fields.size(); i++)
daniel@transgaming.comd91cfe72010-04-13 03:26:17 +00001672 {
Jamie Madill98493dd2013-07-08 14:39:03 -04001673 const TField *field = fields[i];
daniel@transgaming.comd91cfe72010-04-13 03:26:17 +00001674
1675 node->getLeft()->traverse(this);
Jamie Madill033dae62014-06-18 12:56:28 -04001676 out << "." + DecorateField(field->name(), structure) + " == ";
daniel@transgaming.comd91cfe72010-04-13 03:26:17 +00001677 node->getRight()->traverse(this);
Jamie Madill033dae62014-06-18 12:56:28 -04001678 out << "." + DecorateField(field->name(), structure);
daniel@transgaming.comd91cfe72010-04-13 03:26:17 +00001679
Jamie Madill98493dd2013-07-08 14:39:03 -04001680 if (i < fields.size() - 1)
daniel@transgaming.comd91cfe72010-04-13 03:26:17 +00001681 {
1682 out << " && ";
1683 }
1684 }
1685
1686 out << ")";
1687
1688 return false;
daniel@transgaming.com49bce7e2010-03-17 03:58:51 +00001689 }
1690 else
1691 {
Jamie Madill0b20c942013-07-19 16:36:56 -04001692 ASSERT(node->getLeft()->isMatrix() || node->getLeft()->isVector());
daniel@transgaming.comd91cfe72010-04-13 03:26:17 +00001693
1694 if (node->getOp() == EOpEqual)
1695 {
Jamie Madill0b20c942013-07-19 16:36:56 -04001696 outputTriplet(visit, "all(", " == ", ")");
daniel@transgaming.comd91cfe72010-04-13 03:26:17 +00001697 }
1698 else
1699 {
Jamie Madill0b20c942013-07-19 16:36:56 -04001700 outputTriplet(visit, "!all(", " == ", ")");
daniel@transgaming.comd91cfe72010-04-13 03:26:17 +00001701 }
daniel@transgaming.com49bce7e2010-03-17 03:58:51 +00001702 }
1703 break;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001704 case EOpLessThan: outputTriplet(visit, "(", " < ", ")"); break;
1705 case EOpGreaterThan: outputTriplet(visit, "(", " > ", ")"); break;
1706 case EOpLessThanEqual: outputTriplet(visit, "(", " <= ", ")"); break;
1707 case EOpGreaterThanEqual: outputTriplet(visit, "(", " >= ", ")"); break;
1708 case EOpVectorTimesScalar: outputTriplet(visit, "(", " * ", ")"); break;
daniel@transgaming.com93a96c32010-03-28 19:36:13 +00001709 case EOpMatrixTimesScalar: outputTriplet(visit, "(", " * ", ")"); break;
daniel@transgaming.com8976c1e2010-04-13 19:53:27 +00001710 case EOpVectorTimesMatrix: outputTriplet(visit, "mul(", ", transpose(", "))"); break;
1711 case EOpMatrixTimesVector: outputTriplet(visit, "mul(transpose(", "), ", ")"); break;
daniel@transgaming.com69f084b2010-04-23 18:34:46 +00001712 case EOpMatrixTimesMatrix: outputTriplet(visit, "transpose(mul(transpose(", "), transpose(", ")))"); break;
daniel@transgaming.com8915eba2012-04-28 00:34:44 +00001713 case EOpLogicalOr:
Jamie Madill3c9eeb92013-11-04 11:09:26 -05001714 if (node->getRight()->hasSideEffects())
1715 {
1716 out << "s" << mUnfoldShortCircuit->getNextTemporaryIndex();
1717 return false;
1718 }
1719 else
1720 {
1721 outputTriplet(visit, "(", " || ", ")");
1722 return true;
1723 }
daniel@transgaming.comd7c98102010-05-14 17:30:48 +00001724 case EOpLogicalXor:
1725 mUsesXor = true;
1726 outputTriplet(visit, "xor(", ", ", ")");
1727 break;
daniel@transgaming.com8915eba2012-04-28 00:34:44 +00001728 case EOpLogicalAnd:
Jamie Madill3c9eeb92013-11-04 11:09:26 -05001729 if (node->getRight()->hasSideEffects())
1730 {
1731 out << "s" << mUnfoldShortCircuit->getNextTemporaryIndex();
1732 return false;
1733 }
1734 else
1735 {
1736 outputTriplet(visit, "(", " && ", ")");
1737 return true;
1738 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001739 default: UNREACHABLE();
1740 }
1741
1742 return true;
1743}
1744
1745bool OutputHLSL::visitUnary(Visit visit, TIntermUnary *node)
1746{
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001747 switch (node->getOp())
1748 {
Nicolas Capens16004fc2014-06-11 11:29:11 -04001749 case EOpNegative: outputTriplet(visit, "(-", "", ")"); break;
1750 case EOpVectorLogicalNot: outputTriplet(visit, "(!", "", ")"); break;
1751 case EOpLogicalNot: outputTriplet(visit, "(!", "", ")"); break;
1752 case EOpPostIncrement: outputTriplet(visit, "(", "", "++)"); break;
1753 case EOpPostDecrement: outputTriplet(visit, "(", "", "--)"); break;
1754 case EOpPreIncrement: outputTriplet(visit, "(++", "", ")"); break;
1755 case EOpPreDecrement: outputTriplet(visit, "(--", "", ")"); break;
daniel@transgaming.com67de6d62010-04-29 03:35:30 +00001756 case EOpRadians: outputTriplet(visit, "radians(", "", ")"); break;
1757 case EOpDegrees: outputTriplet(visit, "degrees(", "", ")"); break;
1758 case EOpSin: outputTriplet(visit, "sin(", "", ")"); break;
1759 case EOpCos: outputTriplet(visit, "cos(", "", ")"); break;
1760 case EOpTan: outputTriplet(visit, "tan(", "", ")"); break;
1761 case EOpAsin: outputTriplet(visit, "asin(", "", ")"); break;
1762 case EOpAcos: outputTriplet(visit, "acos(", "", ")"); break;
1763 case EOpAtan: outputTriplet(visit, "atan(", "", ")"); break;
1764 case EOpExp: outputTriplet(visit, "exp(", "", ")"); break;
1765 case EOpLog: outputTriplet(visit, "log(", "", ")"); break;
1766 case EOpExp2: outputTriplet(visit, "exp2(", "", ")"); break;
1767 case EOpLog2: outputTriplet(visit, "log2(", "", ")"); break;
1768 case EOpSqrt: outputTriplet(visit, "sqrt(", "", ")"); break;
1769 case EOpInverseSqrt: outputTriplet(visit, "rsqrt(", "", ")"); break;
1770 case EOpAbs: outputTriplet(visit, "abs(", "", ")"); break;
1771 case EOpSign: outputTriplet(visit, "sign(", "", ")"); break;
1772 case EOpFloor: outputTriplet(visit, "floor(", "", ")"); break;
1773 case EOpCeil: outputTriplet(visit, "ceil(", "", ")"); break;
1774 case EOpFract: outputTriplet(visit, "frac(", "", ")"); break;
1775 case EOpLength: outputTriplet(visit, "length(", "", ")"); break;
1776 case EOpNormalize: outputTriplet(visit, "normalize(", "", ")"); break;
daniel@transgaming.comddbb45d2012-05-31 01:21:41 +00001777 case EOpDFdx:
1778 if(mInsideDiscontinuousLoop || mOutputLod0Function)
1779 {
1780 outputTriplet(visit, "(", "", ", 0.0)");
1781 }
1782 else
1783 {
1784 outputTriplet(visit, "ddx(", "", ")");
1785 }
1786 break;
1787 case EOpDFdy:
1788 if(mInsideDiscontinuousLoop || mOutputLod0Function)
1789 {
1790 outputTriplet(visit, "(", "", ", 0.0)");
1791 }
1792 else
1793 {
apatrick@chromium.org9616e582012-06-22 18:27:01 +00001794 outputTriplet(visit, "ddy(", "", ")");
daniel@transgaming.comddbb45d2012-05-31 01:21:41 +00001795 }
1796 break;
1797 case EOpFwidth:
1798 if(mInsideDiscontinuousLoop || mOutputLod0Function)
1799 {
1800 outputTriplet(visit, "(", "", ", 0.0)");
1801 }
1802 else
1803 {
1804 outputTriplet(visit, "fwidth(", "", ")");
1805 }
1806 break;
daniel@transgaming.com67de6d62010-04-29 03:35:30 +00001807 case EOpAny: outputTriplet(visit, "any(", "", ")"); break;
1808 case EOpAll: outputTriplet(visit, "all(", "", ")"); break;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001809 default: UNREACHABLE();
1810 }
1811
1812 return true;
1813}
1814
1815bool OutputHLSL::visitAggregate(Visit visit, TIntermAggregate *node)
1816{
daniel@transgaming.com950f9932010-04-13 03:26:14 +00001817 TInfoSinkBase &out = mBody;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001818
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001819 switch (node->getOp())
1820 {
daniel@transgaming.comb5875982010-04-15 20:44:53 +00001821 case EOpSequence:
1822 {
daniel@transgaming.comf9ef1072010-04-22 13:35:16 +00001823 if (mInsideFunction)
1824 {
Jamie Madill075edd82013-07-08 13:30:19 -04001825 outputLineDirective(node->getLine().first_line);
daniel@transgaming.comf9ef1072010-04-22 13:35:16 +00001826 out << "{\n";
1827 }
1828
Zhenyao Moe40d1e92014-07-16 17:40:36 -07001829 for (TIntermSequence::iterator sit = node->getSequence()->begin(); sit != node->getSequence()->end(); sit++)
daniel@transgaming.comb5875982010-04-15 20:44:53 +00001830 {
Jamie Madill075edd82013-07-08 13:30:19 -04001831 outputLineDirective((*sit)->getLine().first_line);
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001832
daniel@transgaming.com44fffee2012-04-28 00:34:20 +00001833 traverseStatements(*sit);
daniel@transgaming.comb5875982010-04-15 20:44:53 +00001834
1835 out << ";\n";
1836 }
1837
daniel@transgaming.comf9ef1072010-04-22 13:35:16 +00001838 if (mInsideFunction)
1839 {
Jamie Madill075edd82013-07-08 13:30:19 -04001840 outputLineDirective(node->getLine().last_line);
daniel@transgaming.comf9ef1072010-04-22 13:35:16 +00001841 out << "}\n";
1842 }
1843
daniel@transgaming.comb5875982010-04-15 20:44:53 +00001844 return false;
1845 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001846 case EOpDeclaration:
1847 if (visit == PreVisit)
1848 {
Zhenyao Moe40d1e92014-07-16 17:40:36 -07001849 TIntermSequence *sequence = node->getSequence();
1850 TIntermTyped *variable = (*sequence)[0]->getAsTyped();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001851
daniel@transgaming.comd25ab252010-03-30 03:36:26 +00001852 if (variable && (variable->getQualifier() == EvqTemporary || variable->getQualifier() == EvqGlobal))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001853 {
Jamie Madill8daaba12014-06-13 10:04:33 -04001854 TStructure *structure = variable->getType().getStruct();
1855
1856 if (structure)
daniel@transgaming.comead23042010-04-29 03:35:36 +00001857 {
Jamie Madill8daaba12014-06-13 10:04:33 -04001858 mStructureHLSL->addConstructor(variable->getType(), StructNameString(*structure), NULL);
daniel@transgaming.comead23042010-04-29 03:35:36 +00001859 }
1860
daniel@transgaming.comfe565152010-04-10 05:29:07 +00001861 if (!variable->getAsSymbolNode() || variable->getAsSymbolNode()->getSymbol() != "") // Variable declaration
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001862 {
daniel@transgaming.comd2cf25d2010-04-22 16:27:35 +00001863 if (!mInsideFunction)
daniel@transgaming.comd91cfe72010-04-13 03:26:17 +00001864 {
1865 out << "static ";
1866 }
1867
Jamie Madill033dae62014-06-18 12:56:28 -04001868 out << TypeString(variable->getType()) + " ";
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001869
Zhenyao Moe40d1e92014-07-16 17:40:36 -07001870 for (TIntermSequence::iterator sit = sequence->begin(); sit != sequence->end(); sit++)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001871 {
daniel@transgaming.comfe565152010-04-10 05:29:07 +00001872 TIntermSymbol *symbol = (*sit)->getAsSymbolNode();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001873
daniel@transgaming.comfe565152010-04-10 05:29:07 +00001874 if (symbol)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001875 {
daniel@transgaming.comfe565152010-04-10 05:29:07 +00001876 symbol->traverse(this);
Jamie Madill033dae62014-06-18 12:56:28 -04001877 out << ArrayString(symbol->getType());
Jamie Madill79bb0d92013-12-09 16:20:28 -05001878 out << " = " + initializer(symbol->getType());
daniel@transgaming.comfe565152010-04-10 05:29:07 +00001879 }
1880 else
1881 {
1882 (*sit)->traverse(this);
1883 }
1884
Zhenyao Moe40d1e92014-07-16 17:40:36 -07001885 if (*sit != sequence->back())
daniel@transgaming.comfe565152010-04-10 05:29:07 +00001886 {
shannon.woods@transgaming.comcb332ab2013-02-28 23:12:18 +00001887 out << ", ";
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001888 }
1889 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001890 }
daniel@transgaming.comfe565152010-04-10 05:29:07 +00001891 else if (variable->getAsSymbolNode() && variable->getAsSymbolNode()->getSymbol() == "") // Type (struct) declaration
1892 {
daniel@transgaming.comead23042010-04-29 03:35:36 +00001893 // Already added to constructor map
daniel@transgaming.comfe565152010-04-10 05:29:07 +00001894 }
1895 else UNREACHABLE();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001896 }
Jamie Madill033dae62014-06-18 12:56:28 -04001897 else if (variable && IsVaryingOut(variable->getQualifier()))
shannon.woods@transgaming.comcb332ab2013-02-28 23:12:18 +00001898 {
Zhenyao Moe40d1e92014-07-16 17:40:36 -07001899 for (TIntermSequence::iterator sit = sequence->begin(); sit != sequence->end(); sit++)
shannon.woods@transgaming.comcb332ab2013-02-28 23:12:18 +00001900 {
1901 TIntermSymbol *symbol = (*sit)->getAsSymbolNode();
1902
1903 if (symbol)
1904 {
1905 // Vertex (output) varyings which are declared but not written to should still be declared to allow successful linking
1906 mReferencedVaryings[symbol->getSymbol()] = symbol;
1907 }
1908 else
1909 {
1910 (*sit)->traverse(this);
1911 }
1912 }
1913 }
1914
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001915 return false;
1916 }
1917 else if (visit == InVisit)
1918 {
1919 out << ", ";
1920 }
1921 break;
Jamie Madill3b5c2da2014-08-19 15:23:32 -04001922 case EOpInvariantDeclaration:
1923 // Do not do any translation
1924 return false;
daniel@transgaming.comd1acd1e2010-04-13 03:25:57 +00001925 case EOpPrototype:
1926 if (visit == PreVisit)
1927 {
Jamie Madill033dae62014-06-18 12:56:28 -04001928 out << TypeString(node->getType()) << " " << Decorate(node->getName()) << (mOutputLod0Function ? "Lod0(" : "(");
daniel@transgaming.comd1acd1e2010-04-13 03:25:57 +00001929
Zhenyao Moe40d1e92014-07-16 17:40:36 -07001930 TIntermSequence *arguments = node->getSequence();
daniel@transgaming.comd1acd1e2010-04-13 03:25:57 +00001931
Zhenyao Moe40d1e92014-07-16 17:40:36 -07001932 for (unsigned int i = 0; i < arguments->size(); i++)
daniel@transgaming.comd1acd1e2010-04-13 03:25:57 +00001933 {
Zhenyao Moe40d1e92014-07-16 17:40:36 -07001934 TIntermSymbol *symbol = (*arguments)[i]->getAsSymbolNode();
daniel@transgaming.comd1acd1e2010-04-13 03:25:57 +00001935
1936 if (symbol)
1937 {
1938 out << argumentString(symbol);
1939
Zhenyao Moe40d1e92014-07-16 17:40:36 -07001940 if (i < arguments->size() - 1)
daniel@transgaming.comd1acd1e2010-04-13 03:25:57 +00001941 {
1942 out << ", ";
1943 }
1944 }
1945 else UNREACHABLE();
1946 }
1947
1948 out << ");\n";
1949
daniel@transgaming.com0e5bb402012-10-17 18:24:53 +00001950 // Also prototype the Lod0 variant if needed
1951 if (mContainsLoopDiscontinuity && !mOutputLod0Function)
1952 {
1953 mOutputLod0Function = true;
1954 node->traverse(this);
1955 mOutputLod0Function = false;
1956 }
1957
daniel@transgaming.comd1acd1e2010-04-13 03:25:57 +00001958 return false;
1959 }
1960 break;
daniel@transgaming.comed2180d2012-03-26 17:08:54 +00001961 case EOpComma: outputTriplet(visit, "(", ", ", ")"); break;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001962 case EOpFunction:
1963 {
alokp@chromium.org43884872010-03-30 00:08:52 +00001964 TString name = TFunction::unmangleName(node->getName());
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001965
Jamie Madill033dae62014-06-18 12:56:28 -04001966 out << TypeString(node->getType()) << " ";
daniel@transgaming.com0e9704b2012-05-31 01:20:13 +00001967
1968 if (name == "main")
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001969 {
daniel@transgaming.com0e9704b2012-05-31 01:20:13 +00001970 out << "gl_main(";
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001971 }
daniel@transgaming.com0e9704b2012-05-31 01:20:13 +00001972 else
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001973 {
Jamie Madill033dae62014-06-18 12:56:28 -04001974 out << Decorate(name) << (mOutputLod0Function ? "Lod0(" : "(");
daniel@transgaming.com0e9704b2012-05-31 01:20:13 +00001975 }
daniel@transgaming.com63691862010-04-29 03:32:42 +00001976
Zhenyao Moe40d1e92014-07-16 17:40:36 -07001977 TIntermSequence *sequence = node->getSequence();
1978 TIntermSequence *arguments = (*sequence)[0]->getAsAggregate()->getSequence();
daniel@transgaming.com0e9704b2012-05-31 01:20:13 +00001979
Zhenyao Moe40d1e92014-07-16 17:40:36 -07001980 for (unsigned int i = 0; i < arguments->size(); i++)
daniel@transgaming.com0e9704b2012-05-31 01:20:13 +00001981 {
Zhenyao Moe40d1e92014-07-16 17:40:36 -07001982 TIntermSymbol *symbol = (*arguments)[i]->getAsSymbolNode();
daniel@transgaming.com0e9704b2012-05-31 01:20:13 +00001983
1984 if (symbol)
1985 {
Jamie Madill8daaba12014-06-13 10:04:33 -04001986 TStructure *structure = symbol->getType().getStruct();
1987
1988 if (structure)
daniel@transgaming.com0e9704b2012-05-31 01:20:13 +00001989 {
Jamie Madill8daaba12014-06-13 10:04:33 -04001990 mStructureHLSL->addConstructor(symbol->getType(), StructNameString(*structure), NULL);
daniel@transgaming.com0e9704b2012-05-31 01:20:13 +00001991 }
1992
1993 out << argumentString(symbol);
1994
Zhenyao Moe40d1e92014-07-16 17:40:36 -07001995 if (i < arguments->size() - 1)
daniel@transgaming.com0e9704b2012-05-31 01:20:13 +00001996 {
1997 out << ", ";
1998 }
1999 }
2000 else UNREACHABLE();
2001 }
2002
2003 out << ")\n"
2004 "{\n";
Jamie Madillf91ce812014-06-13 10:04:34 -04002005
Zhenyao Moe40d1e92014-07-16 17:40:36 -07002006 if (sequence->size() > 1)
daniel@transgaming.com0e9704b2012-05-31 01:20:13 +00002007 {
2008 mInsideFunction = true;
Zhenyao Moe40d1e92014-07-16 17:40:36 -07002009 (*sequence)[1]->traverse(this);
daniel@transgaming.comf9ef1072010-04-22 13:35:16 +00002010 mInsideFunction = false;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002011 }
Jamie Madillf91ce812014-06-13 10:04:34 -04002012
daniel@transgaming.com0e9704b2012-05-31 01:20:13 +00002013 out << "}\n";
2014
daniel@transgaming.com89431aa2012-05-31 01:20:29 +00002015 if (mContainsLoopDiscontinuity && !mOutputLod0Function)
2016 {
daniel@transgaming.comecdf44a2012-06-01 01:45:15 +00002017 if (name != "main")
daniel@transgaming.com89431aa2012-05-31 01:20:29 +00002018 {
2019 mOutputLod0Function = true;
2020 node->traverse(this);
2021 mOutputLod0Function = false;
2022 }
2023 }
2024
daniel@transgaming.com0e9704b2012-05-31 01:20:13 +00002025 return false;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002026 }
2027 break;
2028 case EOpFunctionCall:
2029 {
shannon.woods@transgaming.com01a5cf92013-02-28 23:13:51 +00002030 TString name = TFunction::unmangleName(node->getName());
2031 bool lod0 = mInsideDiscontinuousLoop || mOutputLod0Function;
Zhenyao Moe40d1e92014-07-16 17:40:36 -07002032 TIntermSequence *arguments = node->getSequence();
shannon.woods@transgaming.com01a5cf92013-02-28 23:13:51 +00002033
2034 if (node->isUserDefined())
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002035 {
Jamie Madill033dae62014-06-18 12:56:28 -04002036 out << Decorate(name) << (lod0 ? "Lod0(" : "(");
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002037 }
2038 else
2039 {
Zhenyao Moe40d1e92014-07-16 17:40:36 -07002040 TBasicType samplerType = (*arguments)[0]->getAsTyped()->getType().getBasicType();
shannonwoods@chromium.orgc6ac65f2013-05-30 00:02:50 +00002041
Nicolas Capense0ba27a2013-06-24 16:10:52 -04002042 TextureFunction textureFunction;
2043 textureFunction.sampler = samplerType;
Zhenyao Moe40d1e92014-07-16 17:40:36 -07002044 textureFunction.coords = (*arguments)[1]->getAsTyped()->getNominalSize();
Nicolas Capens75fb4752013-07-10 15:14:47 -04002045 textureFunction.method = TextureFunction::IMPLICIT;
2046 textureFunction.proj = false;
Nicolas Capensb1f45b72013-12-19 17:37:19 -05002047 textureFunction.offset = false;
Nicolas Capense0ba27a2013-06-24 16:10:52 -04002048
2049 if (name == "texture2D" || name == "textureCube" || name == "texture")
shannon.woods@transgaming.com01a5cf92013-02-28 23:13:51 +00002050 {
Nicolas Capens75fb4752013-07-10 15:14:47 -04002051 textureFunction.method = TextureFunction::IMPLICIT;
shannon.woods@transgaming.com01a5cf92013-02-28 23:13:51 +00002052 }
Nicolas Capense0ba27a2013-06-24 16:10:52 -04002053 else if (name == "texture2DProj" || name == "textureProj")
shannon.woods@transgaming.com01a5cf92013-02-28 23:13:51 +00002054 {
Nicolas Capens75fb4752013-07-10 15:14:47 -04002055 textureFunction.method = TextureFunction::IMPLICIT;
Nicolas Capense0ba27a2013-06-24 16:10:52 -04002056 textureFunction.proj = true;
shannon.woods@transgaming.com01a5cf92013-02-28 23:13:51 +00002057 }
Nicolas Capens46485082014-04-15 13:12:50 -04002058 else if (name == "texture2DLod" || name == "textureCubeLod" || name == "textureLod" ||
2059 name == "texture2DLodEXT" || name == "textureCubeLodEXT")
Nicolas Capens9fe6f982013-06-24 16:05:25 -04002060 {
Nicolas Capens75fb4752013-07-10 15:14:47 -04002061 textureFunction.method = TextureFunction::LOD;
Nicolas Capens9fe6f982013-06-24 16:05:25 -04002062 }
Nicolas Capens46485082014-04-15 13:12:50 -04002063 else if (name == "texture2DProjLod" || name == "textureProjLod" || name == "texture2DProjLodEXT")
Nicolas Capens9fe6f982013-06-24 16:05:25 -04002064 {
Nicolas Capens75fb4752013-07-10 15:14:47 -04002065 textureFunction.method = TextureFunction::LOD;
Nicolas Capense0ba27a2013-06-24 16:10:52 -04002066 textureFunction.proj = true;
shannon.woods@transgaming.com01a5cf92013-02-28 23:13:51 +00002067 }
Nicolas Capens75fb4752013-07-10 15:14:47 -04002068 else if (name == "textureSize")
2069 {
2070 textureFunction.method = TextureFunction::SIZE;
2071 }
Nicolas Capensb1f45b72013-12-19 17:37:19 -05002072 else if (name == "textureOffset")
2073 {
2074 textureFunction.method = TextureFunction::IMPLICIT;
2075 textureFunction.offset = true;
2076 }
Nicolas Capensdf86c6b2014-02-14 20:09:17 -05002077 else if (name == "textureProjOffset")
2078 {
2079 textureFunction.method = TextureFunction::IMPLICIT;
2080 textureFunction.offset = true;
2081 textureFunction.proj = true;
2082 }
2083 else if (name == "textureLodOffset")
2084 {
2085 textureFunction.method = TextureFunction::LOD;
2086 textureFunction.offset = true;
2087 }
Nicolas Capens2adc2562014-02-14 23:50:59 -05002088 else if (name == "textureProjLodOffset")
2089 {
2090 textureFunction.method = TextureFunction::LOD;
2091 textureFunction.proj = true;
2092 textureFunction.offset = true;
2093 }
Nicolas Capensfc014542014-02-18 14:47:13 -05002094 else if (name == "texelFetch")
2095 {
2096 textureFunction.method = TextureFunction::FETCH;
2097 }
2098 else if (name == "texelFetchOffset")
2099 {
2100 textureFunction.method = TextureFunction::FETCH;
2101 textureFunction.offset = true;
2102 }
Nicolas Capens46485082014-04-15 13:12:50 -04002103 else if (name == "textureGrad" || name == "texture2DGradEXT")
Nicolas Capensd11d5492014-02-19 17:06:10 -05002104 {
2105 textureFunction.method = TextureFunction::GRAD;
2106 }
Nicolas Capensbf7db102014-02-19 17:20:28 -05002107 else if (name == "textureGradOffset")
2108 {
2109 textureFunction.method = TextureFunction::GRAD;
2110 textureFunction.offset = true;
2111 }
Nicolas Capens46485082014-04-15 13:12:50 -04002112 else if (name == "textureProjGrad" || name == "texture2DProjGradEXT" || name == "textureCubeGradEXT")
Nicolas Capensf7378e32014-02-19 17:29:32 -05002113 {
2114 textureFunction.method = TextureFunction::GRAD;
2115 textureFunction.proj = true;
2116 }
2117 else if (name == "textureProjGradOffset")
2118 {
2119 textureFunction.method = TextureFunction::GRAD;
2120 textureFunction.proj = true;
2121 textureFunction.offset = true;
2122 }
shannon.woods@transgaming.com01a5cf92013-02-28 23:13:51 +00002123 else UNREACHABLE();
Nicolas Capense0ba27a2013-06-24 16:10:52 -04002124
Nicolas Capensb1f45b72013-12-19 17:37:19 -05002125 if (textureFunction.method == TextureFunction::IMPLICIT) // Could require lod 0 or have a bias argument
Nicolas Capense0ba27a2013-06-24 16:10:52 -04002126 {
Nicolas Capens84cfa122014-04-14 13:48:45 -04002127 unsigned int mandatoryArgumentCount = 2; // All functions have sampler and coordinate arguments
2128
2129 if (textureFunction.offset)
2130 {
2131 mandatoryArgumentCount++;
2132 }
2133
Zhenyao Moe40d1e92014-07-16 17:40:36 -07002134 bool bias = (arguments->size() > mandatoryArgumentCount); // Bias argument is optional
Nicolas Capens84cfa122014-04-14 13:48:45 -04002135
Jamie Madill183bde52014-07-02 15:31:19 -04002136 if (lod0 || mContext.shaderType == GL_VERTEX_SHADER)
Nicolas Capense0ba27a2013-06-24 16:10:52 -04002137 {
Nicolas Capens84cfa122014-04-14 13:48:45 -04002138 if (bias)
2139 {
2140 textureFunction.method = TextureFunction::LOD0BIAS;
2141 }
2142 else
2143 {
2144 textureFunction.method = TextureFunction::LOD0;
2145 }
Nicolas Capense0ba27a2013-06-24 16:10:52 -04002146 }
Nicolas Capens84cfa122014-04-14 13:48:45 -04002147 else if (bias)
Nicolas Capense0ba27a2013-06-24 16:10:52 -04002148 {
Nicolas Capens84cfa122014-04-14 13:48:45 -04002149 textureFunction.method = TextureFunction::BIAS;
Nicolas Capense0ba27a2013-06-24 16:10:52 -04002150 }
2151 }
2152
2153 mUsesTexture.insert(textureFunction);
Nicolas Capens84cfa122014-04-14 13:48:45 -04002154
Nicolas Capense0ba27a2013-06-24 16:10:52 -04002155 out << textureFunction.name();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002156 }
Nicolas Capens84cfa122014-04-14 13:48:45 -04002157
Zhenyao Moe40d1e92014-07-16 17:40:36 -07002158 for (TIntermSequence::iterator arg = arguments->begin(); arg != arguments->end(); arg++)
shannon.woods@transgaming.com01a5cf92013-02-28 23:13:51 +00002159 {
2160 if (mOutputType == SH_HLSL11_OUTPUT && IsSampler((*arg)->getAsTyped()->getBasicType()))
2161 {
2162 out << "texture_";
2163 (*arg)->traverse(this);
2164 out << ", sampler_";
2165 }
2166
2167 (*arg)->traverse(this);
2168
Zhenyao Moe40d1e92014-07-16 17:40:36 -07002169 if (arg < arguments->end() - 1)
shannon.woods@transgaming.com01a5cf92013-02-28 23:13:51 +00002170 {
2171 out << ", ";
2172 }
2173 }
2174
2175 out << ")";
2176
2177 return false;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002178 }
2179 break;
Nicolas Capens1af18dc2014-06-11 11:07:32 -04002180 case EOpParameters: outputTriplet(visit, "(", ", ", ")\n{\n"); break;
Zhenyao Moe40d1e92014-07-16 17:40:36 -07002181 case EOpConstructFloat: outputConstructor(visit, node->getType(), "vec1", node->getSequence()); break;
2182 case EOpConstructVec2: outputConstructor(visit, node->getType(), "vec2", node->getSequence()); break;
2183 case EOpConstructVec3: outputConstructor(visit, node->getType(), "vec3", node->getSequence()); break;
2184 case EOpConstructVec4: outputConstructor(visit, node->getType(), "vec4", node->getSequence()); break;
2185 case EOpConstructBool: outputConstructor(visit, node->getType(), "bvec1", node->getSequence()); break;
2186 case EOpConstructBVec2: outputConstructor(visit, node->getType(), "bvec2", node->getSequence()); break;
2187 case EOpConstructBVec3: outputConstructor(visit, node->getType(), "bvec3", node->getSequence()); break;
2188 case EOpConstructBVec4: outputConstructor(visit, node->getType(), "bvec4", node->getSequence()); break;
2189 case EOpConstructInt: outputConstructor(visit, node->getType(), "ivec1", node->getSequence()); break;
2190 case EOpConstructIVec2: outputConstructor(visit, node->getType(), "ivec2", node->getSequence()); break;
2191 case EOpConstructIVec3: outputConstructor(visit, node->getType(), "ivec3", node->getSequence()); break;
2192 case EOpConstructIVec4: outputConstructor(visit, node->getType(), "ivec4", node->getSequence()); break;
2193 case EOpConstructUInt: outputConstructor(visit, node->getType(), "uvec1", node->getSequence()); break;
2194 case EOpConstructUVec2: outputConstructor(visit, node->getType(), "uvec2", node->getSequence()); break;
2195 case EOpConstructUVec3: outputConstructor(visit, node->getType(), "uvec3", node->getSequence()); break;
2196 case EOpConstructUVec4: outputConstructor(visit, node->getType(), "uvec4", node->getSequence()); break;
2197 case EOpConstructMat2: outputConstructor(visit, node->getType(), "mat2", node->getSequence()); break;
2198 case EOpConstructMat3: outputConstructor(visit, node->getType(), "mat3", node->getSequence()); break;
2199 case EOpConstructMat4: outputConstructor(visit, node->getType(), "mat4", node->getSequence()); break;
daniel@transgaming.com7a7003c2010-04-29 03:35:33 +00002200 case EOpConstructStruct:
Jamie Madillbfa91f42014-06-05 15:45:18 -04002201 {
Jamie Madill033dae62014-06-18 12:56:28 -04002202 const TString &structName = StructNameString(*node->getType().getStruct());
Zhenyao Moe40d1e92014-07-16 17:40:36 -07002203 mStructureHLSL->addConstructor(node->getType(), structName, node->getSequence());
Jamie Madillbfa91f42014-06-05 15:45:18 -04002204 outputTriplet(visit, structName + "_ctor(", ", ", ")");
2205 }
daniel@transgaming.com7a7003c2010-04-29 03:35:33 +00002206 break;
daniel@transgaming.comfe565152010-04-10 05:29:07 +00002207 case EOpLessThan: outputTriplet(visit, "(", " < ", ")"); break;
2208 case EOpGreaterThan: outputTriplet(visit, "(", " > ", ")"); break;
2209 case EOpLessThanEqual: outputTriplet(visit, "(", " <= ", ")"); break;
2210 case EOpGreaterThanEqual: outputTriplet(visit, "(", " >= ", ")"); break;
2211 case EOpVectorEqual: outputTriplet(visit, "(", " == ", ")"); break;
2212 case EOpVectorNotEqual: outputTriplet(visit, "(", " != ", ")"); break;
daniel@transgaming.comd7c98102010-05-14 17:30:48 +00002213 case EOpMod:
2214 {
daniel@transgaming.com4229f592011-11-24 22:34:04 +00002215 // We need to look at the number of components in both arguments
Zhenyao Moe40d1e92014-07-16 17:40:36 -07002216 const int modValue = (*node->getSequence())[0]->getAsTyped()->getNominalSize() * 10 +
2217 (*node->getSequence())[1]->getAsTyped()->getNominalSize();
shannonwoods@chromium.org09e09882013-05-30 00:18:25 +00002218 switch (modValue)
daniel@transgaming.comd7c98102010-05-14 17:30:48 +00002219 {
daniel@transgaming.com4229f592011-11-24 22:34:04 +00002220 case 11: mUsesMod1 = true; break;
2221 case 22: mUsesMod2v = true; break;
2222 case 21: mUsesMod2f = true; break;
2223 case 33: mUsesMod3v = true; break;
2224 case 31: mUsesMod3f = true; break;
2225 case 44: mUsesMod4v = true; break;
2226 case 41: mUsesMod4f = true; break;
daniel@transgaming.comd7c98102010-05-14 17:30:48 +00002227 default: UNREACHABLE();
2228 }
2229
2230 outputTriplet(visit, "mod(", ", ", ")");
2231 }
2232 break;
daniel@transgaming.comfe565152010-04-10 05:29:07 +00002233 case EOpPow: outputTriplet(visit, "pow(", ", ", ")"); break;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002234 case EOpAtan:
Zhenyao Moe40d1e92014-07-16 17:40:36 -07002235 ASSERT(node->getSequence()->size() == 2); // atan(x) is a unary operator
2236 switch ((*node->getSequence())[0]->getAsTyped()->getNominalSize())
daniel@transgaming.com35342dc2012-02-28 02:01:22 +00002237 {
2238 case 1: mUsesAtan2_1 = true; break;
2239 case 2: mUsesAtan2_2 = true; break;
2240 case 3: mUsesAtan2_3 = true; break;
2241 case 4: mUsesAtan2_4 = true; break;
2242 default: UNREACHABLE();
2243 }
daniel@transgaming.com0f189612010-05-07 13:03:36 +00002244 outputTriplet(visit, "atanyx(", ", ", ")");
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002245 break;
2246 case EOpMin: outputTriplet(visit, "min(", ", ", ")"); break;
2247 case EOpMax: outputTriplet(visit, "max(", ", ", ")"); break;
2248 case EOpClamp: outputTriplet(visit, "clamp(", ", ", ")"); break;
2249 case EOpMix: outputTriplet(visit, "lerp(", ", ", ")"); break;
2250 case EOpStep: outputTriplet(visit, "step(", ", ", ")"); break;
2251 case EOpSmoothStep: outputTriplet(visit, "smoothstep(", ", ", ")"); break;
2252 case EOpDistance: outputTriplet(visit, "distance(", ", ", ")"); break;
2253 case EOpDot: outputTriplet(visit, "dot(", ", ", ")"); break;
2254 case EOpCross: outputTriplet(visit, "cross(", ", ", ")"); break;
daniel@transgaming.com0bbb0312010-04-26 15:33:39 +00002255 case EOpFaceForward:
2256 {
Zhenyao Moe40d1e92014-07-16 17:40:36 -07002257 switch ((*node->getSequence())[0]->getAsTyped()->getNominalSize()) // Number of components in the first argument
daniel@transgaming.com0bbb0312010-04-26 15:33:39 +00002258 {
2259 case 1: mUsesFaceforward1 = true; break;
2260 case 2: mUsesFaceforward2 = true; break;
2261 case 3: mUsesFaceforward3 = true; break;
2262 case 4: mUsesFaceforward4 = true; break;
2263 default: UNREACHABLE();
2264 }
Jamie Madillf91ce812014-06-13 10:04:34 -04002265
daniel@transgaming.com0bbb0312010-04-26 15:33:39 +00002266 outputTriplet(visit, "faceforward(", ", ", ")");
2267 }
2268 break;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002269 case EOpReflect: outputTriplet(visit, "reflect(", ", ", ")"); break;
2270 case EOpRefract: outputTriplet(visit, "refract(", ", ", ")"); break;
2271 case EOpMul: outputTriplet(visit, "(", " * ", ")"); break;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002272 default: UNREACHABLE();
2273 }
2274
2275 return true;
2276}
2277
2278bool OutputHLSL::visitSelection(Visit visit, TIntermSelection *node)
2279{
daniel@transgaming.com950f9932010-04-13 03:26:14 +00002280 TInfoSinkBase &out = mBody;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002281
alokp@chromium.org60fe4072010-03-29 20:58:29 +00002282 if (node->usesTernaryOperator())
2283 {
daniel@transgaming.comf8f8f362012-04-28 00:35:00 +00002284 out << "s" << mUnfoldShortCircuit->getNextTemporaryIndex();
alokp@chromium.org60fe4072010-03-29 20:58:29 +00002285 }
2286 else // if/else statement
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002287 {
daniel@transgaming.comf8f8f362012-04-28 00:35:00 +00002288 mUnfoldShortCircuit->traverse(node->getCondition());
daniel@transgaming.comb5875982010-04-15 20:44:53 +00002289
Jamie Madill3c9eeb92013-11-04 11:09:26 -05002290 out << "if (";
daniel@transgaming.com3d53fda2010-03-21 04:30:55 +00002291
2292 node->getCondition()->traverse(this);
2293
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002294 out << ")\n";
Jamie Madillf91ce812014-06-13 10:04:34 -04002295
Jamie Madill075edd82013-07-08 13:30:19 -04002296 outputLineDirective(node->getLine().first_line);
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002297 out << "{\n";
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002298
Jamie Madill3c9eeb92013-11-04 11:09:26 -05002299 bool discard = false;
2300
daniel@transgaming.combb885322010-04-15 20:45:24 +00002301 if (node->getTrueBlock())
2302 {
daniel@transgaming.com44fffee2012-04-28 00:34:20 +00002303 traverseStatements(node->getTrueBlock());
Jamie Madill3c9eeb92013-11-04 11:09:26 -05002304
2305 // Detect true discard
2306 discard = (discard || FindDiscard::search(node->getTrueBlock()));
daniel@transgaming.combb885322010-04-15 20:45:24 +00002307 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002308
Jamie Madill075edd82013-07-08 13:30:19 -04002309 outputLineDirective(node->getLine().first_line);
daniel@transgaming.com44fffee2012-04-28 00:34:20 +00002310 out << ";\n}\n";
daniel@transgaming.com3d53fda2010-03-21 04:30:55 +00002311
2312 if (node->getFalseBlock())
2313 {
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002314 out << "else\n";
daniel@transgaming.com3d53fda2010-03-21 04:30:55 +00002315
Jamie Madill075edd82013-07-08 13:30:19 -04002316 outputLineDirective(node->getFalseBlock()->getLine().first_line);
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002317 out << "{\n";
2318
Jamie Madill075edd82013-07-08 13:30:19 -04002319 outputLineDirective(node->getFalseBlock()->getLine().first_line);
daniel@transgaming.com44fffee2012-04-28 00:34:20 +00002320 traverseStatements(node->getFalseBlock());
daniel@transgaming.com3d53fda2010-03-21 04:30:55 +00002321
Jamie Madill075edd82013-07-08 13:30:19 -04002322 outputLineDirective(node->getFalseBlock()->getLine().first_line);
daniel@transgaming.com44fffee2012-04-28 00:34:20 +00002323 out << ";\n}\n";
Jamie Madill3c9eeb92013-11-04 11:09:26 -05002324
2325 // Detect false discard
2326 discard = (discard || FindDiscard::search(node->getFalseBlock()));
2327 }
2328
2329 // ANGLE issue 486: Detect problematic conditional discard
2330 if (discard && FindSideEffectRewriting::search(node))
2331 {
2332 mUsesDiscardRewriting = true;
daniel@transgaming.com3d53fda2010-03-21 04:30:55 +00002333 }
2334 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002335
2336 return false;
2337}
2338
2339void OutputHLSL::visitConstantUnion(TIntermConstantUnion *node)
2340{
daniel@transgaming.coma54da4e2010-05-07 13:03:28 +00002341 writeConstantUnion(node->getType(), node->getUnionArrayPointer());
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002342}
2343
2344bool OutputHLSL::visitLoop(Visit visit, TIntermLoop *node)
2345{
Nicolas Capens655fe362014-04-11 13:12:34 -04002346 mNestedLoopDepth++;
2347
daniel@transgaming.come11100c2012-05-31 01:20:32 +00002348 bool wasDiscontinuous = mInsideDiscontinuousLoop;
2349
shannon.woods@transgaming.come91615c2013-01-25 21:56:03 +00002350 if (mContainsLoopDiscontinuity && !mInsideDiscontinuousLoop)
daniel@transgaming.come11100c2012-05-31 01:20:32 +00002351 {
2352 mInsideDiscontinuousLoop = containsLoopDiscontinuity(node);
2353 }
2354
shannon.woods@transgaming.com9cbce922013-02-28 23:14:24 +00002355 if (mOutputType == SH_HLSL9_OUTPUT)
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002356 {
shannon.woods@transgaming.com9cbce922013-02-28 23:14:24 +00002357 if (handleExcessiveLoop(node))
2358 {
Nicolas Capens655fe362014-04-11 13:12:34 -04002359 mInsideDiscontinuousLoop = wasDiscontinuous;
2360 mNestedLoopDepth--;
2361
shannon.woods@transgaming.com9cbce922013-02-28 23:14:24 +00002362 return false;
2363 }
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002364 }
2365
daniel@transgaming.com950f9932010-04-13 03:26:14 +00002366 TInfoSinkBase &out = mBody;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002367
alokp@chromium.org52813552010-11-16 18:36:09 +00002368 if (node->getType() == ELoopDoWhile)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002369 {
daniel@transgaming.com2a073de2012-03-09 21:56:43 +00002370 out << "{do\n";
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002371
Jamie Madill075edd82013-07-08 13:30:19 -04002372 outputLineDirective(node->getLine().first_line);
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002373 out << "{\n";
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002374 }
2375 else
2376 {
daniel@transgaming.com2a073de2012-03-09 21:56:43 +00002377 out << "{for(";
Jamie Madillf91ce812014-06-13 10:04:34 -04002378
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002379 if (node->getInit())
2380 {
2381 node->getInit()->traverse(this);
2382 }
2383
2384 out << "; ";
2385
alokp@chromium.org52813552010-11-16 18:36:09 +00002386 if (node->getCondition())
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002387 {
alokp@chromium.org52813552010-11-16 18:36:09 +00002388 node->getCondition()->traverse(this);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002389 }
2390
2391 out << "; ";
2392
alokp@chromium.org52813552010-11-16 18:36:09 +00002393 if (node->getExpression())
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002394 {
alokp@chromium.org52813552010-11-16 18:36:09 +00002395 node->getExpression()->traverse(this);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002396 }
2397
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002398 out << ")\n";
Jamie Madillf91ce812014-06-13 10:04:34 -04002399
Jamie Madill075edd82013-07-08 13:30:19 -04002400 outputLineDirective(node->getLine().first_line);
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002401 out << "{\n";
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002402 }
2403
2404 if (node->getBody())
2405 {
daniel@transgaming.com44fffee2012-04-28 00:34:20 +00002406 traverseStatements(node->getBody());
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002407 }
2408
Jamie Madill075edd82013-07-08 13:30:19 -04002409 outputLineDirective(node->getLine().first_line);
daniel@transgaming.com7fb81e82011-09-23 18:20:46 +00002410 out << ";}\n";
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002411
alokp@chromium.org52813552010-11-16 18:36:09 +00002412 if (node->getType() == ELoopDoWhile)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002413 {
Jamie Madill075edd82013-07-08 13:30:19 -04002414 outputLineDirective(node->getCondition()->getLine().first_line);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002415 out << "while(\n";
2416
alokp@chromium.org52813552010-11-16 18:36:09 +00002417 node->getCondition()->traverse(this);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002418
daniel@transgaming.com73536982012-03-21 20:45:49 +00002419 out << ");";
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002420 }
2421
daniel@transgaming.com73536982012-03-21 20:45:49 +00002422 out << "}\n";
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002423
daniel@transgaming.come11100c2012-05-31 01:20:32 +00002424 mInsideDiscontinuousLoop = wasDiscontinuous;
Nicolas Capens655fe362014-04-11 13:12:34 -04002425 mNestedLoopDepth--;
daniel@transgaming.come11100c2012-05-31 01:20:32 +00002426
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002427 return false;
2428}
2429
2430bool OutputHLSL::visitBranch(Visit visit, TIntermBranch *node)
2431{
daniel@transgaming.com950f9932010-04-13 03:26:14 +00002432 TInfoSinkBase &out = mBody;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002433
2434 switch (node->getFlowOp())
2435 {
Jamie Madill3c9eeb92013-11-04 11:09:26 -05002436 case EOpKill:
2437 outputTriplet(visit, "discard;\n", "", "");
2438 break;
daniel@transgaming.com8c77f852012-07-11 20:37:35 +00002439 case EOpBreak:
2440 if (visit == PreVisit)
2441 {
Nicolas Capens655fe362014-04-11 13:12:34 -04002442 if (mNestedLoopDepth > 1)
2443 {
2444 mUsesNestedBreak = true;
2445 }
2446
daniel@transgaming.com8c77f852012-07-11 20:37:35 +00002447 if (mExcessiveLoopIndex)
2448 {
2449 out << "{Break";
2450 mExcessiveLoopIndex->traverse(this);
2451 out << " = true; break;}\n";
2452 }
2453 else
2454 {
2455 out << "break;\n";
2456 }
2457 }
2458 break;
apatrick@chromium.org05a5d8e2011-02-16 19:07:20 +00002459 case EOpContinue: outputTriplet(visit, "continue;\n", "", ""); break;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002460 case EOpReturn:
2461 if (visit == PreVisit)
2462 {
2463 if (node->getExpression())
2464 {
2465 out << "return ";
2466 }
2467 else
2468 {
2469 out << "return;\n";
2470 }
2471 }
2472 else if (visit == PostVisit)
2473 {
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002474 if (node->getExpression())
2475 {
2476 out << ";\n";
2477 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002478 }
2479 break;
2480 default: UNREACHABLE();
2481 }
2482
2483 return true;
2484}
2485
daniel@transgaming.com44fffee2012-04-28 00:34:20 +00002486void OutputHLSL::traverseStatements(TIntermNode *node)
2487{
2488 if (isSingleStatement(node))
2489 {
daniel@transgaming.comf8f8f362012-04-28 00:35:00 +00002490 mUnfoldShortCircuit->traverse(node);
daniel@transgaming.com44fffee2012-04-28 00:34:20 +00002491 }
2492
2493 node->traverse(this);
2494}
2495
daniel@transgaming.comb5875982010-04-15 20:44:53 +00002496bool OutputHLSL::isSingleStatement(TIntermNode *node)
2497{
2498 TIntermAggregate *aggregate = node->getAsAggregate();
2499
2500 if (aggregate)
2501 {
2502 if (aggregate->getOp() == EOpSequence)
2503 {
2504 return false;
2505 }
2506 else
2507 {
Zhenyao Moe40d1e92014-07-16 17:40:36 -07002508 for (TIntermSequence::iterator sit = aggregate->getSequence()->begin(); sit != aggregate->getSequence()->end(); sit++)
daniel@transgaming.comb5875982010-04-15 20:44:53 +00002509 {
2510 if (!isSingleStatement(*sit))
2511 {
2512 return false;
2513 }
2514 }
2515
2516 return true;
2517 }
2518 }
2519
2520 return true;
2521}
2522
daniel@transgaming.com06eb0d42012-05-31 01:17:14 +00002523// Handle loops with more than 254 iterations (unsupported by D3D9) by splitting them
2524// (The D3D documentation says 255 iterations, but the compiler complains at anything more than 254).
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002525bool OutputHLSL::handleExcessiveLoop(TIntermLoop *node)
2526{
daniel@transgaming.com06eb0d42012-05-31 01:17:14 +00002527 const int MAX_LOOP_ITERATIONS = 254;
daniel@transgaming.com950f9932010-04-13 03:26:14 +00002528 TInfoSinkBase &out = mBody;
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002529
2530 // Parse loops of the form:
2531 // for(int index = initial; index [comparator] limit; index += increment)
2532 TIntermSymbol *index = NULL;
2533 TOperator comparator = EOpNull;
2534 int initial = 0;
2535 int limit = 0;
2536 int increment = 0;
2537
2538 // Parse index name and intial value
2539 if (node->getInit())
2540 {
2541 TIntermAggregate *init = node->getInit()->getAsAggregate();
2542
2543 if (init)
2544 {
Zhenyao Moe40d1e92014-07-16 17:40:36 -07002545 TIntermSequence *sequence = init->getSequence();
2546 TIntermTyped *variable = (*sequence)[0]->getAsTyped();
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002547
2548 if (variable && variable->getQualifier() == EvqTemporary)
2549 {
2550 TIntermBinary *assign = variable->getAsBinaryNode();
2551
2552 if (assign->getOp() == EOpInitialize)
2553 {
2554 TIntermSymbol *symbol = assign->getLeft()->getAsSymbolNode();
2555 TIntermConstantUnion *constant = assign->getRight()->getAsConstantUnion();
2556
2557 if (symbol && constant)
2558 {
shannonwoods@chromium.org09e09882013-05-30 00:18:25 +00002559 if (constant->getBasicType() == EbtInt && constant->isScalar())
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002560 {
2561 index = symbol;
shannon.woods%transgaming.com@gtempaccount.comc0d0c222013-04-13 03:29:36 +00002562 initial = constant->getIConst(0);
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002563 }
2564 }
2565 }
2566 }
2567 }
2568 }
2569
2570 // Parse comparator and limit value
alokp@chromium.org52813552010-11-16 18:36:09 +00002571 if (index != NULL && node->getCondition())
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002572 {
alokp@chromium.org52813552010-11-16 18:36:09 +00002573 TIntermBinary *test = node->getCondition()->getAsBinaryNode();
Jamie Madillf91ce812014-06-13 10:04:34 -04002574
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002575 if (test && test->getLeft()->getAsSymbolNode()->getId() == index->getId())
2576 {
2577 TIntermConstantUnion *constant = test->getRight()->getAsConstantUnion();
2578
2579 if (constant)
2580 {
shannonwoods@chromium.org09e09882013-05-30 00:18:25 +00002581 if (constant->getBasicType() == EbtInt && constant->isScalar())
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002582 {
2583 comparator = test->getOp();
shannon.woods%transgaming.com@gtempaccount.comc0d0c222013-04-13 03:29:36 +00002584 limit = constant->getIConst(0);
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002585 }
2586 }
2587 }
2588 }
2589
2590 // Parse increment
alokp@chromium.org52813552010-11-16 18:36:09 +00002591 if (index != NULL && comparator != EOpNull && node->getExpression())
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002592 {
alokp@chromium.org52813552010-11-16 18:36:09 +00002593 TIntermBinary *binaryTerminal = node->getExpression()->getAsBinaryNode();
2594 TIntermUnary *unaryTerminal = node->getExpression()->getAsUnaryNode();
Jamie Madillf91ce812014-06-13 10:04:34 -04002595
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002596 if (binaryTerminal)
2597 {
2598 TOperator op = binaryTerminal->getOp();
2599 TIntermConstantUnion *constant = binaryTerminal->getRight()->getAsConstantUnion();
2600
2601 if (constant)
2602 {
shannonwoods@chromium.org09e09882013-05-30 00:18:25 +00002603 if (constant->getBasicType() == EbtInt && constant->isScalar())
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002604 {
shannon.woods%transgaming.com@gtempaccount.comc0d0c222013-04-13 03:29:36 +00002605 int value = constant->getIConst(0);
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002606
2607 switch (op)
2608 {
2609 case EOpAddAssign: increment = value; break;
2610 case EOpSubAssign: increment = -value; break;
2611 default: UNIMPLEMENTED();
2612 }
2613 }
2614 }
2615 }
2616 else if (unaryTerminal)
2617 {
2618 TOperator op = unaryTerminal->getOp();
2619
2620 switch (op)
2621 {
2622 case EOpPostIncrement: increment = 1; break;
2623 case EOpPostDecrement: increment = -1; break;
2624 case EOpPreIncrement: increment = 1; break;
2625 case EOpPreDecrement: increment = -1; break;
2626 default: UNIMPLEMENTED();
2627 }
2628 }
2629 }
2630
2631 if (index != NULL && comparator != EOpNull && increment != 0)
2632 {
2633 if (comparator == EOpLessThanEqual)
2634 {
2635 comparator = EOpLessThan;
2636 limit += 1;
2637 }
2638
2639 if (comparator == EOpLessThan)
2640 {
daniel@transgaming.comf1f538e2011-02-09 16:30:01 +00002641 int iterations = (limit - initial) / increment;
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002642
daniel@transgaming.com06eb0d42012-05-31 01:17:14 +00002643 if (iterations <= MAX_LOOP_ITERATIONS)
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002644 {
2645 return false; // Not an excessive loop
2646 }
2647
daniel@transgaming.come9b3f602012-07-11 20:37:31 +00002648 TIntermSymbol *restoreIndex = mExcessiveLoopIndex;
2649 mExcessiveLoopIndex = index;
2650
daniel@transgaming.com0933b0c2012-07-11 20:37:28 +00002651 out << "{int ";
2652 index->traverse(this);
daniel@transgaming.com8c77f852012-07-11 20:37:35 +00002653 out << ";\n"
2654 "bool Break";
2655 index->traverse(this);
2656 out << " = false;\n";
daniel@transgaming.comc264de42012-07-11 20:37:25 +00002657
daniel@transgaming.com5b60f5e2012-07-11 20:37:38 +00002658 bool firstLoopFragment = true;
2659
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002660 while (iterations > 0)
2661 {
daniel@transgaming.com06eb0d42012-05-31 01:17:14 +00002662 int clampedLimit = initial + increment * std::min(MAX_LOOP_ITERATIONS, iterations);
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002663
daniel@transgaming.com5b60f5e2012-07-11 20:37:38 +00002664 if (!firstLoopFragment)
2665 {
Jamie Madill3c9eeb92013-11-04 11:09:26 -05002666 out << "if (!Break";
daniel@transgaming.com5b60f5e2012-07-11 20:37:38 +00002667 index->traverse(this);
2668 out << ") {\n";
2669 }
daniel@transgaming.com2fe20a82012-07-11 20:37:41 +00002670
2671 if (iterations <= MAX_LOOP_ITERATIONS) // Last loop fragment
2672 {
2673 mExcessiveLoopIndex = NULL; // Stops setting the Break flag
2674 }
Jamie Madillf91ce812014-06-13 10:04:34 -04002675
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002676 // for(int index = initial; index < clampedLimit; index += increment)
2677
daniel@transgaming.com0933b0c2012-07-11 20:37:28 +00002678 out << "for(";
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002679 index->traverse(this);
2680 out << " = ";
2681 out << initial;
2682
2683 out << "; ";
2684 index->traverse(this);
2685 out << " < ";
2686 out << clampedLimit;
2687
2688 out << "; ";
2689 index->traverse(this);
2690 out << " += ";
2691 out << increment;
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002692 out << ")\n";
Jamie Madillf91ce812014-06-13 10:04:34 -04002693
Jamie Madill075edd82013-07-08 13:30:19 -04002694 outputLineDirective(node->getLine().first_line);
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002695 out << "{\n";
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002696
2697 if (node->getBody())
2698 {
2699 node->getBody()->traverse(this);
2700 }
2701
Jamie Madill075edd82013-07-08 13:30:19 -04002702 outputLineDirective(node->getLine().first_line);
daniel@transgaming.com5b60f5e2012-07-11 20:37:38 +00002703 out << ";}\n";
2704
2705 if (!firstLoopFragment)
2706 {
2707 out << "}\n";
2708 }
2709
2710 firstLoopFragment = false;
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002711
daniel@transgaming.com06eb0d42012-05-31 01:17:14 +00002712 initial += MAX_LOOP_ITERATIONS * increment;
2713 iterations -= MAX_LOOP_ITERATIONS;
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002714 }
Jamie Madillf91ce812014-06-13 10:04:34 -04002715
daniel@transgaming.comc264de42012-07-11 20:37:25 +00002716 out << "}";
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002717
daniel@transgaming.come9b3f602012-07-11 20:37:31 +00002718 mExcessiveLoopIndex = restoreIndex;
2719
daniel@transgaming.com4a35ef22010-04-08 03:51:06 +00002720 return true;
2721 }
2722 else UNIMPLEMENTED();
2723 }
2724
2725 return false; // Not handled as an excessive loop
2726}
2727
daniel@transgaming.com67de6d62010-04-29 03:35:30 +00002728void OutputHLSL::outputTriplet(Visit visit, const TString &preString, const TString &inString, const TString &postString)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002729{
daniel@transgaming.com950f9932010-04-13 03:26:14 +00002730 TInfoSinkBase &out = mBody;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002731
daniel@transgaming.com67de6d62010-04-29 03:35:30 +00002732 if (visit == PreVisit)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002733 {
2734 out << preString;
2735 }
daniel@transgaming.com67de6d62010-04-29 03:35:30 +00002736 else if (visit == InVisit)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002737 {
2738 out << inString;
2739 }
daniel@transgaming.com67de6d62010-04-29 03:35:30 +00002740 else if (visit == PostVisit)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002741 {
2742 out << postString;
2743 }
2744}
2745
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002746void OutputHLSL::outputLineDirective(int line)
2747{
2748 if ((mContext.compileOptions & SH_LINE_DIRECTIVES) && (line > 0))
2749 {
baustin@google.com8ab69842011-06-02 21:53:45 +00002750 mBody << "\n";
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002751 mBody << "#line " << line;
2752
2753 if (mContext.sourcePath)
2754 {
2755 mBody << " \"" << mContext.sourcePath << "\"";
2756 }
Jamie Madillf91ce812014-06-13 10:04:34 -04002757
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002758 mBody << "\n";
2759 }
2760}
2761
daniel@transgaming.comd1acd1e2010-04-13 03:25:57 +00002762TString OutputHLSL::argumentString(const TIntermSymbol *symbol)
2763{
2764 TQualifier qualifier = symbol->getQualifier();
2765 const TType &type = symbol->getType();
daniel@transgaming.com005c7392010-04-15 20:45:27 +00002766 TString name = symbol->getSymbol();
daniel@transgaming.comd1acd1e2010-04-13 03:25:57 +00002767
daniel@transgaming.com005c7392010-04-15 20:45:27 +00002768 if (name.empty()) // HLSL demands named arguments, also for prototypes
2769 {
daniel@transgaming.comb6ef8f12010-11-15 16:41:14 +00002770 name = "x" + str(mUniqueIndex++);
daniel@transgaming.com005c7392010-04-15 20:45:27 +00002771 }
2772 else
2773 {
Jamie Madill033dae62014-06-18 12:56:28 -04002774 name = Decorate(name);
daniel@transgaming.com005c7392010-04-15 20:45:27 +00002775 }
2776
shannon.woods@transgaming.com01a5cf92013-02-28 23:13:51 +00002777 if (mOutputType == SH_HLSL11_OUTPUT && IsSampler(type.getBasicType()))
2778 {
Jamie Madill033dae62014-06-18 12:56:28 -04002779 return QualifierString(qualifier) + " " + TextureString(type) + " texture_" + name + ArrayString(type) + ", " +
Jamie Madillf91ce812014-06-13 10:04:34 -04002780 QualifierString(qualifier) + " " + SamplerString(type) + " sampler_" + name + ArrayString(type);
shannon.woods@transgaming.com01a5cf92013-02-28 23:13:51 +00002781 }
2782
Jamie Madill033dae62014-06-18 12:56:28 -04002783 return QualifierString(qualifier) + " " + TypeString(type) + " " + name + ArrayString(type);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002784}
2785
2786TString OutputHLSL::initializer(const TType &type)
2787{
2788 TString string;
2789
Jamie Madill94bf7f22013-07-08 13:31:15 -04002790 size_t size = type.getObjectSize();
2791 for (size_t component = 0; component < size; component++)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002792 {
daniel@transgaming.comead23042010-04-29 03:35:36 +00002793 string += "0";
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002794
Jamie Madill94bf7f22013-07-08 13:31:15 -04002795 if (component + 1 < size)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002796 {
2797 string += ", ";
2798 }
2799 }
2800
daniel@transgaming.comead23042010-04-29 03:35:36 +00002801 return "{" + string + "}";
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002802}
daniel@transgaming.com72d0b522010-04-13 19:53:44 +00002803
Nicolas Capens1af18dc2014-06-11 11:07:32 -04002804void OutputHLSL::outputConstructor(Visit visit, const TType &type, const TString &name, const TIntermSequence *parameters)
2805{
2806 TInfoSinkBase &out = mBody;
2807
2808 if (visit == PreVisit)
2809 {
Jamie Madill8daaba12014-06-13 10:04:33 -04002810 mStructureHLSL->addConstructor(type, name, parameters);
Nicolas Capens1af18dc2014-06-11 11:07:32 -04002811
2812 out << name + "(";
2813 }
2814 else if (visit == InVisit)
2815 {
2816 out << ", ";
2817 }
2818 else if (visit == PostVisit)
2819 {
2820 out << ")";
2821 }
2822}
2823
daniel@transgaming.coma54da4e2010-05-07 13:03:28 +00002824const ConstantUnion *OutputHLSL::writeConstantUnion(const TType &type, const ConstantUnion *constUnion)
2825{
2826 TInfoSinkBase &out = mBody;
2827
Jamie Madill98493dd2013-07-08 14:39:03 -04002828 const TStructure* structure = type.getStruct();
2829 if (structure)
daniel@transgaming.coma54da4e2010-05-07 13:03:28 +00002830 {
Jamie Madill033dae62014-06-18 12:56:28 -04002831 out << StructNameString(*structure) + "_ctor(";
Jamie Madillf91ce812014-06-13 10:04:34 -04002832
Jamie Madill98493dd2013-07-08 14:39:03 -04002833 const TFieldList& fields = structure->fields();
daniel@transgaming.coma54da4e2010-05-07 13:03:28 +00002834
Jamie Madill98493dd2013-07-08 14:39:03 -04002835 for (size_t i = 0; i < fields.size(); i++)
daniel@transgaming.coma54da4e2010-05-07 13:03:28 +00002836 {
Jamie Madill98493dd2013-07-08 14:39:03 -04002837 const TType *fieldType = fields[i]->type();
daniel@transgaming.coma54da4e2010-05-07 13:03:28 +00002838 constUnion = writeConstantUnion(*fieldType, constUnion);
2839
Jamie Madill98493dd2013-07-08 14:39:03 -04002840 if (i != fields.size() - 1)
daniel@transgaming.coma54da4e2010-05-07 13:03:28 +00002841 {
2842 out << ", ";
2843 }
2844 }
2845
2846 out << ")";
2847 }
2848 else
2849 {
Jamie Madill94bf7f22013-07-08 13:31:15 -04002850 size_t size = type.getObjectSize();
daniel@transgaming.coma54da4e2010-05-07 13:03:28 +00002851 bool writeType = size > 1;
Jamie Madillf91ce812014-06-13 10:04:34 -04002852
daniel@transgaming.coma54da4e2010-05-07 13:03:28 +00002853 if (writeType)
2854 {
Jamie Madill033dae62014-06-18 12:56:28 -04002855 out << TypeString(type) << "(";
daniel@transgaming.coma54da4e2010-05-07 13:03:28 +00002856 }
2857
Jamie Madill94bf7f22013-07-08 13:31:15 -04002858 for (size_t i = 0; i < size; i++, constUnion++)
daniel@transgaming.coma54da4e2010-05-07 13:03:28 +00002859 {
2860 switch (constUnion->getType())
2861 {
daniel@transgaming.com6c1203f2013-01-11 04:12:43 +00002862 case EbtFloat: out << std::min(FLT_MAX, std::max(-FLT_MAX, constUnion->getFConst())); break;
daniel@transgaming.coma54da4e2010-05-07 13:03:28 +00002863 case EbtInt: out << constUnion->getIConst(); break;
Nicolas Capensc0f7c612013-06-05 11:46:09 -04002864 case EbtUInt: out << constUnion->getUConst(); break;
alokp@chromium.org4e4facd2010-06-02 15:21:22 +00002865 case EbtBool: out << constUnion->getBConst(); break;
daniel@transgaming.coma54da4e2010-05-07 13:03:28 +00002866 default: UNREACHABLE();
2867 }
2868
2869 if (i != size - 1)
2870 {
2871 out << ", ";
2872 }
2873 }
2874
2875 if (writeType)
2876 {
2877 out << ")";
2878 }
2879 }
2880
2881 return constUnion;
2882}
2883
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002884}