예제 #1
0
파일: run.py 프로젝트: ryanm101/amitools
def run_command(scheduler,
                process,
                start_pc,
                args_ptr,
                args_len,
                stack_size,
                reg_d1=0):
    ctx = process.ctx
    alloc = ctx.alloc
    new_stack = Stack.alloc(alloc, stack_size)
    # save old stack
    oldstack_upper = process.this_task.access.r_s("pr_Task.tc_SPLower")
    oldstack_lower = process.this_task.access.r_s("pr_Task.tc_SPUpper")
    # activate new stack
    process.this_task.access.w_s("pr_Task.tc_SPLower", new_stack.get_upper())
    process.this_task.access.w_s("pr_Task.tc_SPUpper", new_stack.get_lower())
    # NOTE: the Manx fexec and BPCL mess is not (yet) setup here.

    # setup sub task
    sp = new_stack.get_initial_sp()

    # new proc registers: d0=arg_len a0=arg_cptr
    # d2=stack_size.  this value is also in 4(sp) (see Process.init_stack), but
    # various C programs rely on it being present (1.3-3.1 at least have it).
    set_regs = {
        REG_D0: args_len,
        REG_D1: reg_d1,
        REG_A0: args_ptr,
        REG_D2: stack_size,
        REG_A2: ctx.odg_base,
        REG_A5: ctx.odg_base,
        REG_A6: ctx.odg_base,
    }
    get_regs = [REG_D0]
    task = Task("RunCommand", start_pc, new_stack, set_regs, get_regs)

    # run sub task
    scheduler.run_sub_task(task)

    # return value
    run_state = task.get_run_state()
    ret_code = run_state.regs[REG_D0]
    log_proc.info("return from RunCommand: ret_code=%d", ret_code)

    # restore stack values
    process.this_task.access.w_s("pr_Task.tc_SPLower", oldstack_lower)
    process.this_task.access.w_s("pr_Task.tc_SPUpper", oldstack_upper)

    # result code
    return ret_code
예제 #2
0
파일: Process.py 프로젝트: jukeks/amitools
 def _init_task(self):
     name = self.bin_basename
     init_pc = self.prog_start
     start_regs = self._get_start_regs()
     return_regs = [REG_D0]
     self.task = Task(name, init_pc, self.stack, start_regs, return_regs)
     # store back ref to process
     self.task.process = self
예제 #3
0
파일: run.py 프로젝트: cnvogelg/amitools
def run_command(scheduler, process, start_pc, args_ptr, args_len, stack_size, reg_d1=0):
  ctx = process.ctx
  alloc = ctx.alloc
  new_stack = Stack.alloc(alloc, stack_size)
  # save old stack
  oldstack_upper = process.this_task.access.r_s("pr_Task.tc_SPLower")
  oldstack_lower = process.this_task.access.r_s("pr_Task.tc_SPUpper")
  # activate new stack
  process.this_task.access.w_s("pr_Task.tc_SPLower", new_stack.get_upper())
  process.this_task.access.w_s("pr_Task.tc_SPUpper", new_stack.get_lower())
  # NOTE: the Manx fexec and BPCL mess is not (yet) setup here.

  # setup sub task
  sp = new_stack.get_initial_sp()

  # new proc registers: d0=arg_len a0=arg_cptr
  # d2=stack_size.  this value is also in 4(sp) (see Process.init_stack), but
  # various C programs rely on it being present (1.3-3.1 at least have it).
  set_regs = {
      REG_D0: args_len,
      REG_D1: reg_d1,
      REG_A0: args_ptr,
      REG_D2: stack_size,
      REG_A2: ctx.odg_base,
      REG_A5: ctx.odg_base,
      REG_A6: ctx.odg_base
  }
  get_regs = [REG_D0]
  task = Task("RunCommand", start_pc, new_stack, set_regs, get_regs)

  # run sub task
  scheduler.run_sub_task(task)

  # return value
  run_state = task.get_run_state()
  ret_code = run_state.regs[REG_D0]
  log_proc.info("return from RunCommand: ret_code=%d", ret_code)

  # restore stack values
  process.this_task.access.w_s("pr_Task.tc_SPLower", oldstack_lower)
  process.this_task.access.w_s("pr_Task.tc_SPUpper", oldstack_upper)

  # result code
  return ret_code
예제 #4
0
def create_task(alloc, pc, start_regs=None, return_regs=None, name=None):
    if name is None:
        name = "task"
    stack = Stack.alloc(alloc, 4096)
    task = Task(name, pc, stack, start_regs, return_regs)
    return task