kservice.c 35.0 KB
Newer Older
1
/*
mysterywolf's avatar
mysterywolf 已提交
2
 * Copyright (c) 2006-2021, RT-Thread Development Team
B
Bernard Xiong 已提交
3
 *
4
 * SPDX-License-Identifier: Apache-2.0
5 6 7 8 9 10
 *
 * Change Logs:
 * Date           Author       Notes
 * 2006-03-16     Bernard      the first version
 * 2006-05-25     Bernard      rewrite vsprintf
 * 2006-08-10     Bernard      add rt_show_version
B
bernard.xiong 已提交
11 12
 * 2010-03-17     Bernard      remove rt_strlcpy function
 *                             fix gcc compiling issue.
13
 * 2010-04-15     Bernard      remove weak definition on ICCM16C compiler
14
 * 2012-07-18     Arda         add the alignment display for signed integer
B
Bernard Xiong 已提交
15
 * 2012-11-23     Bernard      fix IAR compiler error.
16
 * 2012-12-22     Bernard      fix rt_kprintf issue, which found by Grissiom.
B
Bernard Xiong 已提交
17
 * 2013-06-24     Bernard      remove rt_kprintf if RT_USING_CONSOLE is not defined.
18
 * 2013-09-24     aozima       make sure the device is in STREAM mode when used by rt_kprintf.
19
 * 2015-07-06     Bernard      Add rt_assert_handler routine.
mysterywolf's avatar
mysterywolf 已提交
20
 * 2021-02-28     Meco Man     add RT_KSERVICE_USING_STDLIB
21 22 23 24 25
 */

#include <rtthread.h>
#include <rthw.h>

26 27
#ifdef RT_USING_MODULE
#include <dlmodule.h>
28
#endif /* RT_USING_MODULE */
29

30 31 32
/* use precision */
#define RT_PRINTF_PRECISION

33 34 35
/**
 * @addtogroup KernelService
 */
D
dzzxzz 已提交
36

D
dogandog 已提交
37
/**@{*/
38

D
dzzxzz 已提交
39
/* global errno in RT-Thread */
B
bernard 已提交
40
static volatile int __rt_errno;
41

42
#if defined(RT_USING_DEVICE) && defined(RT_USING_CONSOLE)
B
bernard.xiong 已提交
43
static rt_device_t _console_device = RT_NULL;
44
#endif
45

S
Sherman 已提交
46 47
/**
 * This function gets the global errno for the current thread.
B
bernard.xiong 已提交
48
 *
49 50 51 52
 * @return errno
 */
rt_err_t rt_get_errno(void)
{
53
    rt_thread_t tid;
B
bernard.xiong 已提交
54

55 56 57
    if (rt_interrupt_get_nest() != 0)
    {
        /* it's in interrupt context */
B
bernard 已提交
58
        return __rt_errno;
59
    }
60

61 62
    tid = rt_thread_self();
    if (tid == RT_NULL)
B
bernard 已提交
63
        return __rt_errno;
B
bernard.xiong 已提交
64

65
    return tid->error;
66
}
67
RTM_EXPORT(rt_get_errno);
68

S
Sherman 已提交
69 70
/**
 * This function sets the global errno for the current thread.
71
 *
S
Sherman 已提交
72
 * @param error is the errno shall be set.
73 74 75
 */
void rt_set_errno(rt_err_t error)
{
76
    rt_thread_t tid;
B
bernard.xiong 已提交
77

78 79 80
    if (rt_interrupt_get_nest() != 0)
    {
        /* it's in interrupt context */
B
bernard 已提交
81
        __rt_errno = error;
D
dzzxzz 已提交
82

83 84
        return;
    }
85

86 87 88
    tid = rt_thread_self();
    if (tid == RT_NULL)
    {
B
bernard 已提交
89
        __rt_errno = error;
B
Bernard Xiong 已提交
90

91 92
        return;
    }
B
bernard.xiong 已提交
93

94
    tid->error = error;
95
}
96
RTM_EXPORT(rt_set_errno);
97

98
/**
S
Sherman 已提交
99
 * This function returns the address of the current thread errno.
100
 *
S
Sherman 已提交
101
 * @return The errno address.
102 103 104
 */
int *_rt_errno(void)
{
105
    rt_thread_t tid;
B
Bernard Xiong 已提交
106

107
    if (rt_interrupt_get_nest() != 0)
B
bernard 已提交
108
        return (int *)&__rt_errno;
109

110 111
    tid = rt_thread_self();
    if (tid != RT_NULL)
112
        return (int *) & (tid->error);
113

B
bernard 已提交
114
    return (int *)&__rt_errno;
115
}
116
RTM_EXPORT(_rt_errno);
117

118
/**
S
Sherman 已提交
119 120 121 122 123 124
 * This function will set the content of memory to specified value.
 *
 * @param  s is the address of source memory, point to the memory block to be filled.
 *
 * @param  c is the value to be set. The value is passed in int form, but the function
 *         uses the unsigned character form of the value when filling the memory block.
125
 *
S
Sherman 已提交
126
 * @param  count number of bytes to be set.
127
 *
S
Sherman 已提交
128
 * @return The address of source memory.
129
 */
130
RT_WEAK void *rt_memset(void *s, int c, rt_ubase_t count)
131
{
mysterywolf's avatar
mysterywolf 已提交
132
#ifdef RT_KSERVICE_USING_TINY_SIZE
133
    char *xs = (char *)s;
134

135 136
    while (count--)
        *xs++ = c;
137

138
    return s;
139
#else
140 141
#define LBLOCKSIZE      (sizeof(long))
#define UNALIGNED(X)    ((long)X & (LBLOCKSIZE - 1))
D
dzzxzz 已提交
142
#define TOO_SMALL(LEN)  ((LEN) < LBLOCKSIZE)
143

144
    unsigned int i;
145
    char *m = (char *)s;
146 147 148 149
    unsigned long buffer;
    unsigned long *aligned_addr;
    unsigned int d = c & 0xff;  /* To avoid sign extension, copy C to an
                                unsigned variable.  */
150 151 152

    if (!TOO_SMALL(count) && !UNALIGNED(s))
    {
153
        /* If we get this far, we know that count is large and s is word-aligned. */
154
        aligned_addr = (unsigned long *)s;
155

156
        /* Store d into each char sized location in buffer so that
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
         * we can set large blocks quickly.
         */
        if (LBLOCKSIZE == 4)
        {
            buffer = (d << 8) | d;
            buffer |= (buffer << 16);
        }
        else
        {
            buffer = 0;
            for (i = 0; i < LBLOCKSIZE; i ++)
                buffer = (buffer << 8) | d;
        }

        while (count >= LBLOCKSIZE * 4)
        {
            *aligned_addr++ = buffer;
            *aligned_addr++ = buffer;
            *aligned_addr++ = buffer;
            *aligned_addr++ = buffer;
            count -= 4 * LBLOCKSIZE;
        }

        while (count >= LBLOCKSIZE)
        {
            *aligned_addr++ = buffer;
            count -= LBLOCKSIZE;
        }

        /* Pick up the remainder with a bytewise loop. */
        m = (char *)aligned_addr;
    }

    while (count--)
    {
        *m++ = (char)d;
    }

    return s;
196 197 198 199

#undef LBLOCKSIZE
#undef UNALIGNED
#undef TOO_SMALL
200
#endif /* RT_KSERVICE_USING_TINY_SIZE */
201
}
202
RTM_EXPORT(rt_memset);
203

