Changes in / [726b748:9139540]


Ignore:
Location:
libcfa/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/bits/defs.hfa

    r726b748 r9139540  
    1010// Created On       : Thu Nov  9 13:24:10 2017
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sat Oct 24 10:53:15 2020
    13 // Update Count     : 21
     12// Last Modified On : Wed Aug 26 16:22:32 2020
     13// Update Count     : 20
    1414//
    1515
     
    6060        #else
    6161                #error unsupported hardware architecture
    62         #endif
     62        #endif // __ARM_ARCH
    6363}
  • libcfa/src/concurrency/CtxSwitch-x86_64.S

    r726b748 r9139540  
    1010// Created On       : Mon Aug 10 08:10:26 2020
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sat Oct 24 14:36:25 2020
    13 // Update Count     : 10
     12// Last Modified On : Thu Aug 20 18:09:32 2020
     13// Update Count     : 9
    1414//
    1515
     
    7979
    8080// Local Variables: //
    81 // mode: asm //
     81// mode: c //
    8282// tab-width: 4 //
    8383// End: //
  • libcfa/src/concurrency/invoke.c

    r726b748 r9139540  
    1010// Created On       : Tue Jan 17 12:27:26 2016
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sat Oct 24 14:35:28 2020
    13 // Update Count     : 32
     12// Last Modified On : Thu Aug 20 23:43:23 2020
     13// Update Count     : 31
    1414//
    1515
     
    184184        fs->intRegs[1] = this;                                                          // argument to invoke x20 => x1
    185185        fs->intRegs[2] = invoke;
     186    //for ( intptr_t i = 3; i < 12; i += 1 ) fs->intRegs[i] = (void *)i;
    186187        fs->intRegs[11] = __cfactx_invoke_stub;                         // link register x30 => ret moves to pc
     188    //for ( int i = 0; i < 8; i += 1 ) fs->fpRegs[i] = i + 12;
    187189#else
    188190        #error uknown hardware architecture
Note: See TracChangeset for help on using the changeset viewer.