/external/chromium_org/third_party/angle/src/compiler/translator/ |
D | Compiler.cpp | 160 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 …]
|
D | parseConst.cpp | 22 infoSink(sink), in TConstTraverser() 46 TInfoSink& infoSink; member in TConstTraverser 64 …infoSink.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() 82 …infoSink.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() 149 …infoSink.info.message(EPrefixInternalError, node->getLine(), "Selection Node found in constant con… in visitSelection() 159 assert(infoSink.info.size() != 0); in visitConstantUnion() 222 …infoSink.info.message(EPrefixInternalError, node->getLine(), "Loop Node found in constant construc… in visitLoop() [all …]
|
D | Intermediate.cpp | 219 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() 498 … infoSink.info.message(EPrefixInternalError, node->getLine(), "Bad promotion node"); in addConversion() 508 … infoSink.info.message(EPrefixInternalError, node->getLine(), "Bad promotion node"); in addConversion() 518 … infoSink.info.message(EPrefixInternalError, node->getLine(), "Bad promotion node"); in addConversion() 528 … infoSink.info.message(EPrefixInternalError, node->getLine(), "Bad promotion node"); in addConversion() [all …]
|
D | ShHandle.h | 68 TInfoSink& getInfoSink() { return infoSink; } in getInfoSink() 89 bool detectCallDepth(TIntermNode* root, TInfoSink& infoSink, bool limitCallStackDepth); 157 TInfoSink infoSink; // Output sink. variable
|
D | Diagnostics.h | 17 TDiagnostics(TInfoSink& infoSink); 20 TInfoSink& infoSink() { return mInfoSink; } in infoSink() function
|
D | DetectCallDepth.h | 67 TInfoSink& getInfoSink() { return infoSink; } in getInfoSink() 71 TInfoSink& infoSink; variable
|
D | Diagnostics.cpp | 13 TDiagnostics::TDiagnostics(TInfoSink& infoSink) : in TDiagnostics() argument 14 mInfoSink(infoSink), in TDiagnostics()
|
D | DetectCallDepth.cpp | 72 DetectCallDepth::DetectCallDepth(TInfoSink& infoSink, bool limitCallStackDepth, int maxCallStackDep… in DetectCallDepth() argument 75 infoSink(infoSink), in DetectCallDepth()
|
D | localintermediate.h | 24 TIntermediate(TInfoSink& i) : infoSink(i) { } in TIntermediate() 52 TInfoSink& infoSink; variable
|
D | ShaderLang.cpp | 271 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()
|
D | ParseContext.h | 72 TInfoSink& infoSink() { return diagnostics.infoSink(); } in infoSink() function
|
D | SymbolTable.h | 395 void dump(TInfoSink &infoSink) const;
|
D | intermOut.cpp | 436 TOutputTraverser it(infoSink.info); in outputTree()
|
D | OutputHLSL.cpp | 190 mContext.infoSink().obj << mHeader.c_str(); in output() 191 mContext.infoSink().obj << mBody.c_str(); in output()
|