204
#ifndef RT_USING_ASM_MEMCPY
205
/**
S
Sherman 已提交
206
 * This function will copy memory content from source address to destination address.
207
 *
S
Sherman 已提交
208
 * @param  dst is the address of destination memory, points to the copied content.
209
 *
S
Sherman 已提交
210 211 212 213 214
 * @param  src  is the address of source memory, pointing to the data source to be copied.
 *
 * @param  count is the copied length.
 *
 * @return The address of destination memory
215
 */
216
void *rt_memcpy(void *dst, const void *src, rt_ubase_t count)
217
{
mysterywolf's avatar
mysterywolf 已提交
218
#ifdef RT_KSERVICE_USING_TINY_SIZE
219
    char *tmp = (char *)dst, *s = (char *)src;
220
    rt_ubase_t len;
E
emlslxl 已提交
221 222

    if (tmp <= s || tmp > (s + count))
223 224 225 226 227 228
    {
        while (count--)
            *tmp ++ = *s ++;
    }
    else
    {
E
emlslxl 已提交
229 230
        for (len = count; len > 0; len --)
            tmp[len - 1] = s[len - 1];
231
    }
232

E
emlslxl 已提交
233
    return dst;
234 235
#else

236 237 238 239
#define UNALIGNED(X, Y) \
    (((long)X & (sizeof (long) - 1)) | ((long)Y & (sizeof (long) - 1)))
#define BIGBLOCKSIZE    (sizeof (long) << 2)
#define LITTLEBLOCKSIZE (sizeof (long))
240 241
#define TOO_SMALL(LEN)  ((LEN) < BIGBLOCKSIZE)

242 243
    char *dst_ptr = (char *)dst;
    char *src_ptr = (char *)src;
244 245
    long *aligned_dst;
    long *aligned_src;
246 247 248 249 250 251
    int len = count;

    /* If the size is small, or either SRC or DST is unaligned,
    then punt into the byte copy loop.  This should be rare. */
    if (!TOO_SMALL(len) && !UNALIGNED(src_ptr, dst_ptr))
    {
252 253
        aligned_dst = (long *)dst_ptr;
        aligned_src = (long *)src_ptr;
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280

        /* Copy 4X long words at a time if possible. */
        while (len >= BIGBLOCKSIZE)
        {
            *aligned_dst++ = *aligned_src++;
            *aligned_dst++ = *aligned_src++;
            *aligned_dst++ = *aligned_src++;
            *aligned_dst++ = *aligned_src++;
            len -= BIGBLOCKSIZE;
        }

        /* Copy one long word at a time if possible. */
        while (len >= LITTLEBLOCKSIZE)
        {
            *aligned_dst++ = *aligned_src++;
            len -= LITTLEBLOCKSIZE;
        }

        /* Pick up any residual with a byte copier. */
        dst_ptr = (char *)aligned_dst;
        src_ptr = (char *)aligned_src;
    }

    while (len--)
        *dst_ptr++ = *src_ptr++;

    return dst;
281 282 283 284
#undef UNALIGNED
#undef BIGBLOCKSIZE
#undef LITTLEBLOCKSIZE
#undef TOO_SMALL
285
#endif /* RT_KSERVICE_USING_TINY_SIZE */
286
}
287
RTM_EXPORT(rt_memcpy);
288
#endif /* RT_USING_ASM_MEMCPY */
289

mysterywolf's avatar
mysterywolf 已提交
290
#ifndef RT_KSERVICE_USING_STDLIB
mysterywolf's avatar
mysterywolf 已提交
291

292 293
/**
 * This function will move memory content from source address to destination
S
Sherman 已提交
294 295 296
 * address. If the destination memory does not overlap with the source memory,
 * the function is the same as memcpy().
 *
L
liukangcc 已提交
297
 * @param  dest is the address of destination memory, points to the copied content.
298
 *
S
Sherman 已提交
299
 * @param  src is the address of source memory, point to the data source to be copied.
300
 *
L
liukangcc 已提交
301
 * @param  n is the copied length.
S
Sherman 已提交
302 303
 *
 * @return The address of destination memory.
304
 */
D
dzzxzz 已提交
305
void *rt_memmove(void *dest, const void *src, rt_ubase_t n)
306
{
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
    char *tmp = (char *)dest, *s = (char *)src;

    if (s < tmp && tmp < s + n)
    {
        tmp += n;
        s += n;

        while (n--)
            *(--tmp) = *(--s);
    }
    else
    {
        while (n--)
            *tmp++ = *s++;
    }

    return dest;
324
}
325
RTM_EXPORT(rt_memmove);
326 327

/**
S
Sherman 已提交
328 329 330 331 332
 * This function will compare two areas of memory.
 *
 * @param  cs is a block of memory.
 *
 * @param  ct is another block of memory.
D
dzzxzz 已提交
333
 *
S
Sherman 已提交
334
 * @param  count is the size of the area.
D
dzzxzz 已提交
335
 *
S
Sherman 已提交
336 337 338 339
 * @return Compare the results:
 *         If the result < 0, cs is smaller than ct.
 *         If the result > 0, cs is greater than ct.
 *         If the result = 0, cs is equal to ct.
340
 */
