Merge of Backout 69df59e99741 -- Bug 564591: Speed up BindToTree/UnbindFromTree by only doing XBL related work when needed.

This commit is contained in:
Justin Wood 2010-06-03 21:45:19 -04:00
Родитель 0490ef9560 1f878566d8
Коммит 833342cb37
4 изменённых файлов: 29 добавлений и 19 удалений

Просмотреть файл

@ -565,7 +565,7 @@ nsGenericDOMDataNode::UnbindFromTree(PRBool aDeep, PRBool aNullParent)
// Notify XBL- & nsIAnonymousContentCreator-generated // Notify XBL- & nsIAnonymousContentCreator-generated
// anonymous content that the document is changing. // anonymous content that the document is changing.
// This is needed to update the insertion point. // This is needed to update the insertion point.
document->BindingManager()->RemovedFromDocument(this, document); document->BindingManager()->ChangeDocumentFor(this, document, nsnull);
} }
mParentPtrBits = aNullParent ? 0 : mParentPtrBits & ~PARENT_BIT_INDOCUMENT; mParentPtrBits = aNullParent ? 0 : mParentPtrBits & ~PARENT_BIT_INDOCUMENT;

Просмотреть файл

@ -2969,7 +2969,7 @@ nsGenericElement::UnbindFromTree(PRBool aDeep, PRBool aNullParent)
if (document) { if (document) {
// Notify XBL- & nsIAnonymousContentCreator-generated // Notify XBL- & nsIAnonymousContentCreator-generated
// anonymous content that the document is changing. // anonymous content that the document is changing.
document->BindingManager()->RemovedFromDocument(this, document); document->BindingManager()->ChangeDocumentFor(this, document, nsnull);
document->ClearBoxObjectFor(this); document->ClearBoxObjectFor(this);
} }
@ -3766,7 +3766,7 @@ nsGenericElement::DestroyContent()
{ {
nsIDocument *document = GetOwnerDoc(); nsIDocument *document = GetOwnerDoc();
if (document) { if (document) {
document->BindingManager()->RemovedFromDocument(this, document); document->BindingManager()->ChangeDocumentFor(this, document, nsnull);
document->ClearBoxObjectFor(this); document->ClearBoxObjectFor(this);
} }
@ -4327,8 +4327,9 @@ NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(nsGenericElement)
{ {
nsIDocument *doc; nsIDocument *doc;
if (!tmp->GetNodeParent() && (doc = tmp->GetOwnerDoc())) { if (!tmp->GetNodeParent() && (doc = tmp->GetOwnerDoc()) &&
doc->BindingManager()->RemovedFromDocument(tmp, doc); tmp->HasFlag(NODE_MAY_BE_IN_BINDING_MNGR)) {
doc->BindingManager()->ChangeDocumentFor(tmp, doc, nsnull);
} }
} }
NS_IMPL_CYCLE_COLLECTION_UNLINK_END NS_IMPL_CYCLE_COLLECTION_UNLINK_END

Просмотреть файл

@ -621,11 +621,17 @@ nsBindingManager::SetWrappedJS(nsIContent* aContent, nsIXPConnectWrappedJS* aWra
return SetOrRemoveObject(mWrapperTable, aContent, aWrappedJS); return SetOrRemoveObject(mWrapperTable, aContent, aWrappedJS);
} }
void nsresult
nsBindingManager::RemovedFromDocumentInternal(nsIContent* aContent, nsBindingManager::ChangeDocumentFor(nsIContent* aContent, nsIDocument* aOldDocument,
nsIDocument* aOldDocument) nsIDocument* aNewDocument)
{ {
// XXXbz this code is pretty broken, since moving from one document
// to another always passes through a null document!
NS_PRECONDITION(aOldDocument != nsnull, "no old document"); NS_PRECONDITION(aOldDocument != nsnull, "no old document");
NS_PRECONDITION(!aNewDocument,
"Changing to a non-null new document not supported yet");
if (! aOldDocument)
return NS_ERROR_NULL_POINTER;
// Hold a ref to the binding so it won't die when we remove it from our // Hold a ref to the binding so it won't die when we remove it from our
// table. // table.
@ -644,14 +650,18 @@ nsBindingManager::RemovedFromDocumentInternal(nsIContent* aContent,
} }
if (binding) { if (binding) {
binding->ChangeDocument(aOldDocument, nsnull); binding->ChangeDocument(aOldDocument, aNewDocument);
SetBinding(aContent, nsnull); SetBinding(aContent, nsnull);
if (aNewDocument)
aNewDocument->BindingManager()->SetBinding(aContent, binding);
} }
// Clear out insertion parents and content lists. // Clear out insertion parents and content lists.
SetInsertionParent(aContent, nsnull); SetInsertionParent(aContent, nsnull);
SetContentListFor(aContent, nsnull); SetContentListFor(aContent, nsnull);
SetAnonymousNodesFor(aContent, nsnull); SetAnonymousNodesFor(aContent, nsnull);
return NS_OK;
} }
nsIAtom* nsIAtom*

Просмотреть файл

@ -84,22 +84,21 @@ public:
/** /**
* Notify the binding manager that an element * Notify the binding manager that an element
* has been removed from its document, * has been moved from one document to another,
* so that it can update any bindings or * so that it can update any bindings or
* nsIAnonymousContentCreator-created anonymous * nsIAnonymousContentCreator-created anonymous
* content that may depend on the document. * content that may depend on the document.
* @param aContent the element that's being moved * @param aContent the element that's being moved
* @param aOldDocument the old document in which the * @param aOldDocument the old document in which the
* content resided. * content resided. May be null if the the content
* was not in any document.
* @param aNewDocument the document in which the
* content will reside. May be null if the content
* will not reside in any document, or if the
* content is being destroyed.
*/ */
void RemovedFromDocument(nsIContent* aContent, nsIDocument* aOldDocument) nsresult ChangeDocumentFor(nsIContent* aContent, nsIDocument* aOldDocument,
{ nsIDocument* aNewDocument);
if (aContent->HasFlag(NODE_MAY_BE_IN_BINDING_MNGR)) {
RemovedFromDocumentInternal(aContent, aOldDocument);
}
}
void RemovedFromDocumentInternal(nsIContent* aContent,
nsIDocument* aOldDocument);
nsIAtom* ResolveTag(nsIContent* aContent, PRInt32* aNameSpaceID); nsIAtom* ResolveTag(nsIContent* aContent, PRInt32* aNameSpaceID);