Changeset b158d8f for src/libcfa/concurrency
- Timestamp:
- Jan 23, 2018, 5:02:46 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- b6838214
- Parents:
- 6ba16fa
- Location:
- src/libcfa/concurrency
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/invoke.c
r6ba16fa rb158d8f 10 10 // Created On : Tue Jan 17 12:27:26 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Jul 21 22:28:33 201713 // Update Count : 112 // Last Modified On : Tue Jan 23 14:04:56 2018 13 // Update Count : 2 14 14 // 15 15 … … 133 133 ((struct FakeStack *)(((struct machine_context_t *)stack->context)->SP))->mxcr = 0x1F80; //Vol. 2A 3-520 134 134 ((struct FakeStack *)(((struct machine_context_t *)stack->context)->SP))->fcw = 0x037F; //Vol. 1 8-7 135 136 #elif defined( __ARM_ARCH ) 137 138 struct FakeStack { 139 float fpRegs[16]; // floating point registers 140 void *intRegs[9]; // integer/pointer registers 141 void *arg[2]; // placeholder for this pointer 142 }; 143 144 ((struct machine_context_t *)stack->context)->SP = (char *)stack->base - sizeof( struct FakeStack ); 145 ((struct machine_context_t *)stack->context)->FP = NULL; 146 147 struct FakeStack *fs = (struct FakeStack *)((struct machine_context_t *)stack->context)->SP; 148 149 fs->intRegs[8] = CtxInvokeStub; 150 fs->arg[0] = this; 151 fs->arg[1] = invoke; 135 152 #else 136 153 #error Only __i386__ and __x86_64__ is supported for threads in cfa -
src/libcfa/concurrency/invoke.h
r6ba16fa rb158d8f 10 10 // Created On : Tue Jan 17 12:27:26 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Jul 21 22:28:56 201713 // Update Count : 112 // Last Modified On : Tue Jan 23 14:55:46 2018 13 // Update Count : 3 14 14 // 15 15 … … 203 203 "movl %%ebp,%1\n" \ 204 204 : "=rm" (ctx.SP), "=rm" (ctx.FP) ) 205 #elif defined( __ARM_ARCH ) 206 #define CtxGet( ctx ) __asm__ ( \ 207 "mov %0,%%sp\n" \ 208 "mov %1,%%r11\n" \ 209 : "=rm" (ctx.SP), "=rm" (ctx.FP) ) 205 210 #endif 206 211 -
src/libcfa/concurrency/kernel.c
r6ba16fa rb158d8f 10 10 // Created On : Tue Jan 17 12:27:26 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Jul 21 22:33:18201713 // Update Count : 212 // Last Modified On : Fri Dec 8 16:23:33 2017 13 // Update Count : 3 14 14 // 15 15 16 16 //C Includes 17 17 #include <stddef.h> 18 #define ftype `ftype` 18 19 extern "C" { 19 20 #include <stdio.h> … … 23 24 #include <unistd.h> 24 25 } 26 #undef ftype 25 27 26 28 //CFA Includes -
src/libcfa/concurrency/preemption.c
r6ba16fa rb158d8f 10 10 // Created On : Mon Jun 5 14:20:42 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Jul 21 22:36:05 201713 // Update Count : 212 // Last Modified On : Tue Jan 23 13:56:32 2018 13 // Update Count : 6 14 14 // 15 15 16 16 #include "preemption.h" 17 17 18 #define ftype `ftype` 18 19 extern "C" { 19 20 #include <errno.h> … … 26 27 #include <unistd.h> 27 28 } 28 29 #undef ftype 29 30 30 31 #ifdef __USE_STREAM__ … … 60 61 61 62 // Machine specific register name 62 #if def __x86_64__63 #if defined(__x86_64__) 63 64 #define CFA_REG_IP REG_RIP 64 #el se65 #elif defined(__i386__) 65 66 #define CFA_REG_IP REG_EIP 67 #elif defined(__ARM_ARCH__) 68 #define CFA_REG_IP REG_R15 66 69 #endif 67 70 … … 296 299 // Receives SIGUSR1 signal and causes the current thread to yield 297 300 void sigHandler_ctxSwitch( __CFA_SIGPARMS__ ) { 298 __cfaabi_dbg_debug_do( last_interrupt = (void *)(cxt->uc_mcontext. gregs[CFA_REG_IP]); )301 __cfaabi_dbg_debug_do( last_interrupt = (void *)(cxt->uc_mcontext.arm_pc); ) 299 302 300 303 // Check if it is safe to preempt here
Note:
See TracChangeset
for help on using the changeset viewer.