341
RT_WEAK rt_int32_t rt_memcmp(const void *cs, const void *ct, rt_ubase_t count)
342
{
343 344
    const unsigned char *su1, *su2;
    int res = 0;
345

346
    for (su1 = (const unsigned char *)cs, su2 = (const unsigned char *)ct; 0 < count; ++su1, ++su2, count--)
347 348
        if ((res = *su1 - *su2) != 0)
            break;
D
dzzxzz 已提交
349

350
    return res;
351
}
352
RTM_EXPORT(rt_memcmp);
353 354

/**
S
Sherman 已提交
355 356
 * This function will return the first occurrence of a string, without the
 * terminator '\0'.
357
 *
S
Sherman 已提交
358
 * @param  s1 is the source string.
359
 *
S
Sherman 已提交
360 361 362
 * @param  s2 is the find string.
 *
 * @return The first occurrence of a s2 in s1, or RT_NULL if no found.
363
 */
D
dzzxzz 已提交
364
char *rt_strstr(const char *s1, const char *s2)
365
{
366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
    int l1, l2;

    l2 = rt_strlen(s2);
    if (!l2)
        return (char *)s1;
    l1 = rt_strlen(s1);
    while (l1 >= l2)
    {
        l1 --;
        if (!rt_memcmp(s1, s2, l2))
            return (char *)s1;
        s1 ++;
    }

    return RT_NULL;
381
}
382
RTM_EXPORT(rt_strstr);
383 384 385 386

/**
 * This function will compare two strings while ignoring differences in case
 *
S
Sherman 已提交
387 388 389
 * @param  a is the string to be compared.
 *
 * @param  b is the string to be compared.
390
 *
S
Sherman 已提交
391 392 393 394
 * @return Compare the results:
 *         If the result < 0, a is smaller than a.
 *         If the result > 0, a is greater than a.
 *         If the result = 0, a is equal to a.
395
 */
396
rt_int32_t rt_strcasecmp(const char *a, const char *b)
397
{
398 399 400 401 402 403 404 405 406 407 408 409 410 411
    int ca, cb;

    do
    {
        ca = *a++ & 0xff;
        cb = *b++ & 0xff;
        if (ca >= 'A' && ca <= 'Z')
            ca += 'a' - 'A';
        if (cb >= 'A' && cb <= 'Z')
            cb += 'a' - 'A';
    }
    while (ca == cb && ca != '\0');

    return ca - cb;
412
}
413
RTM_EXPORT(rt_strcasecmp);
414 415 416 417

/**
 * This function will copy string no more than n bytes.
 *
S
Sherman 已提交
418 419 420
 * @param  dst points to the address used to store the copied content.
 *
 * @param  src is the string to be copied.
421
 *
S
Sherman 已提交
422 423 424
 * @param  n is the maximum copied length.
 *
 * @return The address where the copied content is stored.
425
 */
426
char *rt_strncpy(char *dst, const char *src, rt_ubase_t n)
427
{
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445
    if (n != 0)
    {
        char *d = dst;
        const char *s = src;

        do
        {
            if ((*d++ = *s++) == 0)
            {
                /* NUL pad the remaining n-1 bytes */
                while (--n != 0)
                    *d++ = 0;
                break;
            }
        } while (--n != 0);
    }

    return (dst);
446
}
447
RTM_EXPORT(rt_strncpy);
448 449

/**
S
Sherman 已提交
450 451 452 453 454
 * This function will compare two strings with specified maximum length.
 *
 * @param  cs is the string to be compared.
 *
 * @param  ct is the string to be compared.
455
 *
S
Sherman 已提交
456
 * @param  count is the maximum compare length.
457
 *
S
Sherman 已提交
458 459 460 461
 * @return Compare the results:
 *         If the result < 0, cs is smaller than ct.
 *         If the result > 0, cs is greater than ct.
 *         If the result = 0, cs is equal to ct.
462
 */
463
rt_int32_t rt_strncmp(const char *cs, const char *ct, rt_ubase_t count)
464
{
465
    register signed char __res = 0;
466

467 468 469 470 471 472
    while (count)
    {
        if ((__res = *cs - *ct++) != 0 || !*cs++)
            break;
        count --;
    }
473

474
    return __res;
475
}
476
RTM_EXPORT(rt_strncmp);
477

478
/**
S
Sherman 已提交
479
 * This function will compare two strings without specified length.
480
 *
S
Sherman 已提交
481
 * @param  cs is the string to be compared.
482
 *
S
Sherman 已提交
483 484 485 486 487 488
 * @param  ct is the string to be compared.
 *
 * @return Compare the results:
 *         If the result < 0, cs is smaller than ct.
 *         If the result > 0, cs is greater than ct.
 *         If the result = 0, cs is equal to ct.
489
 */
490
rt_int32_t rt_strcmp(const char *cs, const char *ct)
491
{
492
    while (*cs && *cs == *ct)
mysterywolf's avatar
mysterywolf 已提交
493
    {
494 495 496
        cs++;
        ct++;
    }
D
dzzxzz 已提交
497

498
    return (*cs - *ct);
499
}
500
RTM_EXPORT(rt_strcmp);
501

502
/**
mysterywolf's avatar
mysterywolf 已提交
503 504
 * This function will return the length of a string, which terminate will
 * null character.
S
Sherman 已提交
505
 *
mysterywolf's avatar
mysterywolf 已提交
506
 * @param  s is the string
S
Sherman 已提交
507 508
 *
 * @return The length of string.
509
 */
mysterywolf's avatar
mysterywolf 已提交
510
rt_size_t rt_strlen(const char *s)
511 512 513
{
    const char *sc;

mysterywolf's avatar
mysterywolf 已提交
514
    for (sc = s; *sc != '\0'; ++sc) /* nothing */
515
        ;
516

517 518
    return sc - s;
}
mysterywolf's avatar
mysterywolf 已提交
519
RTM_EXPORT(rt_strlen);
520

mysterywolf's avatar
mysterywolf 已提交
521 522 523
#endif /* RT_KSERVICE_USING_STDLIB */

