| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
tcctest.c with tcc.
|
| |
|
|
|
|
|
| |
Some symbol (such as __gmon_start__ but this one does not matter to tcc)
can have both a R_386_GOT32 and R_386_PLT32 relocation. It is thus not
enough to test if a GOT reloc was already done when deciding whether to
return early from put_got_entry.
|
| |
|
|
| |
On x86 tcc call to function in libtcc1.a to implement va_* functions.
|
| |
|
|
|
| |
* Adapt tests2 Makefile to support testing tcc error reporting
* Add test for previous commit
|
| |
|
|
|
|
| |
For ARM target, tcc uses the soft float ABI when not asked to use hard
float ABI. This means machine without a VFP co-processor generate code
that they cannot run. This commit add a warning for such cases.
|
| | |
|
| |
|
|
|
| |
This makes int char c; and struct {} int c; generate an error. Thanks
Mobi Phil for reporting.
|
| |
|
|
|
|
|
| |
When bound check is enabled, tcc tries to relocate a call to
__bound_init in _init. This means that relocation (in tcc_add_bcheck)
must be done after libtcc1.a (which countains __bound_init) is loaded
but before crtn.o is loaded as this finalize _init.
|
| |
|
|
| |
Forgot to give the parameters to syscall function, doh!
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
| |
Prior to this commit runtime library was compiled according to the host
because of the macro used to detec what architecture to choose. This
commit fixes this by using the TARGET_* macro instead.
|
| | |
|
| |
|
|
| |
Reported-by: Carlos Montiers <cmontiers@gmail.com>
|
| |
|
|
| |
compiling some packages from Gentoo's portage
|
| |
|
|
|
|
| |
Call fill_got_entry unconditionally from fill_got so as to avoid
warnings on !x86-64 architectures. This can be done since this code path
is only followed by x86-64 architecture anyway.
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
| |
This fixes commit b0b5165d1668373c5d7b7933da599426f33e723b for x86-64
targets.
|
| |
|
|
|
|
|
|
| |
When checking for exact compatibility between types (such as in
__builtin_types_compatible_p) consider the case of default signedness to
be incompatible with both of the explicit signedness for char. That is,
char is incompatible with signed char *and* unsigned char, no matter
what the default signedness for char is.
|
| | |
|
| | |
|
| |
|
|
|
| |
Introduce for_each_elem to browse relocation entries and symbols of a
section.
|
| |
|
|
|
| |
Change rounding mode of long long to float conversion to nearest in
libtcc1.
|
| | |
|
| |
|
|
|
| |
Fix float to long long conversion on ARM when the result would fit in an
int.
|
| |
|
|
|
|
|
| |
Result of float to unsigned integer conversion is undefined if float is
negative. This commit take the absolute value of the float before doing
the conversion to unsigned integer and add more float to integer
conversion test.
|
| | |
|
| |
|
|
|
| |
On ARM, TOK_memset is executed via __aeabi_memset which reverse the
order of the last two parameters.
|
| | |
|
| | |
|
| |
|
|
|
|
|
| |
This improves commit 5cbe03b9c47e676e045b4978c384087433bd6042 by
avoiding a double transfer when the default float ABI is already softfp.
It's also more clean by expliciting that the ABI is simply changed for
runtime ABI functions.
|
| |
|
|
| |
This reverts commit 3cbc7a2dccf13b96c572623582d6c54394f98c36.
|
| |
|
|
| |
This reverts commit b5b82df3e388e2565ee424994e3d5041fbf91161.
|
| |
|
|
| |
This reverts commit 8635939b8d902244679cb1a024190fa37a4fed10.
|
| | |
|
| | |
|
| |
|
|
|
| |
Introduce for_each_elem to browse relocation entries and symbols of a
section.
|
| |
|
|
| |
Give ARM assembly mnemonic of PLT entries in put_got_entry
|
| |
|
|
|
|
|
| |
- remove debug printf and commented out code
- remove C++-like comments
- remove whitespace at end of lines
- replace tabs by spaces
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
| |
EABI functions to convert an int to a double register take the integer
value in core registers and also give the result in core registers.
It is thus necessary to move the result back to VFP register after the
function call. This only affected integer to double conversion because
integer to float conversion used a VFP instruction to do the conversion
and this obviously left the result in VFP register. Note that the
behavior is left untouched for !EABI as the correct behavior in this
case is unknown to the author of this patch.
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Thanks to Kirill "tcc -b itself" should work now
(was removed in d5f4df09ff4a84dda5b03525285f03be7723376b)
Also:
- tests/Makefile:
- fix spurious --I from 767410b8750b45d63805b45ca1a2cf34d7cb4923
- lookup boundtest.c via VPATH (for out-of-tree build)
- test[123]b?: fail on diff error
- Windows: test3 now works (from e31579b0769e1f9c0947d12e83316d1149307b1a)
- abitest: a libtcc.a made by gcc is not usable for tcc
on WIndows - using source instead (libtcc.c)
- tccpe:
- avoid gcc warning (x86_64)
|
| | |
|