new               359 kern/arch/mips/vm/dumbvm.c 	struct addrspace *new;
new               361 kern/arch/mips/vm/dumbvm.c 	new = as_create();
new               362 kern/arch/mips/vm/dumbvm.c 	if (new==NULL) {
new               366 kern/arch/mips/vm/dumbvm.c 	new->as_vbase1 = old->as_vbase1;
new               367 kern/arch/mips/vm/dumbvm.c 	new->as_npages1 = old->as_npages1;
new               368 kern/arch/mips/vm/dumbvm.c 	new->as_vbase2 = old->as_vbase2;
new               369 kern/arch/mips/vm/dumbvm.c 	new->as_npages2 = old->as_npages2;
new               372 kern/arch/mips/vm/dumbvm.c 	if (as_prepare_load(new)) {
new               373 kern/arch/mips/vm/dumbvm.c 		as_destroy(new);
new               377 kern/arch/mips/vm/dumbvm.c 	KASSERT(new->as_pbase1 != 0);
new               378 kern/arch/mips/vm/dumbvm.c 	KASSERT(new->as_pbase2 != 0);
new               379 kern/arch/mips/vm/dumbvm.c 	KASSERT(new->as_stackpbase != 0);
new               381 kern/arch/mips/vm/dumbvm.c 	memmove((void *)PADDR_TO_KVADDR(new->as_pbase1),
new               385 kern/arch/mips/vm/dumbvm.c 	memmove((void *)PADDR_TO_KVADDR(new->as_pbase2),
new               389 kern/arch/mips/vm/dumbvm.c 	memmove((void *)PADDR_TO_KVADDR(new->as_stackpbase),
new               393 kern/arch/mips/vm/dumbvm.c 	*ret = new;