#if !defined(RT_KSERVICE_USING_STDLIB) || defined(__ARMCC_VERSION)
524
/**
mysterywolf's avatar
mysterywolf 已提交
525 526 527 528 529
 * The  strnlen()  function  returns the number of characters in the
 * string pointed to by s, excluding the terminating null byte ('\0'),
 * but at most maxlen.  In doing this, strnlen() looks only at the
 * first maxlen characters in the string pointed to by s and never
 * beyond s+maxlen.
530
 *
mysterywolf's avatar
mysterywolf 已提交
531 532 533
 * @param  s is the string.
 *
 * @param  maxlen is the max size.
534
 *
S
Sherman 已提交
535
 * @return The length of string.
536
 */
mysterywolf's avatar
mysterywolf 已提交
537
rt_size_t rt_strnlen(const char *s, rt_ubase_t maxlen)
538
{
539
    const char *sc;
540

mysterywolf's avatar
mysterywolf 已提交
541
    for (sc = s; *sc != '\0' && (rt_ubase_t)(sc - s) < maxlen; ++sc) /* nothing */
542
        ;
543

544
    return sc - s;
545
}
mysterywolf's avatar
mysterywolf 已提交
546 547
RTM_EXPORT(rt_strnlen);
#ifdef __ARMCC_VERSION
M
mazhiyuan 已提交
548
rt_size_t strnlen(const char *s, rt_size_t maxlen) __attribute__((alias("rt_strnlen")));
mysterywolf's avatar
mysterywolf 已提交
549 550
#endif /* __ARMCC_VERSION */
#endif /* !defined(RT_KSERVICE_USING_STDLIB) || defined(__ARMCC_VERSION) */
mysterywolf's avatar
mysterywolf 已提交
551

552 553 554 555
#ifdef RT_USING_HEAP
/**
 * This function will duplicate a string.
 *
S
Sherman 已提交
556
 * @param  s is the string to be duplicated.
557
 *
S
Sherman 已提交
558
 * @return The string address of the copy.
559 560 561
 */
char *rt_strdup(const char *s)
{
562 563
    rt_size_t len = rt_strlen(s) + 1;
    char *tmp = (char *)rt_malloc(len);
564

565 566
    if (!tmp)
        return RT_NULL;
567

568
    rt_memcpy(tmp, s, len);
D
dzzxzz 已提交
569

570
    return tmp;
571
}
572
RTM_EXPORT(rt_strdup);
573
#ifdef __ARMCC_VERSION
B
Bernard Xiong 已提交
574
char *strdup(const char *s) __attribute__((alias("rt_strdup")));
mysterywolf's avatar
mysterywolf 已提交
575
#endif /* __ARMCC_VERSION */
576
#endif /* RT_USING_HEAP */
577 578 579 580

/**
 * This function will show the version of rt-thread rtos
 */
D
dzzxzz 已提交
581
void rt_show_version(void)
582
{
583 584
    rt_kprintf("\n \\ | /\n");
    rt_kprintf("- RT -     Thread Operating System\n");
585 586
    rt_kprintf(" / | \\     %d.%d.%d build %s %s\n",
               RT_VERSION, RT_SUBVERSION, RT_REVISION, __DATE__, __TIME__);
587
    rt_kprintf(" 2006 - 2021 Copyright by rt-thread team\n");
588
}
589
RTM_EXPORT(rt_show_version);
590 591

/* private function */
592
#define _ISDIGIT(c)  ((unsigned)((c) - '0') < 10)
593

H
HubretXie 已提交
594
#ifdef RT_PRINTF_LONGLONG
S
Sherman 已提交
595 596 597
/**
 * This function will duplicate a string.
 *
L
liukangcc 已提交
598 599 600
 * @param  n is the string to be duplicated.
 *
 * @param  base is support divide instructions value.
S
Sherman 已提交
601
 *
L
liukangcc 已提交
602
 * @return the duplicated string pointer.
S
Sherman 已提交
603
 */
H
HubretXie 已提交
604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
rt_inline int divide(long long *n, int base)
{
    int res;

    /* optimized for processor which does not support divide instructions. */
    if (base == 10)
    {
        res = (int)(((unsigned long long)*n) % 10U);
        *n = (long long)(((unsigned long long)*n) / 10U);
    }
    else
    {
        res = (int)(((unsigned long long)*n) % 16U);
        *n = (long long)(((unsigned long long)*n) / 16U);
    }

    return res;
}
#else
623
rt_inline int divide(long *n, int base)
624
{
625
    int res;
626 627 628 629

    /* optimized for processor which does not support divide instructions. */
    if (base == 10)
    {
630 631
        res = (int)(((unsigned long)*n) % 10U);
        *n = (long)(((unsigned long)*n) / 10U);
632 633 634
    }
    else
    {
635 636
        res = (int)(((unsigned long)*n) % 16U);
        *n = (long)(((unsigned long)*n) / 16U);
637 638 639
    }

    return res;
640
}
641
#endif /* RT_PRINTF_LONGLONG */
642 643 644

rt_inline int skip_atoi(const char **s)
{
645
    register int i = 0;
646
    while (_ISDIGIT(**s))
647
        i = i * 10 + *((*s)++) - '0';
648

649
    return i;
650 651
}

652 653 654 655 656 657 658
#define ZEROPAD     (1 << 0)    /* pad with zero */
#define SIGN        (1 << 1)    /* unsigned/signed long */
#define PLUS        (1 << 2)    /* show plus */
#define SPACE       (1 << 3)    /* space if plus */
#define LEFT        (1 << 4)    /* left justified */
#define SPECIAL     (1 << 5)    /* 0x */
#define LARGE       (1 << 6)    /* use 'ABCDEF' instead of 'abcdef' */
659 660

#ifdef RT_PRINTF_PRECISION
661 662
static char *print_number(char *buf,
                          char *end,
H
HubretXie 已提交
663 664 665
#ifdef RT_PRINTF_LONGLONG
                          long long  num,
#else
666
                          long  num,
667
#endif /* RT_PRINTF_LONGLONG */
668 669 670 671
                          int   base,
                          int   s,
                          int   precision,
                          int   type)
672
#else
673 674
static char *print_number(char *buf,
                          char *end,
H
HubretXie 已提交
675 676 677
#ifdef RT_PRINTF_LONGLONG
                          long long  num,
#else
678
                          long  num,
679
#endif /* RT_PRINTF_LONGLONG */
680 681 682
                          int   base,
                          int   s,
                          int   type)
