diff options
Diffstat (limited to 'indra/lscript')
| -rwxr-xr-x | indra/lscript/lscript_compile/lscript_bytecode.cpp | 2 | ||||
| -rwxr-xr-x | indra/lscript/lscript_execute/llscriptresourceconsumer.cpp | 2 | ||||
| -rwxr-xr-x | indra/lscript/lscript_execute/lscript_execute.cpp | 22 | ||||
| -rwxr-xr-x | indra/lscript/lscript_execute/lscript_readlso.cpp | 4 | ||||
| -rwxr-xr-x | indra/lscript/lscript_library.h | 16 | ||||
| -rwxr-xr-x | indra/lscript/lscript_library/lscript_alloc.cpp | 2 | ||||
| -rwxr-xr-x | indra/lscript/lscript_library/lscript_library.cpp | 2 | 
7 files changed, 25 insertions, 25 deletions
| diff --git a/indra/lscript/lscript_compile/lscript_bytecode.cpp b/indra/lscript/lscript_compile/lscript_bytecode.cpp index b6c3dd3a86..667e5dafc1 100755 --- a/indra/lscript/lscript_compile/lscript_bytecode.cpp +++ b/indra/lscript/lscript_compile/lscript_bytecode.cpp @@ -305,7 +305,7 @@ void LLScriptScriptCodeChunk::build(LLFILE *efp, LLFILE *bcfp)  		if (fwrite(mCompleteCode, 1, mTotalSize, bcfp) != (size_t)mTotalSize)  		{ -			llwarns << "Short write" << llendl; +			LL_WARNS() << "Short write" << LL_ENDL;  		}  	}  	else diff --git a/indra/lscript/lscript_execute/llscriptresourceconsumer.cpp b/indra/lscript/lscript_execute/llscriptresourceconsumer.cpp index 55d47b6de2..0ce5eb7dab 100755 --- a/indra/lscript/lscript_execute/llscriptresourceconsumer.cpp +++ b/indra/lscript/lscript_execute/llscriptresourceconsumer.cpp @@ -56,7 +56,7 @@ bool LLScriptResourceConsumer::switchScriptResourcePools(LLScriptResourcePool& n  {  	if (&new_pool == &LLScriptResourcePool::null)  	{ -		llwarns << "New pool is null" << llendl; +		LL_WARNS() << "New pool is null" << LL_ENDL;  	}  	if (isInPool(new_pool)) diff --git a/indra/lscript/lscript_execute/lscript_execute.cpp b/indra/lscript/lscript_execute/lscript_execute.cpp index 70cdecbb18..5eb7ffc5a9 100755 --- a/indra/lscript/lscript_execute/lscript_execute.cpp +++ b/indra/lscript/lscript_execute/lscript_execute.cpp @@ -76,7 +76,7 @@ LLScriptExecuteLSL2::LLScriptExecuteLSL2(LLFILE *fp)  	S32 pos = 0;  	if (fread(&sizearray, 1, 4, fp) != 4)  	{ -		llwarns << "Short read" << llendl; +		LL_WARNS() << "Short read" << LL_ENDL;  		filesize = 0;  	} else {  		filesize = bytestream2integer(sizearray, pos); @@ -85,7 +85,7 @@ LLScriptExecuteLSL2::LLScriptExecuteLSL2(LLFILE *fp)  	fseek(fp, 0, SEEK_SET);  	if (fread(mBuffer, 1, filesize, fp) != filesize)  	{ -		llwarns << "Short read" << llendl; +		LL_WARNS() << "Short read" << LL_ENDL;  	}  	fclose(fp); @@ -289,7 +289,7 @@ void LLScriptExecuteLSL2::init()  void LLScriptExecuteLSL2::recordBoundaryError( const LLUUID &id )  {  	set_fault(mBuffer, LSRF_BOUND_CHECK_ERROR); -	llwarns << "Script boundary error for ID " << id << llendl; +	LL_WARNS() << "Script boundary error for ID " << id << LL_ENDL;  } @@ -517,7 +517,7 @@ void LLScriptExecuteLSL2::callNextQueuedEventHandler(U64 event_register, const L  		}  		else  		{ -			llwarns << "Somehow got an event that we're not registered for!" << llendl; +			LL_WARNS() << "Somehow got an event that we're not registered for!" << LL_ENDL;  		}  		delete eventdata;  	} @@ -625,7 +625,7 @@ S32 LLScriptExecuteLSL2::writeState(U8 **dest, U32 header_size, U32 footer_size)  	// registers  	integer2bytestream(*dest, dest_offset, registers_size); -	// llinfos << "Writing CE: " << getCurrentEvents() << llendl; +	// LL_INFOS() << "Writing CE: " << getCurrentEvents() << LL_ENDL;  	bytestream2bytestream(*dest, dest_offset, mBuffer, src_offset, registers_size);  	// heap @@ -677,11 +677,11 @@ S32 LLScriptExecuteLSL2::readState(U8 *src)  	// copy data into register area  	bytestream2bytestream(mBuffer, dest_offset, src, src_offset, size); -//	llinfos << "Read CE: " << getCurrentEvents() << llendl; +//	LL_INFOS() << "Read CE: " << getCurrentEvents() << LL_ENDL;  	if (get_register(mBuffer, LREG_TM) != TOP_OF_MEMORY)  	{ -		llwarns << "Invalid state. Top of memory register does not match" -				<< " constant." << llendl; +		LL_WARNS() << "Invalid state. Top of memory register does not match" +				<< " constant." << LL_ENDL;  		reset_hp_to_safe_spot(mBuffer);  		return -1;  	} @@ -4024,7 +4024,7 @@ void lscript_run(const std::string& filename, BOOL b_debug)  	if (filename.empty())  	{ -		llerrs << "filename is NULL" << llendl; +		LL_ERRS() << "filename is NULL" << LL_ENDL;  		// Just reporting error is likely not enough. Need  		// to check how to abort or error out gracefully  		// from this function. XXXTBD @@ -4049,8 +4049,8 @@ void lscript_run(const std::string& filename, BOOL b_debug)  		F32 time = timer.getElapsedTimeF32();  		F32 ips = execute->mInstructionCount / time; -		llinfos << execute->mInstructionCount << " instructions in " << time << " seconds" << llendl; -		llinfos << ips/1000 << "K instructions per second" << llendl; +		LL_INFOS() << execute->mInstructionCount << " instructions in " << time << " seconds" << LL_ENDL; +		LL_INFOS() << ips/1000 << "K instructions per second" << LL_ENDL;  		printf("ip: 0x%X\n", get_register(execute->mBuffer, LREG_IP));  		printf("sp: 0x%X\n", get_register(execute->mBuffer, LREG_SP));  		printf("bp: 0x%X\n", get_register(execute->mBuffer, LREG_BP)); diff --git a/indra/lscript/lscript_execute/lscript_readlso.cpp b/indra/lscript/lscript_execute/lscript_readlso.cpp index 8b41cb5a72..4c69abf49d 100755 --- a/indra/lscript/lscript_execute/lscript_readlso.cpp +++ b/indra/lscript/lscript_execute/lscript_readlso.cpp @@ -37,7 +37,7 @@ LLScriptLSOParse::LLScriptLSOParse(LLFILE *fp)  	S32 pos = 0;  	if (fread(&sizearray, 1, 4, fp) != 4)  	{ -		llwarns << "Short read" << llendl; +		LL_WARNS() << "Short read" << LL_ENDL;  		filesize = 0;  	} else {  		filesize = bytestream2integer(sizearray, pos); @@ -46,7 +46,7 @@ LLScriptLSOParse::LLScriptLSOParse(LLFILE *fp)  	fseek(fp, 0, SEEK_SET);  	if (fread(mRawData, 1, filesize, fp) != filesize)  	{ -		llwarns << "Short read" << llendl; +		LL_WARNS() << "Short read" << LL_ENDL;  	}  	initOpCodePrinting(); diff --git a/indra/lscript/lscript_library.h b/indra/lscript/lscript_library.h index 89a473a627..f3dbb09196 100755 --- a/indra/lscript/lscript_library.h +++ b/indra/lscript/lscript_library.h @@ -240,7 +240,7 @@ public:  			mKey = new char[strlen(data.mKey) + 1];	/* Flawfinder: ignore */  			if (mKey == NULL)  			{ -				llerrs << "Memory Allocation Failed" << llendl; +				LL_ERRS() << "Memory Allocation Failed" << LL_ENDL;  				return;  			}  			strcpy(mKey, data.mKey);	/* Flawfinder: ignore */ @@ -250,7 +250,7 @@ public:  			mString = new char[strlen(data.mString) + 1];	/* Flawfinder: ignore */  			if (mString == NULL)  			{ -				llerrs << "Memory Allocation Failed" << llendl; +				LL_ERRS() << "Memory Allocation Failed" << LL_ENDL;  				return;  			}  			strcpy(mString, data.mString);	/* Flawfinder: ignore */ @@ -275,7 +275,7 @@ public:  				mKey = new char[strlen(temp) + 1];	/* Flawfinder: ignore */  				if (mKey == NULL)  				{ -					llerrs << "Memory Allocation Failed" << llendl; +					LL_ERRS() << "Memory Allocation Failed" << LL_ENDL;  					return;  				}  				strcpy(mKey, temp);	/* Flawfinder: ignore */ @@ -287,7 +287,7 @@ public:  				mString = new char[strlen(temp) + 1];	/* Flawfinder: ignore */  				if (mString == NULL)  				{ -					llerrs << "Memory Allocation Failed" << llendl; +					LL_ERRS() << "Memory Allocation Failed" << LL_ENDL;  					return;  				}  				strcpy(mString, temp);	/* Flawfinder: ignore */ @@ -324,7 +324,7 @@ public:  				mKey = new char[strlen(temp) + 1];	/* Flawfinder: ignore */  				if (mKey == NULL)  				{ -					llerrs << "Memory Allocation Failed" << llendl; +					LL_ERRS() << "Memory Allocation Failed" << LL_ENDL;  					return;  				}  				strcpy(mKey, temp);	/* Flawfinder: ignore */ @@ -336,7 +336,7 @@ public:  				mString = new char[strlen(temp) + 1];	/* Flawfinder: ignore */  				if (mString == NULL)  				{ -					llerrs << "Memory Allocation Failed" << llendl; +					LL_ERRS() << "Memory Allocation Failed" << LL_ENDL;  					return;  				}  				strcpy(mString, temp);	/* Flawfinder: ignore */ @@ -364,7 +364,7 @@ public:  		mString = new char[strlen(src) + 1];	/* Flawfinder: ignore */  		if (mString == NULL)  		{ -			llerrs << "Memory Allocation Failed" << llendl; +			LL_ERRS() << "Memory Allocation Failed" << LL_ENDL;  			return;  		}  		strcpy(mString, src);	/* Flawfinder: ignore */ @@ -398,7 +398,7 @@ public:  			mString = new char[strlen(string) + 1];	/* Flawfinder: ignore */  			if (mString == NULL)  			{ -				llerrs << "Memory Allocation Failed" << llendl; +				LL_ERRS() << "Memory Allocation Failed" << LL_ENDL;  				return;  			}  			strcpy(mString, string);	/* Flawfinder: ignore */ diff --git a/indra/lscript/lscript_library/lscript_alloc.cpp b/indra/lscript/lscript_library/lscript_alloc.cpp index 92b1ab70fb..62ba029e8a 100755 --- a/indra/lscript/lscript_library/lscript_alloc.cpp +++ b/indra/lscript/lscript_library/lscript_alloc.cpp @@ -435,7 +435,7 @@ S32 lsa_create_data_block(U8 **buffer, LLScriptLibData *data, S32 base_offset)  				U8 *tbuff = new U8[size + listsize];  				if (tbuff == NULL)  				{ -					llerrs << "Memory Allocation Failed" << llendl; +					LL_ERRS() << "Memory Allocation Failed" << LL_ENDL;  				}  				memcpy(tbuff, *buffer, size);	/*Flawfinder: ignore*/  				memcpy(tbuff + size, listbuf, listsize);		/*Flawfinder: ignore*/ diff --git a/indra/lscript/lscript_library/lscript_library.cpp b/indra/lscript/lscript_library/lscript_library.cpp index 7ffe53a307..84ce94eead 100755 --- a/indra/lscript/lscript_library/lscript_library.cpp +++ b/indra/lscript/lscript_library/lscript_library.cpp @@ -498,7 +498,7 @@ void LLScriptLibrary::assignExec(const char *name, void (*exec_func)(LLScriptLib  		}  	} -	llerrs << "Unknown LSL function in assignExec: " << name << llendl; +	LL_ERRS() << "Unknown LSL function in assignExec: " << name << LL_ENDL;  }  void LLScriptLibData::print(std::ostream &s, BOOL b_prepend_comma) | 
