Home
last modified time | relevance | path

Searched refs:infoSink (Results 1 – 14 of 14) sorted by relevance

/external/chromium_org/third_party/angle/src/compiler/translator/
DCompiler.cpp160 TIntermediate intermediate(infoSink); in compile()
163 sourcePath, infoSink); in compile()
188 … success = detectCallDepth(root, infoSink, (compileOptions & SH_LIMIT_CALL_STACK_DEPTH) != 0); in compile()
214 infoSink.info.prefix(EPrefixError); in compile()
215 infoSink.info << "sampler array index is float loop index"; in compile()
246 infoSink.info.prefix(EPrefixError); in compile()
247 infoSink.info << "too many uniforms"; in compile()
354 infoSink.info.erase(); in clearResults()
355 infoSink.obj.erase(); in clearResults()
356 infoSink.debug.erase(); in clearResults()
[all …]
DparseConst.cpp22 infoSink(sink), in TConstTraverser()
46 TInfoSink& infoSink; member in TConstTraverser
64infoSink.info.message(EPrefixInternalError, node->getLine(), "Symbol Node found in constant constr… in visitSymbol()
77 infoSink.info.message(EPrefixError, node->getLine(), buf.c_str()); in visitBinary()
82infoSink.info.message(EPrefixInternalError, node->getLine(), "Binary Node found in constant constr… in visitBinary()
92 infoSink.info.message(EPrefixError, node->getLine(), buf.c_str()); in visitUnary()
103 infoSink.info.message(EPrefixError, node->getLine(), buf.c_str()); in visitAggregate()
149infoSink.info.message(EPrefixInternalError, node->getLine(), "Selection Node found in constant con… in visitSelection()
159 assert(infoSink.info.size() != 0); in visitConstantUnion()
222infoSink.info.message(EPrefixInternalError, node->getLine(), "Loop Node found in constant construc… in visitLoop()
[all …]
DIntermediate.cpp219 if (!node->promote(infoSink)) in addBinaryMath()
228 …TIntermTyped *typedReturnNode = leftTempConstant->fold(node->getOp(), rightTempConstant, infoSink); in addBinaryMath()
257 if (! node->promote(infoSink)) in addAssign()
293 infoSink.info.message(EPrefixInternalError, line, "Bad type in AddUnaryMath"); in addUnaryMath()
361 if (! node->promote(infoSink)) in addUnaryMath()
365 TIntermTyped* newChild = childTempConstant->fold(op, 0, infoSink); in addUnaryMath()
498infoSink.info.message(EPrefixInternalError, node->getLine(), "Bad promotion node"); in addConversion()
508infoSink.info.message(EPrefixInternalError, node->getLine(), "Bad promotion node"); in addConversion()
518infoSink.info.message(EPrefixInternalError, node->getLine(), "Bad promotion node"); in addConversion()
528infoSink.info.message(EPrefixInternalError, node->getLine(), "Bad promotion node"); in addConversion()
[all …]
DShHandle.h68 TInfoSink& getInfoSink() { return infoSink; } in getInfoSink()
89 bool detectCallDepth(TIntermNode* root, TInfoSink& infoSink, bool limitCallStackDepth);
157 TInfoSink infoSink; // Output sink. variable
DDiagnostics.h17 TDiagnostics(TInfoSink& infoSink);
20 TInfoSink& infoSink() { return mInfoSink; } in infoSink() function
DDetectCallDepth.h67 TInfoSink& getInfoSink() { return infoSink; } in getInfoSink()
71 TInfoSink& infoSink; variable
DDiagnostics.cpp13 TDiagnostics::TDiagnostics(TInfoSink& infoSink) : in TDiagnostics() argument
14 mInfoSink(infoSink), in TDiagnostics()
DDetectCallDepth.cpp72 DetectCallDepth::DetectCallDepth(TInfoSink& infoSink, bool limitCallStackDepth, int maxCallStackDep… in DetectCallDepth() argument
75 infoSink(infoSink), in DetectCallDepth()
Dlocalintermediate.h24 TIntermediate(TInfoSink& i) : infoSink(i) { } in TIntermediate()
52 TInfoSink& infoSink; variable
DShaderLang.cpp271 TInfoSink& infoSink = compiler->getInfoSink(); in ShGetInfoLog() local
272 strcpy(infoLog, infoSink.info.c_str()); in ShGetInfoLog()
287 TInfoSink& infoSink = compiler->getInfoSink(); in ShGetObjectCode() local
288 strcpy(objCode, infoSink.obj.c_str()); in ShGetObjectCode()
DParseContext.h72 TInfoSink& infoSink() { return diagnostics.infoSink(); } in infoSink() function
DSymbolTable.h395 void dump(TInfoSink &infoSink) const;
DintermOut.cpp436 TOutputTraverser it(infoSink.info); in outputTree()
DOutputHLSL.cpp190 mContext.infoSink().obj << mHeader.c_str(); in output()
191 mContext.infoSink().obj << mBody.c_str(); in output()