683
#endif /* RT_PRINTF_PRECISION */
684
{
685
    char c, sign;
686
#ifdef RT_PRINTF_LONGLONG
687
    char tmp[32];
688
#else
689
    char tmp[16];
690
#endif /* RT_PRINTF_LONGLONG */
691
    int precision_bak = precision;
692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719
    const char *digits;
    static const char small_digits[] = "0123456789abcdef";
    static const char large_digits[] = "0123456789ABCDEF";
    register int i;
    register int size;

    size = s;

    digits = (type & LARGE) ? large_digits : small_digits;
    if (type & LEFT)
        type &= ~ZEROPAD;

    c = (type & ZEROPAD) ? '0' : ' ';

    /* get sign */
    sign = 0;
    if (type & SIGN)
    {
        if (num < 0)
        {
            sign = '-';
            num = -num;
        }
        else if (type & PLUS)
            sign = '+';
        else if (type & SPACE)
            sign = ' ';
    }
720 721

#ifdef RT_PRINTF_SPECIAL
722 723 724 725 726 727 728
    if (type & SPECIAL)
    {
        if (base == 16)
            size -= 2;
        else if (base == 8)
            size--;
    }
729
#endif /* RT_PRINTF_SPECIAL */
730

731 732
    i = 0;
    if (num == 0)
733
        tmp[i++] = '0';
734 735 736 737 738
    else
    {
        while (num != 0)
            tmp[i++] = digits[divide(&num, base)];
    }
739 740

#ifdef RT_PRINTF_PRECISION
741 742 743
    if (i > precision)
        precision = i;
    size -= precision;
744
#else
745
    size -= i;
746
#endif /* RT_PRINTF_PRECISION */
747

748
    if (!(type & (ZEROPAD | LEFT)))
749
    {
750
        if ((sign) && (size > 0))
751 752
            size--;

753
        while (size-- > 0)
754
        {
755
            if (buf < end)
756 757 758 759 760 761 762
                *buf = ' ';
            ++ buf;
        }
    }

    if (sign)
    {
763
        if (buf < end)
764 765 766
        {
            *buf = sign;
        }
767
        -- size;
768 769
        ++ buf;
    }
770 771

#ifdef RT_PRINTF_SPECIAL
772 773
    if (type & SPECIAL)
    {
774
        if (base == 8)
775
        {
776
            if (buf < end)
777 778 779 780 781
                *buf = '0';
            ++ buf;
        }
        else if (base == 16)
        {
782
            if (buf < end)
783 784
                *buf = '0';
            ++ buf;
785
            if (buf < end)
786
            {
787
                *buf = type & LARGE ? 'X' : 'x';
788 789 790 791
            }
            ++ buf;
        }
    }
792
#endif /* RT_PRINTF_SPECIAL */
793

794 795 796 797 798
    /* no align to the left */
    if (!(type & LEFT))
    {
        while (size-- > 0)
        {
799
            if (buf < end)
800 801 802 803
                *buf = c;
            ++ buf;
        }
    }
804 805

#ifdef RT_PRINTF_PRECISION
806 807
    while (i < precision--)
    {
808
        if (buf < end)
809 810 811
            *buf = '0';
        ++ buf;
    }
812
#endif /* RT_PRINTF_PRECISION */
813

814
    /* put number in the temporary buffer */
815
    while (i-- > 0 && (precision_bak != 0))
816
    {
817
        if (buf < end)
818 819 820 821 822 823
            *buf = tmp[i];
        ++ buf;
    }

    while (size-- > 0)
    {
824
        if (buf < end)
825 826 827 828 829
            *buf = ' ';
        ++ buf;
    }

    return buf;
830 831
}

S
Sherman 已提交
832 833 834 835 836 837 838 839 840 841 842 843 844
/**
 * This function will fill a formatted string to buffer.
 *
 * @param  buf is the buffer to save formatted string.
 *
 * @param  size is the size of buffer.
 *
 * @param  fmt is the format parameters.
 *
 * @param  args is a list of variable parameters.
 *
 * @return The number of characters actually written to buffer.
 */
845 846 847 848
rt_int32_t rt_vsnprintf(char       *buf,
                        rt_size_t   size,
                        const char *fmt,
                        va_list     args)
