Displaying 20 results from an estimated 1783 matches for "ax".
Did you mean:
eax
2008 Nov 22
5
[RFC][PATCH] Gfxboot COMBOOT module
So here it is. Ugly and far from acceptable shape but nonetheless it seems to
work. Parts are borrowed from syslinux core and of course the gfxboot patch for
syslinux 3.63.
Syntax: gfxboot.com <bootlogo file>
- Sebastian
--- /dev/null 2007-09-21 23:50:58.000000000 +0200
+++ syslinux-3.73-pre6/modules/gfxboot.asm 2008-11-22 19:01:10.000000000 +0100
@@ -0,0 +1,883 @@
+ absolute 0
+pspInt20: resw 1
+pspNextP: resw 1
+ resb 124
+pspCmdLen: resb 1
+pspCmdArg: resb 127
+...
2009 Apr 05
3
[PATCH] Gfxboot COMBOOT module
...er version; incorporated herein by reference.
+;
+; ****************************************************************************
+
+ absolute 0
+pspInt20: resw 1
+pspNextP: resw 1
+ resb 124
+pspCmdLen: resb 1
+pspCmdArg: resb 127
+
+;%define DEBUG
+
+ section .text
+ org 100h
+
+_start:
+ mov ax,2
+ mov bx, msg_progname
+ int 22h
+
+ mov ax,2
+ mov bx, msg_crlf
+ int 22h
+
+ push es
+ mov ax,0ah
+ mov cl,9
+ int 22h
+ pop es
+ cmp al,32h
+ jnz not_pxelinux
+
+ mov dl,0 ; fake drive number
+ mov cl,11 ; fake sector size 2048 bytes
+
+not_pxelinux:
+ mov [derivative_id],al
+...
2009 Nov 27
1
[PATCH] doc: fix typos in comboot.txt
Fix some typos in the documentation.
Signed-off-by: Sebastian Herbszt <herbszt at gmx.de>
diff --git a/doc/comboot.txt b/doc/comboot.txt
index f5fefda..b3d8e64 100644
--- a/doc/comboot.txt
+++ b/doc/comboot.txt
@@ -553,7 +553,8 @@ AX=000Fh [3.00] Get IPAPPEND strings [PXELINUX]
AX=0010h [3.00] Resolve hostname [PXELINUX]
- Input: ES:BX pointer to null-terminated hostname
+ Input: AX 0010h
+ ES:BX pointer to null-terminated hostname
Output: EAX IP address of hostname (zero if not found)
Queries the DNS server(s) fo...
2003 Jan 16
1
problem with as.data.frame.table
Dear all,
I think that what I want is an as.data.frame.table-object, but see error
message below.
I have a data frame with one tree per row, diaclass tells if it is a small,
mid or large tree
> cpy.tradart[1:5, ]
ObjektID diaclass
1 AX.Grb.1 bigdia
2 AX.Grb.1 middia
3 AX.Grb.1 middia
4 AX.Grb.1 smalldia
5 AX.Grb.1 middia
>
I want a data frame telling no of trees per diameter class, per ObjektID
There are 107 ObjektID
> nlevels(cpy.tradart$ObjektID)
[1] 107
and 3 diaclass levels
> levels(cpy.tradart$diaclas...
2016 May 25
1
Liveness of AL, AH and AX in x86 backend
On 5/25/2016 12:35 PM, Quentin Colombet wrote:
>
> Doing that would say that we override the other lanes of EAX, which is
> not what we want. In what cases, do we need to add those implicit arguments?
If you had
AL<def> = ...
AH<def> = ...
... = AX
you'd need implicit uses/defs to define AX. This sort of thing happens
on Hexagon very often: general purpose registers can be pai...
2014 Feb 13
2
SYSLINUX API call INT 22h/AX=0xC
Hi,
One of our customers uses INT 22h/AX=C to shut down UNDI interface. This interface is documented in http://www.syslinux.org/doc/comboot.txt. The excerpt is shown below:
AX=000Ch [2.00] Perform final cleanup
Input: AX 000Ch
DX derivative-specific flags (0000h = clean up all)
Output: None
App...
2010 Mar 09
3
Enhanced MDISKCHK.COM and MEMDISK patches
Good day to all,
Gert Hulselmans requested a feature for MDISKCHK.COM that would function
roughly like GETARGS.COM[1] by Murali Krishnan Ganapathy: DOS SET
command output for MEMDISK kernel arguments passed by previous
boot-loaders. He also needed to support the case for
MEMDISK-in-a-MEMDISK type situations, where all MEMDISK kernel arguments
could be gathered together and output as a list
2009 Aug 03
2
[LLVMdev] inline asm question
Eli Friedman wrote:
> 2009/8/2 Richard Pennington <rich at pennware.com>:
>> The following fails on x86_64 because of the output constraint '0'.
>> My question is, is this legal. LLVM complains about the size difference
>> (32 vs 64), but it is the same register (ax).
>> Works on x86.
>>
>> %42 = call i64 asm sideeffect "syscall\0A\09",
>> "={ax},0,{di},~{dirflag},~{fpsr},~{flags}"(i64 231, i64 %41) nounwind
>> ; <i64> [#uses=2]
>>
>> -Rich
>
> Can you give a complete testcase?...
2009 Aug 25
4
Error when run MS Foxpro on wine
I install Wine on Ubuntu 9.04, i have errors when run MS foxpro :
namhv at ubuntu:/media/disk/ktgd$ wine foxprox.exe
fixme:gdi:get_default_fonts unhandled charset 0x000000a3 - use ANSI_CHARSET for default stock objects
err:int:DOSVM_Int15Handler int15: unknown/not implemented parameters:
int15: AX 2403, BX e6f5, CX 0c6c, DX 00fc, SI 0cfe, DI 571e, DS 199b, ES f000
err:int:DOSVM_Int2fHandler int2f: unknown/not implemented parameters:
int2f: AX ed00, BX 0c03, CX 4445, DX 5351, SI 0cfe, DI 571e, DS 199b, ES 199b
err:int:DOSVM_Int2fHandler int2f: unknown/not implemented parameters:
int2f: AX ed0...
2016 May 24
3
Liveness of AL, AH and AX in x86 backend
On several variants of x86 processors, mixing `ah`, `al` and `ax` as
source/destination in the same dependency chain will have some penalties,
so for THOSE processors, there is a benefit to NOT use `al` and `ah` to
reflect parts of `ax` - I believe this is caused by the fact that the
processor doesn't ACTUALLY see these as parts of a bigger register
internal...
1998 Oct 08
0
'Trying usename <machinename>'
...a]
Requested protocol [LM1.2X002]
Requested protocol [LANMAN2.1]
Requested protocol [NT LM 0.12]
Selected protocol NT LM 0.12
1998/10/08 17:39:43 Transaction 2 of length 158
switch message SMBsesssetupX (pid 26234)
Domain=[ZURICH.IBM.COM] NativeOS=[Windows NT 1381] NativeLanMan=[]
sesssetupX:name=[axs]
SMB Password - pwlen = 8, challenge_done = 0
Checking password for user axs (l=8)
adding home directory axs at /u/axs
axs is in 3 groups
33536 32670 202
uid 21004 registered to name axs
Clearing default real name
Chained message
switch message SMBtconX (pid 26234)
Got device type A:
Allowed conne...
2016 May 24
5
Liveness of AL, AH and AX in x86 backend
I'm trying to see how the x86 backend deals with the relationship
between AL, AH and AX, but I can't get it to generate any code that
would expose an interesting scenario.
For example, I wrote this piece:
typedef struct {
char x, y;
} struct_t;
struct_t z;
struct_t foo(char *p) {
struct_t s;
s.x = *p++;
s.y = *p;
z = s;
s.x++;
return s;
}
But the output...
2016 May 24
3
Liveness of AL, AH and AX in x86 backend
...the
struct, but the stores were still separate (even though storing CX would
be correct)...
Here's another question that falls into the same category:
The function X86InstrInfo::loadRegFromStackSlot does not append any
implicit uses/defs. How does it know that it won't need them? If AX
was spilled in the middle of a live range of EAX, wouldn't restoring of
AX need to implicitly define EAX?
We deal with such cases a lot in the Hexagon backend and it continues to
be a major pain. I'm trying to understand if there are better options
for us.
-Krzysztof
On 5/24/2016...
2009 Apr 24
1
Bugs in pxelinux.asm - syslinux 3.75
In pxelinux.asm
the xchg instruction in
xchg ax,ax
.
data_on_top:
should be xchg ax,dx, I think
At the end of
pxe_get_cached_info routine,there is
and ax,ax
jnz .err
It is supposed to test for AX status, but
since pxenv does pushad and popad, AX doesn't contain status. In fact
the other routines calling p...
2016 May 24
0
Liveness of AL, AH and AX in x86 backend
...ze, the output is still the same.
As per the subject, I'm not really interested in the quality of the
final code, but in the way that the x86 target deals with the structural
relationship between these registers. Specifically, I'd like to see if
it would generate implicit defs/uses for AX on defs/uses of AH/AL. I
looked in the X86 sources and I didn't find code that would make me
certain, but I'm not too familiar with that backend. Having a testcase
to work with would make it a lot easier for me.
-Krzysztof
On 5/24/2016 12:03 PM, mats petersson wrote:
> On several...
2007 Feb 26
2
fs quota - what I am doing wrong?
...partition (ext3). mount says:
root at zen:/var/log# mount |grep quo
/dev/sda8 on /home type ext3 (rw,noatime,usrquota)
/dev/sda7 on /tmp type ext3 (rw,noatime,usrquota,data=writeback)
System is debian/stable (distribution 2.6.8-3-686-smp kernel), quotas
are working:
root at zen:/var/log# quota ax
Disk quotas for user ax (uid 506):
Filesystem blocks quota limit grace files quota limit
grace
/dev/sda8 148064 250000 300000 7066 0 0
/dev/sda7 16 10000 300000 5 0 0
but dovecot has trouble with them:...
2014 Jan 16
2
[LLVMdev] Some bugs in x86 disasm (llvm-mc)
I believe I have now fixed the 0x64 0xa1 0x00 0x00 0x00 0x00 bug in r199364.
On Wed, Jan 15, 2014 at 10:53 AM, Craig Topper <craig.topper at gmail.com>wrote:
> To fix it we need to change offset8/offset16/etc to have two suboperands
> and update the printer to understand that. Also update the disassembler to
> add the segment to the MCInst when its creating it. When I did these
2016 May 25
0
Liveness of AL, AH and AX in x86 backend
...the stores were still separate (even though storing CX would be correct)...
>
> Here's another question that falls into the same category:
>
> The function X86InstrInfo::loadRegFromStackSlot does not append any implicit uses/defs. How does it know that it won't need them? If AX was spilled in the middle of a live range of EAX, wouldn't restoring of AX need to implicitly define EAX?
Doing that would say that we override the other lanes of EAX, which is not what we want. In what cases, do we need to add those implicit arguments?
Also, IIRC, right now, even with sub re...
2016 May 24
0
Liveness of AL, AH and AX in x86 backend
...y.
Kevin Smith
>-----Original Message-----
>From: llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] On Behalf Of
>Krzysztof Parzyszek via llvm-dev
>Sent: Tuesday, May 24, 2016 8:04 AM
>To: LLVM Dev <llvm-dev at lists.llvm.org>
>Subject: [llvm-dev] Liveness of AL, AH and AX in x86 backend
>
>I'm trying to see how the x86 backend deals with the relationship
>between AL, AH and AX, but I can't get it to generate any code that
>would expose an interesting scenario.
>
>For example, I wrote this piece:
>
>typedef struct {
> char x, y;
&...
2006 Aug 14
4
[PATCH] HVM SMBIOS v3 [5/5]
...d-off-by: Andrew D. Ball <aball@us.ibm.com>
diff -r 1d817bfc5ed9 tools/firmware/rombios/rombios.c
--- a/tools/firmware/rombios/rombios.c Fri Aug 11 14:22:54 2006 +0100
+++ b/tools/firmware/rombios/rombios.c Fri Aug 11 14:55:22 2006 -0400
@@ -9443,6 +9443,43 @@ rom_scan_increment:
mov ds, ax
ret
+#ifdef HVMASSIST
+
+; Copy the SMBIOS entry point over from 0x9f000, where hvmloader left it.
+; The entry point must be somewhere in 0xf0000-0xfffff on a 16-byte boundary,
+; but the tables themeselves can be elsewhere.
+smbios_init:
+ push ax
+ push cx
+ push es
+ push ds
+ push di...