diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/llmessage/llpumpio.cpp | 6 | ||||
| -rw-r--r-- | indra/newview/llappviewer.cpp | 7 | ||||
| -rw-r--r-- | indra/newview/llmeshrepository.cpp | 8 | ||||
| -rw-r--r-- | indra/newview/llviewerobjectlist.cpp | 14 | ||||
| -rw-r--r-- | indra/newview/llworld.cpp | 6 | 
5 files changed, 21 insertions, 20 deletions
diff --git a/indra/llmessage/llpumpio.cpp b/indra/llmessage/llpumpio.cpp index 35365665f6..44720f0015 100644 --- a/indra/llmessage/llpumpio.cpp +++ b/indra/llmessage/llpumpio.cpp @@ -428,7 +428,7 @@ LLPumpIO::current_chain_t LLPumpIO::removeRunningChain(LLPumpIO::current_chain_t  //timeout is in microseconds  void LLPumpIO::pump(const S32& poll_timeout)  { -    LL_PROFILE_ZONE_SCOPED; +    LL_PROFILE_ZONE_SCOPED_CATEGORY_NETWORK;  	//LL_INFOS() << "LLPumpIO::pump()" << LL_ENDL;  	// Run any pending runners. @@ -506,7 +506,7 @@ void LLPumpIO::pump(const S32& poll_timeout)  		S32 count = 0;  		S32 client_id = 0;          { -            LL_PROFILE_ZONE_SCOPED; +            LL_PROFILE_ZONE_SCOPED_CATEGORY_NETWORK;              apr_pollset_poll(mPollset, poll_timeout, &count, &poll_fd);          }  		PUMP_DEBUG; @@ -736,7 +736,7 @@ bool LLPumpIO::respond(  void LLPumpIO::callback()  { -    LL_PROFILE_ZONE_SCOPED; +    LL_PROFILE_ZONE_SCOPED_CATEGORY_NETWORK;  	//LL_INFOS() << "LLPumpIO::callback()" << LL_ENDL;  	if(true)  	{ diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index dc973e9154..a2391ef889 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -4785,7 +4785,7 @@ void LLAppViewer::idle()  	if (!gDisconnected)  	{ -		LL_RECORD_BLOCK_TIME(FTM_NETWORK); +		LL_PROFILE_ZONE_NAMED_CATEGORY_NETWORK("network"); //LL_RECORD_BLOCK_TIME(FTM_NETWORK);  		// Update spaceserver timeinfo  	    LLWorld::getInstance()->setSpaceTimeUSec(LLWorld::getInstance()->getSpaceTimeUSec() + LLUnits::Seconds::fromValue(dt_raw)); @@ -4817,7 +4817,7 @@ void LLAppViewer::idle()  							|| (agent_force_update_time > (1.0f / (F32) AGENT_FORCE_UPDATES_PER_SECOND));  		if (force_update || (agent_update_time > (1.0f / (F32) AGENT_UPDATES_PER_SECOND)))  		{ -			LL_RECORD_BLOCK_TIME(FTM_AGENT_UPDATE); +			LL_PROFILE_ZONE_SCOPED_CATEGORY_NETWORK; //LL_RECORD_BLOCK_TIME(FTM_AGENT_UPDATE);  			// Send avatar and camera info  			mLastAgentControlFlags = gAgent.getControlFlags();  			mLastAgentForceUpdate = force_update ? 0 : agent_force_update_time; @@ -5337,6 +5337,7 @@ static LLTrace::BlockTimerStatHandle FTM_CHECK_REGION_CIRCUIT("Check Region Circ  void LLAppViewer::idleNetwork()  { +    LL_PROFILE_ZONE_SCOPED_CATEGORY_NETWORK;  	pingMainloopTimeout("idleNetwork");  	gObjectList.mNumNewObjects = 0; @@ -5344,7 +5345,7 @@ void LLAppViewer::idleNetwork()  	if (!gSavedSettings.getBOOL("SpeedTest"))  	{ -		LL_RECORD_BLOCK_TIME(FTM_IDLE_NETWORK); // decode +		LL_PROFILE_ZONE_NAMED_CATEGORY_NETWORK("idle network"); //LL_RECORD_BLOCK_TIME(FTM_IDLE_NETWORK); // decode  		LLTimer check_message_timer;  		//  Read all available packets from network diff --git a/indra/newview/llmeshrepository.cpp b/indra/newview/llmeshrepository.cpp index 8cec08394d..d28e929b48 100644 --- a/indra/newview/llmeshrepository.cpp +++ b/indra/newview/llmeshrepository.cpp @@ -3639,7 +3639,7 @@ S32 LLMeshRepository::update()  S32 LLMeshRepository::loadMesh(LLVOVolume* vobj, const LLVolumeParams& mesh_params, S32 detail, S32 last_lod)  { -	LL_RECORD_BLOCK_TIME(FTM_MESH_FETCH); +    LL_PROFILE_ZONE_SCOPED_CATEGORY_NETWORK; //LL_LL_RECORD_BLOCK_TIME(FTM_MESH_FETCH);  	// Manage time-to-load metrics for mesh download operations.  	metricsProgress(1); @@ -3722,7 +3722,7 @@ S32 LLMeshRepository::loadMesh(LLVOVolume* vobj, const LLVolumeParams& mesh_para  void LLMeshRepository::notifyLoadedMeshes()  { //called from main thread -	LL_RECORD_BLOCK_TIME(FTM_MESH_FETCH); +    LL_PROFILE_ZONE_SCOPED_CATEGORY_NETWORK; //LL_RECORD_BLOCK_TIME(FTM_MESH_FETCH);      // GetMesh2 operation with keepalives, etc.  With pipelining,      // we'll increase this.  See llappcorehttp and llcorehttp for @@ -4097,7 +4097,7 @@ const LLMeshSkinInfo* LLMeshRepository::getSkinInfo(const LLUUID& mesh_id, const  void LLMeshRepository::fetchPhysicsShape(const LLUUID& mesh_id)  { -	LL_RECORD_BLOCK_TIME(FTM_MESH_FETCH); +    LL_PROFILE_ZONE_SCOPED_CATEGORY_NETWORK; //LL_RECORD_BLOCK_TIME(FTM_MESH_FETCH);  	if (mesh_id.notNull())  	{ @@ -4126,7 +4126,7 @@ void LLMeshRepository::fetchPhysicsShape(const LLUUID& mesh_id)  LLModel::Decomposition* LLMeshRepository::getDecomposition(const LLUUID& mesh_id)  { -	LL_RECORD_BLOCK_TIME(FTM_MESH_FETCH); +    LL_PROFILE_ZONE_SCOPED_CATEGORY_NETWORK; //LL_RECORD_BLOCK_TIME(FTM_MESH_FETCH);  	LLModel::Decomposition* ret = NULL; diff --git a/indra/newview/llviewerobjectlist.cpp b/indra/newview/llviewerobjectlist.cpp index 630861f6be..0e585f13fc 100644 --- a/indra/newview/llviewerobjectlist.cpp +++ b/indra/newview/llviewerobjectlist.cpp @@ -169,7 +169,7 @@ U64 LLViewerObjectList::getIndex(const U32 local_id,  BOOL LLViewerObjectList::removeFromLocalIDTable(const LLViewerObject* objectp)  { -	LL_PROFILE_ZONE_SCOPED +	LL_PROFILE_ZONE_SCOPED_CATEGORY_NETWORK;  	if(objectp && objectp->getRegion())  	{ @@ -306,7 +306,7 @@ static LLTrace::BlockTimerStatHandle FTM_PROCESS_OBJECTS("Process Objects");  LLViewerObject* LLViewerObjectList::processObjectUpdateFromCache(LLVOCacheEntry* entry, LLViewerRegion* regionp)  { -	LL_PROFILE_ZONE_SCOPED +	LL_PROFILE_ZONE_SCOPED_CATEGORY_NETWORK;  	LLDataPacker *cached_dpp = entry->getDP(); @@ -851,7 +851,7 @@ void LLViewerObjectList::updateApparentAngles(LLAgent &agent)  void LLViewerObjectList::update(LLAgent &agent)  { -	LL_PROFILE_ZONE_SCOPED +	LL_PROFILE_ZONE_SCOPED_CATEGORY_NETWORK;  	// Update globals  	LLViewerObject::setVelocityInterpolate( gSavedSettings.getBOOL("VelocityInterpolate") ); @@ -1296,7 +1296,7 @@ void LLViewerObjectList::clearDebugText()  void LLViewerObjectList::cleanupReferences(LLViewerObject *objectp)  { -	LL_PROFILE_ZONE_SCOPED +	LL_PROFILE_ZONE_SCOPED_CATEGORY_NETWORK;  	bool new_dead_object = true;  	if (mDeadObjects.find(objectp->mID) != mDeadObjects.end()) @@ -1641,7 +1641,7 @@ void LLViewerObjectList::onPhysicsFlagsFetchFailure(const LLUUID& object_id)  void LLViewerObjectList::shiftObjects(const LLVector3 &offset)  { -    LL_PROFILE_ZONE_SCOPED; +    LL_PROFILE_ZONE_SCOPED_CATEGORY_NETWORK;  	// This is called when we shift our origin when we cross region boundaries...  	// We need to update many object caches, I'll document this more as I dig through the code  	// cleaning things out... @@ -1838,7 +1838,7 @@ void LLViewerObjectList::renderObjectBounds(const LLVector3 ¢er)  void LLViewerObjectList::generatePickList(LLCamera &camera)  { -	LL_PROFILE_ZONE_SCOPED +	LL_PROFILE_ZONE_SCOPED_CATEGORY_UI;  		LLViewerObject *objectp;  		S32 i; @@ -2165,7 +2165,7 @@ void LLViewerObjectList::orphanize(LLViewerObject *childp, U32 parent_id, U32 ip  void LLViewerObjectList::findOrphans(LLViewerObject* objectp, U32 ip, U32 port)  { -	LL_PROFILE_ZONE_SCOPED +	LL_PROFILE_ZONE_SCOPED_CATEGORY_NETWORK;  	if (objectp->isDead())  	{ diff --git a/indra/newview/llworld.cpp b/indra/newview/llworld.cpp index d7f16713d2..343aea5721 100644 --- a/indra/newview/llworld.cpp +++ b/indra/newview/llworld.cpp @@ -1152,7 +1152,7 @@ void LLWorld::disconnectRegions()  void process_enable_simulator(LLMessageSystem *msg, void **user_data)  { -    LL_PROFILE_ZONE_SCOPED; +    LL_PROFILE_ZONE_SCOPED_CATEGORY_NETWORK;  	// enable the appropriate circuit for this simulator and   	// add its values into the gSimulator structure  	U64		handle; @@ -1227,7 +1227,7 @@ public:  // Called in response to "DisableSimulator" message.  void process_disable_simulator(LLMessageSystem *mesgsys, void **user_data)  { -    LL_PROFILE_ZONE_SCOPED; +    LL_PROFILE_ZONE_SCOPED_CATEGORY_NETWORK;      LLHost host = mesgsys->getSender(); @@ -1289,7 +1289,7 @@ void send_agent_pause()  void send_agent_resume()  { -	LL_PROFILE_ZONE_SCOPED +	LL_PROFILE_ZONE_SCOPED_CATEGORY_NETWORK  	// Note: used to check for LLWorld initialization before it became a singleton.  	// Rather than just remove this check I'm changing it to assure that the message   	// system has been initialized. -MG  | 