849 850
{
#ifdef RT_PRINTF_LONGLONG
851
    unsigned long long num;
852
#else
853
    rt_uint32_t num;
854
#endif /* RT_PRINTF_LONGLONG */
855 856 857
    int i, len;
    char *str, *end, c;
    const char *s;
858

859 860 861 862
    rt_uint8_t base;            /* the base of number */
    rt_uint8_t flags;           /* flags to print number */
    rt_uint8_t qualifier;       /* 'h', 'l', or 'L' for integer fields */
    rt_int32_t field_width;     /* width of output field */
863 864

#ifdef RT_PRINTF_PRECISION
865
    int precision;      /* min. # of digits for integers and max for a string */
866
#endif /* RT_PRINTF_PRECISION */
867

868
    str = buf;
869
    end = buf + size;
870 871 872 873

    /* Make sure end is always >= buf */
    if (end < buf)
    {
874
        end  = ((char *) - 1);
875 876 877 878 879 880 881
        size = end - buf;
    }

    for (; *fmt ; ++fmt)
    {
        if (*fmt != '%')
        {
882
            if (str < end)
883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904
                *str = *fmt;
            ++ str;
            continue;
        }

        /* process flags */
        flags = 0;

        while (1)
        {
            /* skips the first '%' also */
            ++ fmt;
            if (*fmt == '-') flags |= LEFT;
            else if (*fmt == '+') flags |= PLUS;
            else if (*fmt == ' ') flags |= SPACE;
            else if (*fmt == '#') flags |= SPECIAL;
            else if (*fmt == '0') flags |= ZEROPAD;
            else break;
        }

        /* get field width */
        field_width = -1;
905
        if (_ISDIGIT(*fmt)) field_width = skip_atoi(&fmt);
906 907 908 909 910 911 912 913 914 915 916
        else if (*fmt == '*')
        {
            ++ fmt;
            /* it's the next argument */
            field_width = va_arg(args, int);
            if (field_width < 0)
            {
                field_width = -field_width;
                flags |= LEFT;
            }
        }
917 918

#ifdef RT_PRINTF_PRECISION
919 920 921 922 923
        /* get the precision */
        precision = -1;
        if (*fmt == '.')
        {
            ++ fmt;
924
            if (_ISDIGIT(*fmt)) precision = skip_atoi(&fmt);
925 926 927 928 929 930 931 932
            else if (*fmt == '*')
            {
                ++ fmt;
                /* it's the next argument */
                precision = va_arg(args, int);
            }
            if (precision < 0) precision = 0;
        }
933
#endif /* RT_PRINTF_PRECISION */
934 935
        /* get the conversion qualifier */
        qualifier = 0;
936
#ifdef RT_PRINTF_LONGLONG
937
        if (*fmt == 'h' || *fmt == 'l' || *fmt == 'L')
938
#else
939
        if (*fmt == 'h' || *fmt == 'l')
940
#endif /* RT_PRINTF_LONGLONG */
941 942 943
        {
            qualifier = *fmt;
            ++ fmt;
944
#ifdef RT_PRINTF_LONGLONG
945 946 947 948 949
            if (qualifier == 'l' && *fmt == 'l')
            {
                qualifier = 'L';
                ++ fmt;
            }
950
#endif /* RT_PRINTF_LONGLONG */
951 952 953 954 955 956 957 958 959 960 961 962
        }

        /* the default base */
        base = 10;

        switch (*fmt)
        {
        case 'c':
            if (!(flags & LEFT))
            {
                while (--field_width > 0)
                {
963
                    if (str < end) *str = ' ';
964 965 966 967 968 969
                    ++ str;
                }
            }

            /* get character */
            c = (rt_uint8_t)va_arg(args, int);
970
            if (str < end) *str = c;
971 972 973 974 975
            ++ str;

            /* put width */
            while (--field_width > 0)
            {
976
                if (str < end) *str = ' ';
977 978 979 980 981 982 983 984
                ++ str;
            }
            continue;

        case 's':
            s = va_arg(args, char *);
            if (!s) s = "(NULL)";

985
            for (len = 0; (len != field_width) && (s[len] != '\0'); len++);
986
#ifdef RT_PRINTF_PRECISION
987
            if (precision > 0 && len > precision) len = precision;
988
#endif /* RT_PRINTF_PRECISION */
989

990 991 992 993
            if (!(flags & LEFT))
            {
                while (len < field_width--)
                {
994
                    if (str < end) *str = ' ';
995 996 997 998 999 1000
                    ++ str;
                }
            }

            for (i = 0; i < len; ++i)
            {
1001
                if (str < end) *str = *s;
1002 1003 1004 1005 1006 1007
                ++ str;
                ++ s;
            }

            while (len < field_width--)
            {
1008
                if (str < end) *str = ' ';
1009 1010 1011 1012 1013 1014 1015 1016 1017 1018
                ++ str;
            }
            continue;

        case 'p':
            if (field_width == -1)
            {
                field_width = sizeof(void *) << 1;
                flags |= ZEROPAD;
            }
1019
#ifdef RT_PRINTF_PRECISION
1020 1021 1022
            str = print_number(str, end,
                               (long)va_arg(args, void *),
                               16, field_width, precision, flags);
1023
#else
1024 1025 1026
            str = print_number(str, end,
                               (long)va_arg(args, void *),
                               16, field_width, flags);
1027
#endif /* RT_PRINTF_PRECISION */
1028 1029 1030
            continue;

        case '%':
1031
            if (str < end) *str = '%';
1032 1033 1034
            ++ str;
            continue;

1035
        /* integer number formats - set up the flags and "break" */
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052
        case 'o':
            base = 8;
            break;

        case 'X':
            flags |= LARGE;
        case 'x':
            base = 16;
            break;

        case 'd':
        case 'i':
            flags |= SIGN;
        case 'u':
            break;

        default:
1053
            if (str < end) *str = '%';
1054 1055 1056 1057
            ++ str;

            if (*fmt)
            {
1058
                if (str < end) *str = *fmt;
1059 1060 1061 1062 1063 1064 1065 1066
                ++ str;
            }
            else
            {
                -- fmt;
            }
            continue;
        }
1067 1068

#ifdef RT_PRINTF_LONGLONG
1069 1070
        if (qualifier == 'L') num = va_arg(args, long long);
        else if (qualifier == 'l')
1071
#else
1072
        if (qualifier == 'l')
1073
#endif /* RT_PRINTF_LONGLONG */
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087
        {
            num = va_arg(args, rt_uint32_t);
            if (flags & SIGN) num = (rt_int32_t)num;
        }
        else if (qualifier == 'h')
        {
            num = (rt_uint16_t)va_arg(args, rt_int32_t);
            if (flags & SIGN) num = (rt_int16_t)num;
        }
        else
        {
            num = va_arg(args, rt_uint32_t);
            if (flags & SIGN) num = (rt_int32_t)num;
        }
1088
#ifdef RT_PRINTF_PRECISION
1089
        str = print_number(str, end, num, base, field_width, precision, flags);
1090
#else
1091
        str = print_number(str, end, num, base, field_width, flags);
1092
#endif /* RT_PRINTF_PRECISION */
1093
    }
1094

1095 1096 1097 1098 1099 1100 1101 1102
    if (size > 0)
    {
        if (str < end) *str = '\0';
        else
        {
            end[-1] = '\0';
        }
    }
1103

1104 1105 1106 1107
    /* the trailing null byte doesn't count towards the total
    * ++str;
    */
    return str - buf;
1108
}
1109
RTM_EXPORT(rt_vsnprintf);
1110 1111

/**
S
Sherman 已提交
1112
 * This function will fill a formatted string to buffer.
1113
 *
S
Sherman 已提交
1114 1115 1116 1117 1118 1119 1120
 * @param  buf is the buffer to save formatted string.
 *
 * @param  size is the size of buffer.
 *
 * @param  fmt is the format parameters.
 *
 * @return The number of characters actually written to buffer.
1121 1122 1123
 */
rt_int32_t rt_snprintf(char *buf, rt_size_t size, const char *fmt, ...)
{
1124 1125
    rt_int32_t n;
    va_list args;
1126

1127
    va_start(args, fmt);
1128
    n = rt_vsnprintf(buf, size, fmt, args);
1129
    va_end(args);
1130

1131
    return n;
1132
}
1133
RTM_EXPORT(rt_snprintf);
1134 1135

/**
S
Sherman 已提交
1136 1137 1138 1139 1140
 * This function will fill a formatted string to buffer.
 *
 * @param  buf is the buffer to save formatted string.
 *
 * @param  format is the format parameters.
1141
 *
S
Sherman 已提交
1142 1143 1144
 * @param  arg_ptr is a list of variable parameters.
 *
 * @return The number of characters actually written to buffer.
1145 1146 1147
 */
