mirror of
https://github.com/mirror/tinycc.git
synced 2025-02-26 08:00:09 +08:00
inline asm: accept concatenated strings in constraints
This really should be handled implicitly in the preprocessor, but for now this is enough.
This commit is contained in:
parent
f9423ff3fa
commit
bbce31552e
1
tcc.h
1
tcc.h
@ -1283,6 +1283,7 @@ ST_FUNC int type_size(CType *type, int *a);
|
||||
ST_FUNC void mk_pointer(CType *type);
|
||||
ST_FUNC void vstore(void);
|
||||
ST_FUNC void inc(int post, int c);
|
||||
ST_FUNC void parse_mult_str (CString *astr, const char *msg);
|
||||
ST_FUNC void parse_asm_str(CString *astr);
|
||||
ST_FUNC int lvalue_type(int t);
|
||||
ST_FUNC void indir(void);
|
||||
|
10
tccasm.c
10
tccasm.c
@ -1079,6 +1079,7 @@ static void parse_asm_operands(ASMOperand *operands, int *nb_operands_ptr,
|
||||
if (tok != ':') {
|
||||
nb_operands = *nb_operands_ptr;
|
||||
for(;;) {
|
||||
CString astr;
|
||||
if (nb_operands >= MAX_ASM_OPERANDS)
|
||||
tcc_error("too many asm operands");
|
||||
op = &operands[nb_operands++];
|
||||
@ -1091,11 +1092,10 @@ static void parse_asm_operands(ASMOperand *operands, int *nb_operands_ptr,
|
||||
next();
|
||||
skip(']');
|
||||
}
|
||||
if (tok != TOK_STR)
|
||||
expect("string constant");
|
||||
op->constraint = tcc_malloc(tokc.str.size);
|
||||
strcpy(op->constraint, tokc.str.data);
|
||||
next();
|
||||
parse_mult_str(&astr, "string constant");
|
||||
op->constraint = tcc_malloc(astr.size);
|
||||
strcpy(op->constraint, astr.data);
|
||||
cstr_free(&astr);
|
||||
skip('(');
|
||||
gexpr();
|
||||
if (is_output) {
|
||||
|
2
tccgen.c
2
tccgen.c
@ -2982,7 +2982,7 @@ ST_FUNC void inc(int post, int c)
|
||||
vpop(); /* if post op, return saved value */
|
||||
}
|
||||
|
||||
static void parse_mult_str (CString *astr, const char *msg)
|
||||
ST_FUNC void parse_mult_str (CString *astr, const char *msg)
|
||||
{
|
||||
/* read the string */
|
||||
if (tok != TOK_STR)
|
||||
|
@ -2544,7 +2544,7 @@ static __inline__ __const__ unsigned int swab32(unsigned int x)
|
||||
__asm__("xchgb %b0,%h0\n\t" /* swap lower bytes */
|
||||
"rorl $16,%0\n\t" /* swap words */
|
||||
"xchgb %b0,%h0" /* swap higher bytes */
|
||||
:"=q" (x)
|
||||
:"=" "q" (x)
|
||||
: "0" (x));
|
||||
return x;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user