2017-04-02 10:29:09 +00:00
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
|
|
|
* Mes --- Maxwell Equations of Software
|
|
|
|
* Copyright © 2016,2017 Jan Nieuwenhuizen <janneke@gnu.org>
|
|
|
|
*
|
|
|
|
* This file is part of Mes.
|
|
|
|
*
|
|
|
|
* Mes is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* Mes is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Mes. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2017-04-17 00:24:20 +00:00
|
|
|
char **g_environment = 0;
|
2017-04-02 10:29:09 +00:00
|
|
|
int g_stdin = 0;
|
|
|
|
|
2017-05-02 21:30:46 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <mlibc.h>
|
2017-03-22 06:54:45 +00:00
|
|
|
|
2017-05-21 20:25:02 +00:00
|
|
|
#if __GNUC__
|
2017-05-02 21:30:46 +00:00
|
|
|
#include <stdlib.h>
|
2017-05-21 20:25:02 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if __GNUC__ && !POSIX
|
2017-04-12 19:27:59 +00:00
|
|
|
|
2017-04-02 10:29:09 +00:00
|
|
|
void
|
|
|
|
exit (int code)
|
|
|
|
{
|
|
|
|
asm (
|
2017-07-02 14:25:14 +00:00
|
|
|
"mov %0,%%ebx\n\t"
|
|
|
|
"mov $1,%%eax\n\t"
|
|
|
|
"int $0x80"
|
2017-04-02 10:29:09 +00:00
|
|
|
: // no outputs "=" (r)
|
|
|
|
: "" (code)
|
|
|
|
);
|
|
|
|
// not reached
|
|
|
|
exit (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
read (int fd, void* buf, size_t n)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
//syscall (SYS_write, fd, s, n));
|
|
|
|
asm (
|
2017-07-02 14:25:14 +00:00
|
|
|
"mov %1,%%ebx\n\t"
|
|
|
|
"mov %2,%%ecx\n\t"
|
|
|
|
"mov %3,%%edx\n\t"
|
2017-03-22 06:54:45 +00:00
|
|
|
|
2017-04-02 10:29:09 +00:00
|
|
|
"movl $0x3,%%eax\n\t"
|
|
|
|
"int $0x80\n\t"
|
2017-03-22 06:54:45 +00:00
|
|
|
|
2017-07-02 14:25:14 +00:00
|
|
|
"mov %%eax,%0\n\t"
|
2017-04-02 10:29:09 +00:00
|
|
|
: "=r" (r)
|
|
|
|
: "" (fd), "" (buf), "" (n)
|
|
|
|
: "eax", "ebx", "ecx", "edx"
|
|
|
|
);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2017-04-16 07:51:45 +00:00
|
|
|
write (int fd, char const* s, int n)
|
2017-04-02 10:29:09 +00:00
|
|
|
{
|
|
|
|
int r;
|
2017-04-16 07:51:45 +00:00
|
|
|
//syscall (SYS_write, fd, s, n));
|
2017-04-02 10:29:09 +00:00
|
|
|
asm (
|
2017-07-02 14:25:14 +00:00
|
|
|
"mov %1,%%ebx\n\t"
|
|
|
|
"mov %2,%%ecx\n\t"
|
|
|
|
"mov %3,%%edx\n\t"
|
2017-04-16 07:51:45 +00:00
|
|
|
|
2017-07-02 14:25:14 +00:00
|
|
|
"mov $0x4, %%eax\n\t"
|
|
|
|
"int $0x80\n\t"
|
|
|
|
"mov %%eax,%0\n\t"
|
2017-04-02 10:29:09 +00:00
|
|
|
: "=r" (r)
|
2017-04-16 07:51:45 +00:00
|
|
|
: "" (fd), "" (s), "" (n)
|
|
|
|
: "eax", "ebx", "ecx", "edx"
|
2017-04-02 10:29:09 +00:00
|
|
|
);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2017-04-12 19:27:59 +00:00
|
|
|
int
|
2017-05-19 04:56:47 +00:00
|
|
|
open (char const *s, int flags, ...)
|
2017-04-02 10:29:09 +00:00
|
|
|
{
|
2017-05-19 04:56:47 +00:00
|
|
|
int mode;
|
|
|
|
asm (
|
2017-07-02 14:25:14 +00:00
|
|
|
"mov %%ebp,%%eax\n\t"
|
|
|
|
"add $0x10,%%eax\n\t"
|
|
|
|
"mov (%%eax),%%eax\n\t"
|
|
|
|
"mov %%eax,%0\n\t"
|
2017-05-19 04:56:47 +00:00
|
|
|
: "=mode" (mode)
|
|
|
|
: //no inputs ""
|
|
|
|
);
|
2017-04-02 10:29:09 +00:00
|
|
|
int r;
|
2017-04-16 07:51:45 +00:00
|
|
|
//syscall (SYS_open, mode));
|
2017-04-02 10:29:09 +00:00
|
|
|
asm (
|
2017-07-02 14:25:14 +00:00
|
|
|
"mov %1,%%ebx\n\t"
|
|
|
|
"mov %2,%%ecx\n\t"
|
|
|
|
"mov %3,%%edx\n\t"
|
|
|
|
"mov $0x5,%%eax\n\t"
|
|
|
|
"int $0x80\n\t"
|
|
|
|
"mov %%eax,%0\n\t"
|
2017-04-12 19:27:59 +00:00
|
|
|
: "=r" (r)
|
2017-05-19 04:56:47 +00:00
|
|
|
: "" (s), "" (flags), "" (mode)
|
|
|
|
: "eax", "ebx", "ecx", "edx"
|
2017-04-02 10:29:09 +00:00
|
|
|
);
|
2017-04-12 19:27:59 +00:00
|
|
|
return r;
|
2017-04-02 10:29:09 +00:00
|
|
|
}
|
|
|
|
|
2017-04-15 13:13:38 +00:00
|
|
|
int
|
2017-04-16 07:51:45 +00:00
|
|
|
access (char const *s, int mode)
|
2017-04-15 13:13:38 +00:00
|
|
|
{
|
|
|
|
int r;
|
2017-04-16 07:51:45 +00:00
|
|
|
//syscall (SYS_access, mode));
|
2017-04-15 13:13:38 +00:00
|
|
|
asm (
|
2017-07-02 14:25:14 +00:00
|
|
|
"mov %1,%%ebx\n\t"
|
|
|
|
"mov %2,%%ecx\n\t"
|
|
|
|
"mov $0x21,%%eax\n\t"
|
|
|
|
"int $0x80\n\t"
|
|
|
|
"mov %%eax,%0\n\t"
|
2017-04-15 13:13:38 +00:00
|
|
|
: "=r" (r)
|
2017-04-16 07:51:45 +00:00
|
|
|
: "" (s), "" (mode)
|
|
|
|
: "eax", "ebx", "ecx"
|
2017-04-15 13:13:38 +00:00
|
|
|
);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2017-03-22 06:54:45 +00:00
|
|
|
void *
|
|
|
|
brk (void *p)
|
|
|
|
{
|
|
|
|
void *r;
|
|
|
|
asm (
|
2017-07-02 14:25:14 +00:00
|
|
|
"mov %1,%%ebx\n\t"
|
2017-03-22 06:54:45 +00:00
|
|
|
|
2017-07-02 14:25:14 +00:00
|
|
|
"mov $0x2d,%%eax\n\t"
|
|
|
|
"int $0x80\n\t"
|
2017-03-22 06:54:45 +00:00
|
|
|
|
2017-07-02 14:25:14 +00:00
|
|
|
"mov %%eax,%0\n\t"
|
2017-03-22 06:54:45 +00:00
|
|
|
: "=r" (r)
|
|
|
|
: "" (p)
|
|
|
|
: "eax", "ebx"
|
|
|
|
);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2017-04-16 07:51:45 +00:00
|
|
|
int
|
|
|
|
fsync (int fd)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
//syscall (SYS_fsync, fd));
|
|
|
|
asm (
|
2017-07-02 14:25:14 +00:00
|
|
|
"mov %1,%%ebx\n\t"
|
2017-04-16 07:51:45 +00:00
|
|
|
|
2017-07-02 14:25:14 +00:00
|
|
|
"mov $0x76, %%eax\n\t"
|
|
|
|
"int $0x80\n\t"
|
|
|
|
"mov %%eax,%0\n\t"
|
2017-04-16 07:51:45 +00:00
|
|
|
: "=r" (r)
|
|
|
|
: "" (fd)
|
|
|
|
: "eax", "ebx"
|
|
|
|
);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2017-03-25 14:58:44 +00:00
|
|
|
int
|
2017-04-12 19:27:59 +00:00
|
|
|
fputc (int c, int fd)
|
2017-03-25 14:58:44 +00:00
|
|
|
{
|
|
|
|
write (fd, (char*)&c, 1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-08-01 09:08:14 +00:00
|
|
|
void
|
|
|
|
free (void *ptr)
|
2017-04-02 10:29:09 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-07-27 21:44:22 +00:00
|
|
|
char *g_brk = 0;
|
2017-03-22 06:54:45 +00:00
|
|
|
|
2017-04-02 10:29:09 +00:00
|
|
|
void *
|
|
|
|
malloc (size_t size)
|
|
|
|
{
|
2017-07-27 21:44:22 +00:00
|
|
|
if (!g_brk)
|
|
|
|
g_brk = brk (0);
|
|
|
|
if (brk (g_brk + size) == -1)
|
|
|
|
return 0;
|
|
|
|
char *p = g_brk;
|
|
|
|
g_brk += size;
|
2017-03-22 06:54:45 +00:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
2017-08-01 09:08:14 +00:00
|
|
|
memcpy (void *dest, void const *src, size_t n)
|
2017-03-22 06:54:45 +00:00
|
|
|
{
|
2017-08-01 09:08:14 +00:00
|
|
|
char* p = dest;
|
|
|
|
char* q = src;
|
|
|
|
while (n--) *p++ = *q++;
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
putchar (int c)
|
|
|
|
{
|
|
|
|
write (STDOUT, (char*)&c, 1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
realloc (void *ptr, size_t size)
|
|
|
|
{
|
|
|
|
void *new = malloc (size);
|
|
|
|
if (ptr && new)
|
|
|
|
{
|
|
|
|
memcpy (new, ptr, size);
|
|
|
|
free (ptr);
|
|
|
|
}
|
|
|
|
return new;
|
2017-04-02 10:29:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
strlen (char const* s)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
while (s[i]) i++;
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
strcmp (char const* a, char const* b)
|
|
|
|
{
|
|
|
|
while (*a && *b && *a == *b) {a++;b++;}
|
|
|
|
return *a - *b;
|
|
|
|
}
|
|
|
|
|
2017-05-08 19:15:53 +00:00
|
|
|
char *
|
|
|
|
strcpy (char *dest, char const *src)
|
|
|
|
{
|
|
|
|
char *p = dest;
|
|
|
|
while (*src) *p++ = *src++;
|
|
|
|
*p = 0;
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
2017-04-02 10:29:09 +00:00
|
|
|
int
|
|
|
|
eputs (char const* s)
|
|
|
|
{
|
|
|
|
int i = strlen (s);
|
2017-03-25 14:58:44 +00:00
|
|
|
write (STDERR, s, i);
|
2017-04-02 10:29:09 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
fputs (char const* s, int fd)
|
|
|
|
{
|
|
|
|
int i = strlen (s);
|
|
|
|
write (fd, s, i);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
puts (char const* s)
|
|
|
|
{
|
|
|
|
int i = strlen (s);
|
2017-03-25 14:58:44 +00:00
|
|
|
write (STDOUT, s, i);
|
2017-04-02 10:29:09 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-03-22 06:54:45 +00:00
|
|
|
void
|
|
|
|
assert_fail (char* s)
|
|
|
|
{
|
|
|
|
eputs ("assert fail: ");
|
|
|
|
eputs (s);
|
|
|
|
eputs ("\n");
|
|
|
|
*((int*)0) = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define assert(x) ((x) ? (void)0 : assert_fail (#x))
|
|
|
|
|
|
|
|
int ungetc_char = -1;
|
2017-03-23 17:57:06 +00:00
|
|
|
char ungetc_buf[2];
|
2017-03-22 06:54:45 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
getchar ()
|
|
|
|
{
|
|
|
|
char c;
|
|
|
|
int i;
|
|
|
|
if (ungetc_char == -1)
|
|
|
|
{
|
|
|
|
int r = read (g_stdin, &c, 1);
|
|
|
|
if (r < 1) return -1;
|
|
|
|
i = c;
|
|
|
|
}
|
|
|
|
else
|
2017-03-23 17:57:06 +00:00
|
|
|
i = ungetc_buf[ungetc_char--];
|
|
|
|
|
2017-03-22 06:54:45 +00:00
|
|
|
if (i < 0) i += 256;
|
mescc: Run module/base-0.mes.
* gc.c: New file.
* vector.c: New file.
* mes.c: Remove vector and gc functions, include vector.c, gc.c.
* GNUmakefile (mes.o): Add gc, vector dependencies.
* scaffold/mini-mes.c (eval_apply): Support primitive-load through
read_input_file.
(getenv_, open_input_file, current_input_port,
set_current_input_port force_output, exit_, values, arity_, xassq,
is_p, minus, plus, divide, modulo multiply, logior, ash): New function.
(mes_symbols): Add symbols %gnuc, %mesc.
* scaffold/mini-mes.c (): New functions.
* scaffold/b-0.mes: New file.
* scaffold/t-0.mes: New file.
2017-03-26 19:13:01 +00:00
|
|
|
|
2017-03-22 06:54:45 +00:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ungetc (int c, int fd)
|
|
|
|
{
|
2017-03-23 17:57:06 +00:00
|
|
|
assert (ungetc_char < 2);
|
|
|
|
ungetc_buf[++ungetc_char] = c;
|
2017-03-22 06:54:45 +00:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2017-04-17 00:24:20 +00:00
|
|
|
char const* itoa (int);
|
|
|
|
|
|
|
|
int
|
2017-05-02 21:30:46 +00:00
|
|
|
strncmp (char const* a, char const* b, size_t length)
|
2017-04-17 00:24:20 +00:00
|
|
|
{
|
|
|
|
while (*a && *b && *a == *b && --length) {a++;b++;}
|
|
|
|
return *a - *b;
|
|
|
|
}
|
|
|
|
|
2017-05-23 05:16:08 +00:00
|
|
|
char *
|
2017-04-17 00:24:20 +00:00
|
|
|
getenv (char const* s)
|
|
|
|
{
|
|
|
|
char **p = g_environment;
|
|
|
|
int length = strlen (s);
|
|
|
|
while (*p)
|
|
|
|
{
|
|
|
|
if (!strncmp (s, *p, length) && *(*p + length) == '=') return (*p + length + 1);
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-04-12 19:27:59 +00:00
|
|
|
int
|
|
|
|
isdigit (int c)
|
|
|
|
{
|
|
|
|
return (c>='0') && (c<='9');
|
|
|
|
}
|
2017-04-17 21:29:54 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
atoi (char const *s)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
int sign = 1;
|
|
|
|
if (*s && *s == '-')
|
|
|
|
{
|
|
|
|
sign = -1;
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
while (isdigit (*s))
|
|
|
|
{
|
|
|
|
i *= 10;
|
|
|
|
i += (*s - '0');
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
return i * sign;
|
|
|
|
}
|
2017-05-02 15:00:07 +00:00
|
|
|
|
2017-07-09 07:24:07 +00:00
|
|
|
|
|
|
|
// FIXME: copied from libc-mes.c now
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
2017-05-02 15:00:07 +00:00
|
|
|
int
|
2017-07-09 07:24:07 +00:00
|
|
|
vprintf (char const* format, va_list ap)
|
2017-05-02 15:00:07 +00:00
|
|
|
{
|
|
|
|
char const *p = format;
|
|
|
|
while (*p)
|
|
|
|
if (*p != '%')
|
|
|
|
putchar (*p++);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
p++;
|
|
|
|
char c = *p;
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case '%': {putchar (*p); break;}
|
2017-07-09 07:24:07 +00:00
|
|
|
case 'c': {char c; c = va_arg (ap, char); putchar (c); break;}
|
|
|
|
case 'd': {int d; d = va_arg (ap, int); puts (itoa (d)); break;}
|
|
|
|
case 's': {char *s; s = va_arg (ap, char *); puts (s); break;}
|
2017-05-02 15:00:07 +00:00
|
|
|
default: putchar (*p);
|
|
|
|
}
|
|
|
|
p++;
|
|
|
|
}
|
2017-07-09 07:24:07 +00:00
|
|
|
va_end (ap);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
printf (char const* format, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start (ap, format);
|
|
|
|
int r = vprintf (format, ap);
|
|
|
|
va_end (ap);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
sprintf (char *str, char const* format, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start (ap, format);
|
|
|
|
char const *p = format;
|
|
|
|
while (*p)
|
|
|
|
if (*p != '%')
|
|
|
|
*str++ = *p++;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
p++;
|
|
|
|
char c = *p;
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case '%': {*str++ = *p; break;}
|
|
|
|
case 'c': {char c; c = va_arg (ap, char); *str++ = c; break;}
|
|
|
|
case 'd': {int d; d = va_arg (ap, int); char const *s = itoa (d); while (*s) *str++ = *s++; break;}
|
|
|
|
case 's': {char *s; s = va_arg (ap, char *); while (*s) *str++ = *s++; break;}
|
|
|
|
default: *str++ = *p;
|
|
|
|
}
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
va_end (ap);
|
2017-05-02 15:00:07 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2017-04-12 19:27:59 +00:00
|
|
|
#endif
|
|
|
|
|
2017-04-02 10:29:09 +00:00
|
|
|
char itoa_buf[10];
|
|
|
|
|
|
|
|
char const*
|
|
|
|
itoa (int x)
|
|
|
|
{
|
|
|
|
//static char itoa_buf[10];
|
|
|
|
//char *p = buf+9;
|
|
|
|
char *p = itoa_buf;
|
|
|
|
p += 9;
|
|
|
|
*p-- = 0;
|
|
|
|
|
|
|
|
//int sign = x < 0;
|
|
|
|
int sign;
|
|
|
|
sign = x < 0;
|
|
|
|
if (sign)
|
|
|
|
x = -x;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
*p-- = '0' + (x % 10);
|
|
|
|
x = x / 10;
|
|
|
|
} while (x);
|
|
|
|
|
|
|
|
if (sign)
|
|
|
|
*p-- = '-';
|
|
|
|
|
|
|
|
return p+1;
|
|
|
|
}
|
|
|
|
|
2017-04-12 19:27:59 +00:00
|
|
|
#if POSIX
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <assert.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2017-05-02 21:30:46 +00:00
|
|
|
#endif // POSIX
|
2017-04-12 19:27:59 +00:00
|
|
|
|
mescc: Mini-mes (gcc-compiled) runs read-0.mes.
* module/language/c99/compiler.mes (expr->accu): Add mul.
(test->jump->info): Add le, ge.
(ast->info): Support int and char* initialization at top level.
* module/mes/as-i386.mes (i386:accu*base, i386:Xjump-cz,
i386:Xjump-ncz): New function.
* module/mes/as-i386.scm: Export them.
* doc/examples/t.c (test): Test them.
* module/mes/libc.mes (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
(libc): Export them.
* module/mes/mini-0.mes: Load full reader.
* mlibc.c (ungetc): New function.
(getchar): Support it.
(assert_fail, isdigit): New functions.
* mes.c (list length error lookup_ getchar ungetchar peekchar
peek_byte read_byte unread_byte greater_p less_p): Move functions
needed to run read-0.mes into core.
* doc/examples/mini-mes.c: Likewise.
* lib.c (length, error): Comment-out.
* math.c (greater_p, less_p): Comment-out.
* posix.c: (getchar, ungetchar, peekchar, peek_byte, read_byte,
unread_byte): Comment-out.
* reader.c (lookup_): Comment-out.
2017-03-22 05:39:24 +00:00
|
|
|
int
|
2017-04-12 19:27:59 +00:00
|
|
|
fdputs (char const* s, int fd)
|
2017-04-02 10:29:09 +00:00
|
|
|
{
|
2017-04-12 19:27:59 +00:00
|
|
|
int i = strlen (s);
|
|
|
|
write (fd, s, i);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-05-02 21:30:46 +00:00
|
|
|
#if POSIX
|
|
|
|
|
2017-04-12 19:27:59 +00:00
|
|
|
int
|
|
|
|
fdputc (int c, int fd)
|
|
|
|
{
|
|
|
|
write (fd, (char*)&c, 1);
|
|
|
|
return 0;
|
2017-04-02 10:29:09 +00:00
|
|
|
}
|
2017-04-12 19:27:59 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
putchar (int c)
|
|
|
|
{
|
|
|
|
write (STDOUT, (char*)&c, 1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ungetc_char = -1;
|
|
|
|
char ungetc_buf[2];
|
|
|
|
|
|
|
|
int
|
|
|
|
getchar ()
|
|
|
|
{
|
|
|
|
char c;
|
|
|
|
int i;
|
|
|
|
if (ungetc_char == -1)
|
|
|
|
{
|
|
|
|
int r = read (g_stdin, &c, 1);
|
|
|
|
if (r < 1) return -1;
|
|
|
|
i = c;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
i = ungetc_buf[ungetc_char--];
|
|
|
|
|
|
|
|
if (i < 0) i += 256;
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
fdungetc (int c, int fd)
|
|
|
|
{
|
|
|
|
assert (ungetc_char < 2);
|
|
|
|
ungetc_buf[++ungetc_char] = c;
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2017-05-02 21:30:46 +00:00
|
|
|
#endif // POSIX
|
2017-05-21 20:25:02 +00:00
|
|
|
|
|
|
|
#if __GNUC__ && !POSIX
|
2017-07-27 21:44:22 +00:00
|
|
|
|
2017-05-21 20:25:02 +00:00
|
|
|
void
|
|
|
|
_start ()
|
|
|
|
{
|
|
|
|
// char **;
|
|
|
|
asm (
|
|
|
|
"mov %%ebp,%%eax\n\t"
|
|
|
|
"addl $4,%%eax\n\t"
|
|
|
|
"movzbl (%%eax),%%eax\n\t"
|
|
|
|
"addl $3,%%eax\n\t"
|
|
|
|
"shl $2,%%eax\n\t"
|
|
|
|
"add %%ebp,%%eax\n\t"
|
|
|
|
"movl %%eax,%0\n\t"
|
|
|
|
: "=g_environment" (g_environment)
|
|
|
|
: //no inputs ""
|
|
|
|
);
|
|
|
|
int r;
|
|
|
|
asm (
|
|
|
|
"mov %%ebp,%%eax\n\t"
|
|
|
|
"addl $8,%%eax\n\t"
|
|
|
|
"push %%eax\n\t"
|
|
|
|
|
|
|
|
"mov %%ebp,%%eax\n\t"
|
|
|
|
"addl $4,%%eax\n\t"
|
|
|
|
"movzbl (%%eax),%%eax\n\t"
|
|
|
|
"push %%eax\n\t"
|
|
|
|
|
|
|
|
"call main\n\t"
|
|
|
|
"movl %%eax,%0\n\t"
|
|
|
|
: "=r" (r)
|
|
|
|
: //no inputs ""
|
|
|
|
);
|
|
|
|
exit (r);
|
|
|
|
}
|
2017-07-27 21:44:22 +00:00
|
|
|
|
2017-05-21 20:25:02 +00:00
|
|
|
#endif // __GNUC__ && !POSIX
|