rt_int32_t rt_vsprintf(char *buf, const char *format, va_list arg_ptr)
{
1148
    return rt_vsnprintf(buf, (rt_size_t) - 1, format, arg_ptr);
1149
}
1150
RTM_EXPORT(rt_vsprintf);
1151 1152 1153 1154

/**
 * This function will fill a formatted string to buffer
 *
S
Sherman 已提交
1155 1156 1157 1158 1159
 * @param  buf the buffer to save formatted string.
 *
 * @param  format is the format parameters.
 *
 * @return The number of characters actually written to buffer.
1160
 */
D
dzzxzz 已提交
1161
rt_int32_t rt_sprintf(char *buf, const char *format, ...)
1162
{
1163 1164
    rt_int32_t n;
    va_list arg_ptr;
B
bernard.xiong 已提交
1165

1166
    va_start(arg_ptr, format);
1167
    n = rt_vsprintf(buf, format, arg_ptr);
1168
    va_end(arg_ptr);
B
bernard.xiong 已提交
1169

1170
    return n;
1171
}
1172
RTM_EXPORT(rt_sprintf);
B
bernard.xiong 已提交
1173

1174 1175
#ifdef RT_USING_CONSOLE

1176
#ifdef RT_USING_DEVICE
1177 1178 1179
/**
 * This function returns the device using in console.
 *
S
Sherman 已提交
1180
 * @return Returns the console device pointer or RT_NULL.
1181 1182 1183
 */
rt_device_t rt_console_get_device(void)
{
1184
    return _console_device;
1185
}
1186
RTM_EXPORT(rt_console_get_device);
1187

1188
/**
B
bernard.xiong@gmail.com 已提交
1189
 * This function will set a device as console device.
1190
 * After set a device to console, all output of rt_kprintf will be
B
bernard.xiong@gmail.com 已提交
1191
 * redirected to this new device.
1192
 *
S
Sherman 已提交
1193
 * @param  name is the name of new console device.
1194
 *
1195
 * @return the old console device handler on successful, or RT_NULL on failure.
1196
 */
D
dzzxzz 已提交
1197
rt_device_t rt_console_set_device(const char *name)
1198
{
1199
    rt_device_t new_device, old_device;
1200 1201

    /* save old device */
1202
    old_device = _console_device;
1203 1204

    /* find new console device */
1205
    new_device = rt_device_find(name);
mysterywolf's avatar
mysterywolf 已提交
1206

1207 1208
    /* check whether it's a same device */
    if (new_device == old_device) return RT_NULL;
mysterywolf's avatar
mysterywolf 已提交
1209

1210
    if (new_device != RT_NULL)
1211 1212 1213 1214 1215 1216 1217 1218
    {
        if (_console_device != RT_NULL)
        {
            /* close old console device */
            rt_device_close(_console_device);
        }

        /* set new console device */
1219 1220
        rt_device_open(new_device, RT_DEVICE_OFLAG_RDWR | RT_DEVICE_FLAG_STREAM);
        _console_device = new_device;
1221 1222
    }

1223
    return old_device;
B
bernard.xiong 已提交
1224
}
1225
RTM_EXPORT(rt_console_set_device);
1226
#endif /* RT_USING_DEVICE */
1227

X
xieyangrun 已提交
1228
RT_WEAK void rt_hw_console_output(const char *str)
1229
{
1230
    /* empty console output */
1231
}
1232
RTM_EXPORT(rt_hw_console_output);
1233

B
bernard 已提交
1234 1235 1236
/**
 * This function will put string to the console.
 *
S
Sherman 已提交
1237
 * @param str is the string output to the console.
B
bernard 已提交
1238 1239 1240
 */
void rt_kputs(const char *str)
{
B
bernard 已提交
1241 1242
    if (!str) return;

B
bernard 已提交
1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253
#ifdef RT_USING_DEVICE
    if (_console_device == RT_NULL)
    {
        rt_hw_console_output(str);
    }
    else
    {
        rt_device_write(_console_device, 0, str, rt_strlen(str));
    }
#else
    rt_hw_console_output(str);
1254
#endif /* RT_USING_DEVICE */
B
bernard 已提交
1255 1256
}

1257
/**
S
Sherman 已提交
1258
 * This function will print a formatted string on system console.
1259
 *
S
Sherman 已提交
1260
 * @param fmt is the format parameters.
1261
 */
1262
RT_WEAK void rt_kprintf(const char *fmt, ...)
1263
{
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273
    va_list args;
    rt_size_t length;
    static char rt_log_buf[RT_CONSOLEBUF_SIZE];

    va_start(args, fmt);
    /* the return value of vsnprintf is the number of bytes that would be
     * written to buffer had if the size of the buffer been sufficiently
     * large excluding the terminating null byte. If the output string
     * would be larger than the rt_log_buf, we have to adjust the output
     * length. */
1274
    length = rt_vsnprintf(rt_log_buf, sizeof(rt_log_buf) - 1, fmt, args);
1275 1276
    if (length > RT_CONSOLEBUF_SIZE - 1)
        length = RT_CONSOLEBUF_SIZE - 1;
1277
#ifdef RT_USING_DEVICE
1278 1279 1280 1281 1282 1283 1284 1285
    if (_console_device == RT_NULL)
    {
        rt_hw_console_output(rt_log_buf);
    }
    else
    {
        rt_device_write(_console_device, 0, rt_log_buf, length);
    }
1286
#else
1287
    rt_hw_console_output(rt_log_buf);
1288
#endif /* RT_USING_DEVICE */
1289
    va_end(args);
1290
}
1291
RTM_EXPORT(rt_kprintf);
1292
#endif /* RT_USING_CONSOLE */
1293

1294 1295 1296 1297 1298
#ifdef RT_USING_HEAP
/**
 * This function allocates a memory block, which address is aligned to the
 * specified alignment size.
 *
S
Sherman 已提交
1299
 * @param  size is the allocated memory block size.
1300
 *
S
Sherman 已提交
1301 1302 1303 1304
 * @param  align is the alignment size.
 *
 * @return The memory block address was returned successfully, otherwise it was
 *         returned empty RT_NULL.
1305
 */
