You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
(71) |
Aug
(152) |
Sep
(123) |
Oct
(49) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
|
Nov
|
Dec
|
2002 |
Jan
|
Feb
|
Mar
|
Apr
(37) |
May
(554) |
Jun
(301) |
Jul
(84) |
Aug
(39) |
Sep
(44) |
Oct
(99) |
Nov
(41) |
Dec
(52) |
2003 |
Jan
(15) |
Feb
(32) |
Mar
(19) |
Apr
(4) |
May
(8) |
Jun
(30) |
Jul
(122) |
Aug
(100) |
Sep
(120) |
Oct
(4) |
Nov
(39) |
Dec
(32) |
2004 |
Jan
(38) |
Feb
(87) |
Mar
(11) |
Apr
(23) |
May
(7) |
Jun
(6) |
Jul
(18) |
Aug
(2) |
Sep
(22) |
Oct
(2) |
Nov
(7) |
Dec
(48) |
2005 |
Jan
(74) |
Feb
(29) |
Mar
(28) |
Apr
(1) |
May
(24) |
Jun
(16) |
Jul
(9) |
Aug
(7) |
Sep
(69) |
Oct
(11) |
Nov
(13) |
Dec
(13) |
2006 |
Jan
(5) |
Feb
(3) |
Mar
(7) |
Apr
|
May
(12) |
Jun
(12) |
Jul
(5) |
Aug
(1) |
Sep
(4) |
Oct
(61) |
Nov
(68) |
Dec
(46) |
2007 |
Jan
(16) |
Feb
(15) |
Mar
(46) |
Apr
(171) |
May
(78) |
Jun
(109) |
Jul
(61) |
Aug
(71) |
Sep
(189) |
Oct
(219) |
Nov
(162) |
Dec
(91) |
2008 |
Jan
(49) |
Feb
(41) |
Mar
(43) |
Apr
(31) |
May
(70) |
Jun
(98) |
Jul
(39) |
Aug
(8) |
Sep
(75) |
Oct
(47) |
Nov
(11) |
Dec
(17) |
2009 |
Jan
(9) |
Feb
(12) |
Mar
(8) |
Apr
(11) |
May
(27) |
Jun
(25) |
Jul
(161) |
Aug
(28) |
Sep
(66) |
Oct
(36) |
Nov
(49) |
Dec
(22) |
2010 |
Jan
(34) |
Feb
(20) |
Mar
(3) |
Apr
(12) |
May
(1) |
Jun
(10) |
Jul
(28) |
Aug
(98) |
Sep
(7) |
Oct
(25) |
Nov
(4) |
Dec
(9) |
2011 |
Jan
|
Feb
(12) |
Mar
(7) |
Apr
(16) |
May
(11) |
Jun
(59) |
Jul
(120) |
Aug
(7) |
Sep
(4) |
Oct
(5) |
Nov
(3) |
Dec
(2) |
2012 |
Jan
|
Feb
(6) |
Mar
(21) |
Apr
|
May
|
Jun
|
Jul
(9) |
Aug
|
Sep
(5) |
Oct
(3) |
Nov
(6) |
Dec
(1) |
2013 |
Jan
|
Feb
(19) |
Mar
(10) |
Apr
|
May
(2) |
Jun
|
Jul
(7) |
Aug
(62) |
Sep
(14) |
Oct
(44) |
Nov
(38) |
Dec
(47) |
2014 |
Jan
(14) |
Feb
(1) |
Mar
(4) |
Apr
|
May
(20) |
Jun
|
Jul
|
Aug
(8) |
Sep
(6) |
Oct
(11) |
Nov
(9) |
Dec
(9) |
2015 |
Jan
(3) |
Feb
(2) |
Mar
(2) |
Apr
(3) |
May
(2) |
Jun
(5) |
Jul
|
Aug
(2) |
Sep
(1) |
Oct
(1) |
Nov
(10) |
Dec
(2) |
2016 |
Jan
(12) |
Feb
(13) |
Mar
(9) |
Apr
(45) |
May
(9) |
Jun
(2) |
Jul
(15) |
Aug
(32) |
Sep
(6) |
Oct
(28) |
Nov
(1) |
Dec
|
2017 |
Jan
(1) |
Feb
|
Mar
|
Apr
(13) |
May
(8) |
Jun
(2) |
Jul
(3) |
Aug
(10) |
Sep
|
Oct
(2) |
Nov
|
Dec
(1) |
2018 |
Jan
(2) |
Feb
(4) |
Mar
(2) |
Apr
(7) |
May
|
Jun
(8) |
Jul
|
Aug
(8) |
Sep
(2) |
Oct
(2) |
Nov
(8) |
Dec
(6) |
2019 |
Jan
(2) |
Feb
|
Mar
(1) |
Apr
|
May
(1) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(3) |
2020 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2021 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2022 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Martin K. <mar...@gm...> - 2015-04-07 00:58:01
|
Hi there, I started to investigate the potential solution of using a way to inline ASM in Java. What I currently managed to do is: public void myJava() { asm(" nop", " nop", " nop"); } Which results into writing three nop instructions + ret in a memory block (allocated by mmap), grand executable rights and call it using JNA and a custom C method. The compilation is actually just writing to a memory block using Unsafe (or calling a C function). What I am looking for is a compiler for those instructions that integrates nicely. Since you provide a very sophisticated product, I would like to ask if there is something like this possible: 1. Giving a string of assembler instruction, compile it. 2. The output of this compiler step should at best do not be a library or executable and easily extract the necessary operations without additional boilerplate or code I do not want but have to strip off. 3. Place the output preferable into memory (or use sockets or whatever) avoiding disk access and temporary file access. 4. If possible can the compiler become a library (or does one exist) making it possible to avoid spawning child processes. 5. Can the messages of the compiler (errors and alike) be easily parsed and mapped to the input string (like number of lines etc). The real critical condition is only (1) but the rest is nice to have. In the end I want a solution where I can do the simple change code, run Java and enjoy a transparent ASM compilation one on first use of the snippet. The rest about how to access registers transfer data etc will be totally custom by me. The target platform is linux but supporting windows and other x86 languages would be a great options since once this works it will become an open source project that is likely to be widely adopted. I dream about this for 15 years straight and just found enough information and having free time to takle it. Using existing compilers would also make this a very short project with a high chance of attracting other developers adopting it and push it further. I just need memory access and manipulation using the 256bit registers of the new Intel Xeon v3 instructions (or v2) and just to speed up a research project (PhD) but have plenty of other ideas what to speed up also. Also once this works adding C or Fortran or other compilers in the mix in a similar way would also be a no brainer but I just need ASM. Cheers. Martin (Kersten), Germany |
From: Cyrill G. <gor...@gm...> - 2015-04-05 20:14:05
|
On Sun, Apr 05, 2015 at 10:23:53AM -0400, Frank Kotler wrote: > I know you guys are busy, but... There's a message on the Forum... > > http://forum.nasm.us/index.php?topic=2101.msg9294#msg9294 > > ...reporting an apparent bug in 2.11.08. This may be the same as: > Hi Frank! I saw it. Once I get some time I'll take a look (can't set time bounds though, too busy). |
From: Frank K. <fbk...@my...> - 2015-04-05 15:01:48
|
I know you guys are busy, but... There's a message on the Forum... http://forum.nasm.us/index.php?topic=2101.msg9294#msg9294 ...reporting an apparent bug in 2.11.08. This may be the same as: http://bugzilla.nasm.us/show_bug.cgi?id=3392306 Here's the example code from the Forum: ;----------------------- default rel bits 64 section .rodata ; .data - same result - fbk data dq 42 ; comment out otherdata to make it work otherdata dw 100 section .text global _testFunc _testFunc: mov rax, [data] ret ;-------------------- Here's my attempt to disassemble the resulting .o files with ndisasm: (-b64 -e0x120) this is with 2.11.06 00000000 488B0500000000 mov rax,[rel 0x7] 00000007 C3 ret I guess it's "right"? this is with 2.11.08 00000000 488B05F8000000 mov rax,[rel 0xff] 00000007 C3 ret Apparently not right. I've looked at a diff, but I don't know enough C to make much of it. Simply removing the "=" in the very first change does not seem to help. :) Perhaps related... Last I knew, Apple was distributing Nasm-0.98.40. It is as if they don't like our 2.x.y series at all. Is Eric Christopher still around? Do we have any liaison with Apple at all? Are they mad at us? Anyone know? Thanks to all for all you do! Best, Frank |
From: anonymous c. <nas...@us...> - 2015-03-20 18:51:29
|
> I tried to implement it via macros but this won't work. Any ideas? Maybe > add the min, max operator to the preprocessor? you want eval.c support for the x ? y : z conditional operator http://sourceforge.net/p/nasm/feature-requests/29/ http://sourceforge.net/p/nasm/patches/3/ |
From: Lars M. <lar...@te...> - 2015-03-18 19:32:58
|
Hello, today i stumbled upon the following problem: imagine you'r defining a struct via constants and you want to use a c union-like layout, for example: %define TYPE_ARRAY_OFFSET_DATA_TYPE 0x0000 %define TYPE_ARRAY_OFFSET_LENGTH 0x0004 %define TYPE_ARRAY_SIZE 0x0008 %define TYPE_STRUCT_ .... [and so on] %define TYPE_OFFSET_INDEX 0x0000 %define TYPE_OFFSET_LAYOUT 0x0004 ; union of type_array, type_struct %define TYPE_SIZE max TYPE_ARRAY_SIZE, TYPE_STRUCT_SIZE %define TYPE_LAYOUT_ARRAY_DATA_TYPE ( TYPE_OFFSET_LAYOUT + TYPE_ARRAY_OFFSET_DATA_TYPE ) %define TYPE_LAYOUT_ARRAY_LENGTH ( TYPE_OFFSET_LAYOUT + TYPE_ARRAY_OFFSET_LENGTH ) thus you have a full type_array or type_struct structure at TYPE_OFFSET_LAYOUT. Now I need the max-macro to get the maximum size of both structures. I could calc this value manually, but this is not the sense of a preprocessor. I tried to implement it via macros but this won't work. Any ideas? Maybe add the min, max operator to the preprocessor? Best wishes! |
From: Cyrill G. <gor...@gm...> - 2015-02-16 09:05:55
|
On Mon, Feb 16, 2015 at 03:51:38PM +0700, Somchai Smythe wrote: > Hello, > > http://nasm.us/ lists nasm-2.11.06 as the latest. > > http://www.nasm.us/pub/nasm/releasebuilds/ has no 2.11.07 subdirectory. > > http://repo.or.cz/w/nasm.git says nasm-2.11.07 was tagged on 2014-12-09. > > Is there a different website URL I should be using now to find the > 2.11.07 release tar files? We've a problem in our build farm for now, sorry for inconvenience. Hopefully get fixed more-less soon. |
From: Somchai S. <bur...@gm...> - 2015-02-16 08:51:45
|
Hello, http://nasm.us/ lists nasm-2.11.06 as the latest. http://www.nasm.us/pub/nasm/releasebuilds/ has no 2.11.07 subdirectory. http://repo.or.cz/w/nasm.git says nasm-2.11.07 was tagged on 2014-12-09. Is there a different website URL I should be using now to find the 2.11.07 release tar files? |
From: H. P. A. <hp...@zy...> - 2015-01-30 17:48:18
|
On 01/26/2015 01:31 PM, Yuri Zaporozhets wrote: > Hi guys, > > Does somebody know what happened to John Coffman? > > I noticed that Dave Hanson's LCC is now on github, and was wandering > how to incorporate x86nasm.md into it. John originally wrote this file. > I haven't heard from him since Dec 2008, but I do have his email address from that time. -hpa |
From: Yuri Z. <r_...@ya...> - 2015-01-26 21:51:05
|
Hi guys, Does somebody know what happened to John Coffman? I noticed that Dave Hanson's LCC is now on github, and was wandering how to incorporate x86nasm.md into it. John originally wrote this file. -- Regards, Yuri |
From: françai s <rom...@gm...> - 2015-01-25 16:45:59
|
According to Richard Hamming in the book The Art of doing science and engineering, page 26, one of the main complaints of programmers of machine code of 1st generation that did not accept the Assembly was that you never know where the Assembly puts things. The original of statement that I said above says (my emphasis): Finally, the more complete, and more useful, Symbolic Assembly Program (SAP) was devised-after more years than you are apt to believe During Which most programmers continued Their heroic absolute binary programming. At the SAP team first Appeared I would guess about 1% of the older programmers Were interested in it-using SAP was "sissy stuff" and the real programmers would not stoop to wasting machine capacity to do the assembly.Yes! Programmers wanted at part of it, though pressed When They Had to admit Their old methods used more machine time in locating and fixing up errors than the SAP program ever used. One of the main complaints was When using the symbolic system you do not know where anything was in storage - though in the early days we supplied the mapping of symbolic to current storage, and believe it or not they later lovingly pored over such sheets rather than They did not realize a need to know information que if They stuck to operating Within the system -no! When correcting errors They preferred to do it in absolute binary. Reference: http://worrydream.com/refs/Hamming-TheArtOfDoingScienceAndEngineering.pdf I do not understand why 1% of programmers that coded in machine code that did not accept the Assembly then changed his mind about the Assembly. I asked the question based on the following part: One of the main complaints was When using the symbolic system you do not know where anything was in storage. I do not understand why 1% of machine code programmers who believed that the Assembly was heresy changed their minds about the Assembly. All the programmers of machine code that complained about Assembly changed their minds about the Assembly? |
From: Cyrill G. <gor...@gm...> - 2014-12-19 14:03:35
|
On Fri, Dec 19, 2014 at 10:36:50PM +0900, NAKAI Yuta wrote: > Hi, it seems that this is related to '-Werror=missing-declarations'. > At this commit (http://repo.or.cz/w/nasm.git/commit/236f7949e44434f19a3f72fa4650362f612da735), '-Werror=missing-declarations' was added to CFLAGS. > When '-Werror=missing-declarations' is specified, it seems that configure defines 'inline' mistakenly. > > config.h when -Werror=missing-declarations is specified > /* Define to `__inline__' or `__inline' if that's what the C compiler > calls it, or to nothing if 'inline' is not supported under any name. */ > #ifndef __cplusplus > #define inline > #endif > > config.log > configure:5169: checking for inline > configure:5185: x86_64-w64-mingw32-gcc -c -march=x86-64 -mtune=generic -pipe -Os -foptimize-strlen -fstack-protector-strong --param=ssp-buffer-size=4 -D__USE_MINGW_ANSI_STDIO=1 -D_FORTIFY_SOURCE=2 -W -Wall -std=c99 -pedantic -Werror=implicit -Werror=missing-braces -Werror=return-type -Werror=trigraphs -Werror=pointer-arith -Werror=missing-prototypes -Werror=missing-declarations -Werror=comment -Werror=vla conftest.c>&5 > conftest.c:32:14: error: no previous declaration for 'foo' [-Werror=missing-declarations] > inline foo_t foo () {return 0; } > ^ > cc1.exe: some warnings being treated as errors > configure:5185: $? = 1 > > On the contrary, config.h when -Werror=missing-declarations is 'not' specified > /* Define to `__inline__' or `__inline' if that's what the C compiler > calls it, or to nothing if 'inline' is not supported under any name. */ > #ifndef __cplusplus > /* #undef inline */ > #endif > > I think putting PA_ADD_CFLAGS([-Werror=missing-declarations]) after AC_C_INLINE in configure.in fixes this problem. > > Yuta Many thanks for info. I'll take a look. Cyrill |
From: NAKAI Y. <na...@li...> - 2014-12-19 13:36:57
|
Hi, it seems that this is related to '-Werror=missing-declarations'. At this commit (http://repo.or.cz/w/nasm.git/commit/236f7949e44434f19a3f72fa4650362f612da735), '-Werror=missing-declarations' was added to CFLAGS. When '-Werror=missing-declarations' is specified, it seems that configure defines 'inline' mistakenly. config.h when -Werror=missing-declarations is specified /* Define to `__inline__' or `__inline' if that's what the C compiler calls it, or to nothing if 'inline' is not supported under any name. */ #ifndef __cplusplus #define inline #endif config.log configure:5169: checking for inline configure:5185: x86_64-w64-mingw32-gcc -c -march=x86-64 -mtune=generic -pipe -Os -foptimize-strlen -fstack-protector-strong --param=ssp-buffer-size=4 -D__USE_MINGW_ANSI_STDIO=1 -D_FORTIFY_SOURCE=2 -W -Wall -std=c99 -pedantic -Werror=implicit -Werror=missing-braces -Werror=return-type -Werror=trigraphs -Werror=pointer-arith -Werror=missing-prototypes -Werror=missing-declarations -Werror=comment -Werror=vla conftest.c>&5 conftest.c:32:14: error: no previous declaration for 'foo' [-Werror=missing-declarations] inline foo_t foo () {return 0; } ^ cc1.exe: some warnings being treated as errors configure:5185: $? = 1 On the contrary, config.h when -Werror=missing-declarations is 'not' specified /* Define to `__inline__' or `__inline' if that's what the C compiler calls it, or to nothing if 'inline' is not supported under any name. */ #ifndef __cplusplus /* #undef inline */ #endif I think putting PA_ADD_CFLAGS([-Werror=missing-declarations]) after AC_C_INLINE in configure.in fixes this problem. Yuta >On 12/17/2014 05:01 PM, H. Peter Anvin wrote: >> There seems to be some bizarre mingw problem that is keeping the build >> robot from working. It keeps complaining about duplicate symbols, but >> all those duplicate symbols seem to come from the standard library. >> >> Trying to figure out what is going on. >> > >I can't tell for sure if this is a NASM bug or a Mingw bug. If I remove >-std=c99 from the Makefile it works, but I can't reproduce the error. > > -hpa |
From: H. P. A. <hp...@zy...> - 2014-12-18 01:17:19
|
On 12/17/2014 05:01 PM, H. Peter Anvin wrote: > There seems to be some bizarre mingw problem that is keeping the build > robot from working. It keeps complaining about duplicate symbols, but > all those duplicate symbols seem to come from the standard library. > > Trying to figure out what is going on. > I can't tell for sure if this is a NASM bug or a Mingw bug. If I remove -std=c99 from the Makefile it works, but I can't reproduce the error. -hpa |
From: H. P. A. <hp...@zy...> - 2014-12-18 01:01:37
|
There seems to be some bizarre mingw problem that is keeping the build robot from working. It keeps complaining about duplicate symbols, but all those duplicate symbols seem to come from the standard library. Trying to figure out what is going on. -hpa |
From: anonymous c. <nas...@us...> - 2014-12-16 14:18:56
|
> So the right thing is to extend the bounds register array to include > these non-registers. +1 for bnd0-15 in regs.dat |
From: H. P. A. <hp...@zy...> - 2014-12-15 19:37:16
|
On 12/14/2014 11:48 AM, nasm-bot for Cyrill Gorcunov wrote: > Commit-ID: 9b05974022da69c12b8b190c6ad100402771e5ad > Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=9b05974022da69c12b8b190c6ad100402771e5ad > Author: Cyrill Gorcunov <gor...@gm...> > AuthorDate: Sun, 14 Dec 2014 22:44:54 +0300 > Committer: Cyrill Gorcunov <gor...@gm...> > CommitDate: Sun, 14 Dec 2014 22:44:54 +0300 > > ndisasm: Prevent nil dereference on registerd decoding > > The sequence | 0x0F 0x1B 0x75 | get matched into > one of BNDx instruction which register value 6 > which is of course out of possible BND registers > implemented in hardware at the moment leading to > nil dereference. > > Instead lets use a macro in whichreg() helper > which would test the registers bounds and force > the caller to try another template if register is > out of range. In the case above it simply means > ndisasm instead of crashing outputs > > | 00000000 0F db 0x0f > | 00000001 1B db 0x1b > | 00000002 75 db 0x75 > > http://bugzilla.nasm.us/show_bug.cgi?id=3392289 > > Reported-by: Hanno Boeck <ha...@hb...> > Signed-off-by: Cyrill Gorcunov <gor...@gm...> > I don't agree with this. We normally decode even unimplemented registers, for example: mov eax,cr5 ... is handled correctly by NASM even though cr5 doesn't exist. Similarly segment registers 6 and 7 are supported. So the right thing is to extend the bounds register array to include these non-registers. -hpa |
From: suresh b. <k_s...@ya...> - 2014-12-02 01:31:36
|
Hi, vmovd works only in 32-bit with xmm1, if you want same thing to work in 64-bit you need to use the vmovq instruction with xmm1. regards,sureshbk. On Tuesday, December 2, 2014 6:21 AM, Frank Kotler <fbk...@my...> wrote: H. Peter Anvin wrote: ... > ... at which point we should make a 2.11.07. Wait, wait, we have another one. http://forum.nasm.us/index.php?topic=2004.new#new Claims "vmovd rdx, xmm0" won't assemble, but the Intel compiler generates it. I have no idea - I'm on a 32-bit machine... Thanks to all for your efforts! Best, Frank ------------------------------------------------------------------------------ Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREE http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk _______________________________________________ Nasm-devel mailing list Nas...@li... https://lists.sourceforge.net/lists/listinfo/nasm-devel |
From: Frank K. <fbk...@my...> - 2014-12-02 00:50:00
|
H. Peter Anvin wrote: ... > ... at which point we should make a 2.11.07. Wait, wait, we have another one. http://forum.nasm.us/index.php?topic=2004.new#new Claims "vmovd rdx, xmm0" won't assemble, but the Intel compiler generates it. I have no idea - I'm on a 32-bit machine... Thanks to all for your efforts! Best, Frank |
From: H. P. A. <hp...@zy...> - 2014-12-02 00:07:00
|
On 11/30/2014 12:54 PM, Cyrill Gorcunov wrote: > On Tue, Nov 25, 2014 at 12:15:13AM -0500, Frank Kotler wrote: >> suresh babu wrote: >>> Hi, >>> >>> >>> I have not found any source code link in http://www.nasm.us/ . >> >> http://www.nasm.us/pub/nasm/releasebuilds/2.11.05/nasm-2.11.05.zip >> >> Other extensions are the same thing in different compression formats. >> Take your pick. Not too clearly labeled as source archives, I guess. >> 2.11.06 is up, if you want to work with the latest... >> >> Thanks for your interest! > > Should be fixed in latest snapshot. Please verify once time permit. > ... at which point we should make a 2.11.07. -hpa |
From: Cyrill G. <gor...@gm...> - 2014-11-30 20:54:59
|
On Tue, Nov 25, 2014 at 12:15:13AM -0500, Frank Kotler wrote: > suresh babu wrote: > > Hi, > > > > > > I have not found any source code link in http://www.nasm.us/ . > > http://www.nasm.us/pub/nasm/releasebuilds/2.11.05/nasm-2.11.05.zip > > Other extensions are the same thing in different compression formats. > Take your pick. Not too clearly labeled as source archives, I guess. > 2.11.06 is up, if you want to work with the latest... > > Thanks for your interest! Should be fixed in latest snapshot. Please verify once time permit. |
From: suresh b. <k_s...@ya...> - 2014-11-30 05:59:28
|
The change made is correct. On Sunday, November 30, 2014 2:50 AM, Cyrill Gorcunov <gor...@gm...> wrote: On Sat, Nov 29, 2014 at 09:53:15PM +0100, Henrik Gramner wrote: > Ping. Can anyone get this pushed? > Ouch. sorry, managed to miss it. Will do, thanks a lot! ------------------------------------------------------------------------------ Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREE http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk _______________________________________________ Nasm-devel mailing list Nas...@li... https://lists.sourceforge.net/lists/listinfo/nasm-devel |
From: Cyrill G. <gor...@gm...> - 2014-11-29 21:20:09
|
On Sat, Nov 29, 2014 at 09:53:15PM +0100, Henrik Gramner wrote: > Ping. Can anyone get this pushed? > Ouch. sorry, managed to miss it. Will do, thanks a lot! |
From: Henrik G. <he...@gr...> - 2014-11-29 21:18:11
|
Ping. Can anyone get this pushed? Henrik On Wed, Nov 12, 2014 at 6:49 PM, Henrik Gramner <he...@gr...> wrote: > Signed-off-by: Henrik Gramner <he...@gr...> > --- > insns.dat | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/insns.dat b/insns.dat > index 4191075..baa7b9d 100644 > --- a/insns.dat > +++ b/insns.dat > @@ -2490,7 +2490,7 @@ VMOVNTDQA xmmreg,mem128 [rm: vex.128.66.0f38 2a /r] AVX,SANDYBRIDGE > VMOVNTPD mem128,xmmreg [mr: vex.128.66.0f 2b /r] AVX,SANDYBRIDGE > VMOVNTPD mem256,ymmreg [mr: vex.256.66.0f 2b /r] AVX,SANDYBRIDGE > VMOVNTPS mem128,xmmreg [mr: vex.128.0f 2b /r] AVX,SANDYBRIDGE > -VMOVNTPS mem128,ymmreg [mr: vex.256.0f 2b /r] AVX,SANDYBRIDGE > +VMOVNTPS mem256,ymmreg [mr: vex.256.0f 2b /r] AVX,SANDYBRIDGE > VMOVSD xmmreg,xmmreg*,xmmreg [rvm: vex.nds.lig.f2.0f 10 /r] AVX,SANDYBRIDGE > VMOVSD xmmreg,mem64 [rm: vex.lig.f2.0f 10 /r] AVX,SANDYBRIDGE > VMOVSD xmmreg,xmmreg*,xmmreg [mvr: vex.nds.lig.f2.0f 11 /r] AVX,SANDYBRIDGE > -- > 1.8.3.2 > |
From: Frank K. <fbk...@my...> - 2014-11-25 05:17:14
|
suresh babu wrote: > Hi, > > > I have not found any source code link in http://www.nasm.us/ . http://www.nasm.us/pub/nasm/releasebuilds/2.11.05/nasm-2.11.05.zip Other extensions are the same thing in different compression formats. Take your pick. Not too clearly labeled as source archives, I guess. 2.11.06 is up, if you want to work with the latest... Thanks for your interest! Best, Frank |
From: suresh b. <k_s...@ya...> - 2014-11-25 00:14:48
|
Hi, I have not found any source code link in http://www.nasm.us/ . So I got 2.07 nasm from source forge.net Can anyone send me the latest source of nasm? Let me build to produce this build error? regards,sureshbk. On Monday, November 24, 2014 4:49 PM, Cyrill Gorcunov <gor...@gm...> wrote: On Mon, Nov 24, 2014 at 11:06:54AM +0000, Andrew Walrond wrote: > Don't know if this is syslinux or nasm problem, but since HPA seems > active in both, I thought I'd post it here. Build fails like this: > > nasm -f elf -Ox -g -F dwarf -DDATE_STR="'6.03'" \ > -DHEXDATE="0x54730e41" \ > -Di386 \ > -I/source/sys/syslinux/core/ \ > -l ldlinux.lsr -o ldlinux.o -MP -MD ./.ldlinux.o.d > /source/sys/syslinux/core/ldlinux.asm > diskstart.inc:438: error: symbol references not supported in > preprocess-only mode > diskstart.inc:438: error: non-constant value given to `%if' > diskstart.inc:439: error: symbol references not supported in > preprocess-only mode > diskstart.inc:439: error: non-constant value given to `%assign' > /source/sys/syslinux/core/ldlinux.asm:26: fatal: unable to open include > file `head.inc' > /source/sys/syslinux/core/Makefile:156: recipe for target 'ldlinux.o' failed > > Hope that's useful. Looks like -M option get screwed. Thanks for report I will try to take a look in a couple of days. ------------------------------------------------------------------------------ Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREE http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk _______________________________________________ Nasm-devel mailing list Nas...@li... https://lists.sourceforge.net/lists/listinfo/nasm-devel |