Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6438 → Rev 6439

/programs/develop/ktcc/trunk/libc/include/kos32sys1.h
30,7 → 30,8
 
typedef unsigned int color_t;
 
typedef union
 
typedef union __attribute__((packed)) pos_t
{
uint32_t val;
struct
37,10 → 38,11
{
short x;
short y;
}xy;
} __attribute__((packed)) pos_t ;
};
} pos_t;
 
typedef union
 
typedef union __attribute__((packed)) oskey_t
{
uint32_t val;
struct
48,8 → 50,8
uint8_t state;
uint8_t code;
uint16_t ctrl_key;
}in;
}__attribute__((packed)) oskey_t ;
};
} oskey_t;
 
typedef struct
{
154,6 → 156,7
};
 
/*
// TinyC dont support aliasing of static inline funcs
static inline void BeginDraw(void) __attribute__ ((alias ("begin_draw")));
static inline void EndDraw(void) __attribute__ ((alias ("end_draw")));
static inline void DrawWindow(int x, int y, int w, int h, const char *name,
/programs/develop/ktcc/trunk/libctest/readme.txt
1,7 → 1,7
most test adapted from "musl-libctest-master" project
some taken from newlib
 
Status or tests
Status or libc tests
 
---NOT TESTED---
no library fns realized
/programs/develop/ktcc/trunk/source/config.h
4,5 → 4,5
#define TCC_TARGET_I386
#define ONE_SOURCE
 
#define COMMIT_4ad186c5ef61_IS_FIXED
//#define COMMIT_4ad186c5ef61_IS_FIXED
 
/programs/develop/ktcc/trunk/source/readme_kos32.txt
21,17 → 21,15
-no symbols (mapfile) for debug, see howtodebugtcc
 
 
-how to use packed attribute see test82
-alias attribute wont work
-unnamed structs in union may lead to compiler internal error
-tcc: error: undefined symbol '__tcc_cvt_ftol'
--in config.h - used workaround (#define COMMIT_4ad186c5ef61_IS_FIXED
--but this is precision bugfix - see \tests\tests2\000_cvttoftol.c
-using __attribute__((packed)) see test82. need naming struct twice as in kos32sys1.h
-using __attribute__ ((alias xxx)) restricted only for non "static inline" functions
-erroneous or "non TCC" member using in nested structs or unions can lead to compiler internal error
-not working: default search path are ./include ./lib from executable
--under KOS need to use -Bpath_to_ktcc
--start.o not found using -B (kos) - put near your.c file
-if static var sized more than 14096+ -> crash compiled .exe (kos)
---^ stack size set in menuet header at compile time tccmeos.c:177 about 4k
-bench timing coarse (0s or 1s), no usec in newlib gettimeofday. OK
 
Tests status:
asmtest +
55,19 → 53,17
 
libc:
-no "finished" in title of console program after exit console - use con_exit()
-bench timing error (0s or 1s)
-minimal memory allocator
-used system memory allocator (4096 bytes minimum)
 
 
libc not complete. overall status:
no files:
assert.h
errno.h - in stdio
limits.h
locale.h
setjmp.h
signall.h
time.h
time.h - can use get_tick_count()/100 from kos32sys1.h
wchar.h
wctype.h
 
82,14 → 78,12
fmod
 
HUGE_VAL
NAN
 
 
stdio.h:
FOPEN_MAX
L_tmpnam
TMP_MAX
Operations on files: none http://www.cplusplus.com/reference/cstdio/
remove
rename
tmpfile
tmpnam
freopen
setbuf
setvbuf
114,4 → 108,3
strxfrm
 
 
-all files in libc/kolibrisys catalog are stdcall in header, but in asm cdecl