1306
RT_WEAK void *rt_malloc_align(rt_size_t size, rt_size_t align)
1307
{
1308
    void *ptr;
B
Bernard Xiong 已提交
1309 1310
    void *align_ptr;
    int uintptr_size;
1311 1312
    rt_size_t align_size;

B
Bernard Xiong 已提交
1313 1314 1315 1316 1317 1318
    /* sizeof pointer */
    uintptr_size = sizeof(void*);
    uintptr_size -= 1;

    /* align the alignment size to uintptr size byte */
    align = ((align + uintptr_size) & ~uintptr_size);
1319 1320

    /* get total aligned size */
B
Bernard Xiong 已提交
1321
    align_size = ((size + uintptr_size) & ~uintptr_size) + align;
1322 1323 1324 1325
    /* allocate memory block from heap */
    ptr = rt_malloc(align_size);
    if (ptr != RT_NULL)
    {
1326
        /* the allocated memory block is aligned */
B
Bernard Xiong 已提交
1327
        if (((rt_ubase_t)ptr & (align - 1)) == 0)
1328
        {
B
Bernard Xiong 已提交
1329
            align_ptr = (void *)((rt_ubase_t)ptr + align);
1330 1331 1332
        }
        else
        {
B
Bernard Xiong 已提交
1333
            align_ptr = (void *)(((rt_ubase_t)ptr + (align - 1)) & ~(align - 1));
1334 1335 1336
        }

        /* set the pointer before alignment pointer to the real pointer */
B
Bernard Xiong 已提交
1337
        *((rt_ubase_t *)((rt_ubase_t)align_ptr - sizeof(void *))) = (rt_ubase_t)ptr;
1338 1339 1340 1341 1342

        ptr = align_ptr;
    }

    return ptr;
1343
}
1344
RTM_EXPORT(rt_malloc_align);
1345 1346

/**
1347 1348
 * This function release the memory block, which is allocated by
 * rt_malloc_align function and address is aligned.
1349
 *
S
Sherman 已提交
1350
 * @param ptr is the memory block pointer.
1351
 */
1352
RT_WEAK void rt_free_align(void *ptr)
1353
{
1354
    void *real_ptr;
1355

B
Bernard Xiong 已提交
1356
    real_ptr = (void *) * (rt_ubase_t *)((rt_ubase_t)ptr - sizeof(void *));
1357
    rt_free(real_ptr);
1358
}
1359
RTM_EXPORT(rt_free_align);
1360
#endif /* RT_USING_HEAP */
1361

1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383
#ifndef RT_USING_CPU_FFS
const rt_uint8_t __lowest_bit_bitmap[] =
{
    /* 00 */ 0, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* 10 */ 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* 20 */ 5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* 30 */ 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* 40 */ 6, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* 50 */ 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* 60 */ 5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* 70 */ 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* 80 */ 7, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* 90 */ 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* A0 */ 5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* B0 */ 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* C0 */ 6, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* D0 */ 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* E0 */ 5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,
    /* F0 */ 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0
};

/**
B
Bernard Xiong 已提交
1384
 * This function finds the first bit set (beginning with the least significant bit)
1385 1386
 * in value and return the index of that bit.
 *
B
Bernard Xiong 已提交
1387
 * Bits are numbered starting at 1 (the least significant bit).  A return value of
1388
 * zero from any of these functions means that the argument was zero.
B
Bernard Xiong 已提交
1389
 *
S
Sherman 已提交
1390 1391
 * @return Return the index of the first bit set. If value is 0, then this function
 *         shall return 0.
1392
 */
B
bernard 已提交
1393
int __rt_ffs(int value)
1394 1395 1396 1397 1398 1399 1400 1401
{
    if (value == 0) return 0;

    if (value & 0xff)
        return __lowest_bit_bitmap[value & 0xff] + 1;

    if (value & 0xff00)
        return __lowest_bit_bitmap[(value & 0xff00) >> 8] + 9;
B
Bernard Xiong 已提交
1402

1403 1404
    if (value & 0xff0000)
        return __lowest_bit_bitmap[(value & 0xff0000) >> 16] + 17;
B
Bernard Xiong 已提交
1405

1406 1407
    return __lowest_bit_bitmap[(value & 0xff000000) >> 24] + 25;
}
1408
#endif /* RT_USING_CPU_FFS */
1409

armink_ztl's avatar
armink_ztl 已提交
1410 1411
#ifdef RT_DEBUG
/* RT_ASSERT(EX)'s hook */
1412

1413
void (*rt_assert_hook)(const char *ex, const char *func, rt_size_t line);
1414

armink_ztl's avatar
armink_ztl 已提交
1415 1416 1417
/**
 * This function will set a hook function to RT_ASSERT(EX). It will run when the expression is false.
 *
S
Sherman 已提交
1418
 * @param hook is the hook function.
armink_ztl's avatar
armink_ztl 已提交
1419
 */
1420 1421
void rt_assert_set_hook(void (*hook)(const char *ex, const char *func, rt_size_t line))
{
armink_ztl's avatar
armink_ztl 已提交
1422 1423
    rt_assert_hook = hook;
}
1424 1425 1426 1427

/**
 * The RT_ASSERT function.
 *
L
liukangcc 已提交
1428
 * @param ex_string is the assertion condition string.
S
Sherman 已提交
1429 1430 1431 1432
 *
 * @param func is the function name when assertion.
 *
 * @param line is the file line number when assertion.
1433
 */
1434
void rt_assert_handler(const char *ex_string, const char *func, rt_size_t line)
1435 1436 1437 1438 1439 1440
{
    volatile char dummy = 0;

    if (rt_assert_hook == RT_NULL)
    {
#ifdef RT_USING_MODULE
1441
        if (dlmodule_self())
1442
        {
1443 1444
            /* close assertion module */
            dlmodule_exit(-1);
1445 1446
        }
        else
1447
#endif /*RT_USING_MODULE*/
1448 1449 1450 1451
        {
            rt_kprintf("(%s) assertion failed at function:%s, line number:%d \n", ex_string, func, line);
            while (dummy == 0);
        }
1452
    }
1453 1454
    else
    {
1455
        rt_assert_hook(ex_string, func, line);
J
Jason Pan 已提交
1456
    }
1457 1458
}
RTM_EXPORT(rt_assert_handler);
armink_ztl's avatar
armink_ztl 已提交
1459 1460
#endif /* RT_DEBUG */

D
dogandog 已提交
1461
/**@}*/