search for: assym

Displaying 8 results from an estimated 8 matches for "assym".

Did you mean: asmsym
2003 Aug 22
2
kernel: locore.s doesn't assemble (fillkpt, $PAGE_SHIFT, $PTESHIFT)
...uilds (as part of a buildworld) don't work anymore. i have set up an area different from the usual /usr/obj/, so i can experiment. if somebody has tips for me, i could do a lot without destroying what's left of my last clean install. locore.s depends on a number of files, one of which is assym.s. assym.s should "#define PAGE_SHIFT ...", but the file is empty (but it exists!). $PTESHIFT comes from machine/pmap.h, but this file exists and defines this constant. here's the make-log, with the offending lines right beneith the error messages. the formatting comes from the way...
2003 Aug 10
2
Heads up: New if_xl committed
As promised, the updated if_xl with full busdma support / other improvements has been MFC'd to 4.8-stable. While I have put this driver through extensive testing, it is possible that there may be bugs which are either present in the -current version or that I added in the MFC process. So, if you cvsup to -stable anytime in the future and notice problems with if_xl, please tell me ASAP!
2002 Mar 23
2
RSYNC 2.5.4 and FreeBSD RELENG_4 Problems [HELP]
I use FreeBSD RELENG_4 with rsync version 2.5.4 protocol version 26 Copyright (C) 1996-2002 by Andrew Tridgell and others <http://rsync.samba.org/> Capabilities: 64-bit files, socketpairs, hard links, symlinks, batchfiles, IPv6, 32-bit system inums, 64-bit internal inums and when I try to transfer file I get rsync: connection unexpectedly closed (5994 bytes read so
2006 Mar 20
1
type in daisy
...ge: binary variable(s) 13, 16, 17, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39 treated as interval scaled in: daisy(basetraits, stand = FALSE, type = list(numeric = c(1, 7), I don't understand why R doesn't accept that I declare these binary variables in symm or assym (depending on the variable). Thanking you in anticipation, Jeanne Vallet PS : To help you to understand my question, my script is : aa<-file.choose() basetraits<-read.csv2(aa, header = TRUE,row.names=1) #variables declaration attach(basetraits) pdias=as.numeric(pdias) longindex=as....
2003 Aug 22
3
PAE removal patch for testing
...c_4mpage(addr) != addr1) { - ptep1 = vtopte(addr1); + ptep1 = pmap_pte(kernel_pmap, addr1); oldmap1 = *ptep1; *ptep1 |= PG_RW; } Only in /usr/src/sys/i386/i386: db_interface.c.orig Only in /usr/src/sys/i386/i386: db_interface.c.rej diff -u -r /usr/src/sys.old/i386/i386/genassym.c /usr/src/sys/i386/i386/genassym.c --- /usr/src/sys.old/i386/i386/genassym.c Thu Aug 21 18:35:33 2003 +++ /usr/src/sys/i386/i386/genassym.c Fri Aug 22 02:15:02 2003 @@ -96,10 +96,6 @@ ASSYM(NPDEPG, NPDEPG); ASSYM(PDESIZE, PDESIZE); ASSYM(PTESIZE, PTESIZE); -ASSYM(PDESHIFT, PDESHIFT); -ASSYM(PTE...
2014 Sep 25
0
[PATCH] nv50/ir: avoid deleting pseudo instructions too early
...lude <stack> #include <limits> +#include <tr1/unordered_set> namespace nv50_ir { @@ -1547,6 +1548,11 @@ SpillCodeInserter::run(const std::list<ValuePair>& lst) LValue *lval = it->first->asLValue(); Symbol *mem = it->second ? it->second->asSym() : NULL; + // Keep track of which instructions to delete later. Deleting them + // inside the loop is unsafe since a single instruction may have + // multiple destinations that all need to be spilled (like OP_SPLIT). + std::tr1::unordered_set<Instruction *> to_del; +...
2014 Sep 01
0
[PATCH] nv50/ir: use unordered_set instead of list to keep track of var defs
...remove(*d); + lval->join->defs.erase(*d); lval->join = lval; } } @@ -1547,8 +1547,7 @@ SpillCodeInserter::run(const std::list<ValuePair>& lst) LValue *lval = it->first->asLValue(); Symbol *mem = it->second ? it->second->asSym() : NULL; - for (Value::DefIterator d = lval->defs.begin(); d != lval->defs.end(); - ++d) { + for (Value::DefIterator d = lval->defs.begin(); d != lval->defs.end();) { Value *slot = mem ? static_cast<Value *>(mem) : new_LValue(func, FIL...
2013 Oct 28
5
FreeBSD PVH guest support
...8 100644 --- a/sys/amd64/amd64/locore.S +++ b/sys/amd64/amd64/locore.S @@ -31,6 +31,12 @@ #include <machine/pmap.h> #include <machine/specialreg.h> +#ifdef XENHVM +#include <xen/xen-os.h> +#define __ASSEMBLY__ +#include <xen/interface/elfnote.h> +#endif + #include "assym.s" /* @@ -86,3 +92,50 @@ NON_GPROF_ENTRY(btext) ALIGN_DATA /* just to be sure */ .space 0x1000 /* space for bootstack - temporary stack */ bootstack: + +#ifdef XENHVM +/* Xen */ +.section __xen_guest + ELFNOTE(Xen, XEN_ELFNOTE_GUEST_OS, .asciz, "FreeBSD") + ELFNOTE(...