Displaying 11 results from an estimated 11 matches similar to: "Crash with core32 (syslinux-3.81-pre12-68-g4a211f6)"
2019 Jan 27
2
How does LLVM know where to resolve declared only functions?
> It's the linkers job to hook together functions and definitions that end up in the same binary. Your OS will then hook in functions from other binaries when your executable is loaded into memory.
How does it know whether it is a system function or a user-defined function?
It seems that user functions have higher priorities over system
functions as demonstrated by the following example.
2019 Jan 26
2
How does LLVM know where to resolve declared only functions?
Hi
In the generated .ll file, it may have something like this. How does
LLVM know where to look for the definition of printf? Is it documented
somewhere? Thanks.
declare i32 @printf(i8*, ...) #1
--
Regards,
Peng
2009 May 15
3
The "core32" development branch
Well, there is now a development branch in the git repository, which
contains the infrastructure needed for rewriting the core in C. As an
initial test case it simply contains a "Hello, World!" and a rewrite of
rllpack in C.
This is not production code in any way: SYSLINUX (the FAT version) is
completely broken (I haven't had time to fix the installers yet) and the
Linux kernel
2009 May 31
2
Calling between real mode and protected mode on the core32 branch
liu asked me for some clarification on how intermode calls work on the
core32 branch, so I decided that that was probably something that really
should be published more widely. This is the *current state* of the
core32 branch; all this stuff is subject to change as development
progresses:
*** Call from real mode (16-bit) to protected mode (32-bit):
These calls are done with the pm_call macro:
2009 Jun 01
1
error on implementing printf
hello, all.
here is my implementation of printf for use in syslinux core.
#include <stdio.h>
#include <unistd.h>
#define BUF_SIZE 1024
char buf[BUF_SIZE];
extern void myputs(const char *);
int printf(const char *format, ...)
{
va_list ap;
int rv;
#if 1
myputs("DEBUG:the string we want fomart is\n\r");
myputs(format);
#endif
va_start(ap, format);
2012 Jul 16
5
[PATCH 0/5] Deleting __intcall() from Syslinux
From: Matt Fleming <matt.fleming at intel.com>
Since we can't use __intcall() for EFI, and since we can now have the
ELF module code resolve all our symbols at runtime, we should delete
as many references to __intcall() as possible and just access the
symbols directly.
The most interesting patch is the support for weak symbols. We need to
be able to reference derivative-specific
2018 Jan 17
1
Opcodes with 32-bit pair vs 64-bit register
Mark, did you get anywhere with this? We have a similar issue, where a family of otherwise-identical instructions operates on different register classes depending on a non-static property -- functional unit selection in our case.
I started to head down the path of using multidefs but quickly abandoned that. I had envisioned a MachineOperand that would hold the functional unit assignment, and
2012 Aug 14
1
[GIT PULL] elflink fixes
Hi Peter,
The main part of this pull request includes commits that try to replace
as many __intcall() invocations as possible. Some remain, but not many
(and eventually they'll be gone too). There's also a patch to make
better use of ld's --as-needed option and various other bug
fixes/cleanups.
The following changes since commit ff7334a2ce536b7f4b1f6d6f93ff4e285a3bd45a:
Only
2013 Sep 12
10
[PATCH] xen/build: Remove hacked up version of figlet
This hacked up version of figlet contributes a supprisingly large proportion
of the Coverity issues found under xen/ (and therefore attributed against Xen)
Figlet can be found in all distros, so make use of it.
We keep xen.flf (being the Xen figlet font) and replace the hacked up octal
transform with a short python script.
The Xen Makefile has been tweaked in such a way that it still prints the
2007 Aug 21
1
[NetBIOS] Registering new name?
Hello
I'm having a hard time finding information about NetBIOS. Maybe someone
here has good experience with this API, so I figured I could try asking
here, although the question is specifically on how to use NetBIOS in an
all-Windows LAN from Visual Basic :-/
I'm trying to register a new name on a server so that clients can locate it
by broadcasting its NetBIOS name.
At this point,
2012 Apr 17
2
[GIT PULL] elflink warning fixes and auto extension support
Hi,
I just pushed out changes that fix pretty much all the compiler build
warnings on the elflink branch. Also, I've added "auto extension"
support so that if the user doesn't type the file name extension it will
automatically be looked up, e.g. now typing "ls" will execute "ls.c32".
The following changes since commit