All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 00/10 v10] tilegx: Firstly add tilegx target for linux-user
@ 2015-05-10 22:36 Chen Gang
  2015-05-10 22:38 ` [Qemu-devel] [PATCH 01/10 v10] linux-user: tilegx: Firstly add architecture related features Chen Gang
                   ` (9 more replies)
  0 siblings, 10 replies; 32+ messages in thread
From: Chen Gang @ 2015-05-10 22:36 UTC (permalink / raw)
  To: Peter Maydell, Andreas Färber, rth, Chris Metcalf
  Cc: walt, Riku Voipio, qemu-devel

At present, it can run into glibc _init_malloc(), but cause assertion,
which should be fixed, next.

Since it already has quite a few of code, so send patches firstly, and
next, continue fixing the issue.


Chen Gang (10):
  linux-user: tilegx: Firstly add architecture related features
  linux-user: Support tilegx architecture in linux-user
  linux-user/syscall.c: conditionalize syscalls which are not defined in
    tilegx
  target-tilegx: Add opcode basic implementation from Tilera Corporation
  target-tilegx/opcode_tilegx.h: Modify it to fit qemu using
  target-tilegx: Add special register information from Tilera
    Corporation
  target-tilegx: Add cpu basic features for linux-user
  target-tilegx: Add helper features for linux-user
  target-tilegx: Generate tcg instructions to execute to _init_malloc in
    glib
  target-tilegx: Add TILE-Gx building files

 configure                             |    2 +
 default-configs/tilegx-linux-user.mak |    1 +
 include/elf.h                         |    2 +
 linux-user/elfload.c                  |   23 +
 linux-user/main.c                     |  148 ++
 linux-user/syscall.c                  |   50 +-
 linux-user/syscall_defs.h             |   14 +-
 linux-user/tilegx/syscall.h           |   35 +
 linux-user/tilegx/syscall_nr.h        |  278 ++++
 linux-user/tilegx/target_cpu.h        |   35 +
 linux-user/tilegx/target_signal.h     |   29 +
 linux-user/tilegx/target_structs.h    |   48 +
 linux-user/tilegx/termbits.h          |  285 ++++
 target-tilegx/Makefile.objs           |    1 +
 target-tilegx/cpu.c                   |  143 ++
 target-tilegx/cpu.h                   |  156 ++
 target-tilegx/helper.c                |   41 +
 target-tilegx/helper.h                |    3 +
 target-tilegx/opcode_tilegx.h         | 1405 ++++++++++++++++
 target-tilegx/spr_def_64.h            |  216 +++
 target-tilegx/translate.c             | 2889 +++++++++++++++++++++++++++++++++
 21 files changed, 5798 insertions(+), 6 deletions(-)
 create mode 100644 default-configs/tilegx-linux-user.mak
 create mode 100644 linux-user/tilegx/syscall.h
 create mode 100644 linux-user/tilegx/syscall_nr.h
 create mode 100644 linux-user/tilegx/target_cpu.h
 create mode 100644 linux-user/tilegx/target_signal.h
 create mode 100644 linux-user/tilegx/target_structs.h
 create mode 100644 linux-user/tilegx/termbits.h
 create mode 100644 target-tilegx/Makefile.objs
 create mode 100644 target-tilegx/cpu.c
 create mode 100644 target-tilegx/cpu.h
 create mode 100644 target-tilegx/helper.c
 create mode 100644 target-tilegx/helper.h
 create mode 100644 target-tilegx/opcode_tilegx.h
 create mode 100644 target-tilegx/spr_def_64.h
 create mode 100644 target-tilegx/translate.c

-- 
1.9.3

^ permalink raw reply	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2015-06-01 20:58 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-10 22:36 [Qemu-devel] [PATCH 00/10 v10] tilegx: Firstly add tilegx target for linux-user Chen Gang
2015-05-10 22:38 ` [Qemu-devel] [PATCH 01/10 v10] linux-user: tilegx: Firstly add architecture related features Chen Gang
2015-05-10 22:39 ` [Qemu-devel] [PATCH 02/10 v10] linux-user: Support tilegx architecture in linux-user Chen Gang
2015-05-10 22:40 ` [Qemu-devel] [PATCH 03/10 v10] linux-user/syscall.c: Conditionalize syscalls which are not defined in tilegx Chen Gang
2015-05-10 22:41 ` [Qemu-devel] [PATCH 04/10 v10] target-tilegx: Add opcode basic implementation from Tilera Corporation Chen Gang
2015-05-10 22:43 ` [Qemu-devel] [PATCH 06/10 v10] target-tilegx: Add special register information " Chen Gang
2015-05-10 22:44 ` [Qemu-devel] [PATCH 07/10 v10] target-tilegx: Add cpu basic features for linux-user Chen Gang
2015-05-10 22:44 ` [Qemu-devel] [PATCH 08/10 v10] target-tilegx: Add helper " Chen Gang
2015-05-10 22:45 ` [Qemu-devel] [PATCH 09/10 v10] target-tilegx: Generate tcg instructions to execute to _init_malloc in glib Chen Gang
2015-05-11 16:55   ` Richard Henderson
2015-05-11 21:26     ` Chen Gang
2015-05-26 21:39       ` Chen Gang
2015-06-01 20:58         ` Chen Gang
2015-05-14 14:56     ` Chen Gang
2015-05-14 15:08     ` Chen Gang
2015-05-14 16:05     ` Chen Gang
2015-05-15  2:31       ` Chen Gang
2015-05-29 19:29     ` Chen Gang
2015-05-10 22:46 ` [Qemu-devel] [PATCH 10/10 v10] target-tilegx: Add TILE-Gx building files Chen Gang
     [not found] ` <BLU437-SMTP59B35F884A72A991334DBB9DC0@phx.gbl>
2015-05-11 16:01   ` [Qemu-devel] [PATCH 05/10 v10] target-tilegx/opcode_tilegx.h: Modify it to fit qemu using Richard Henderson
2015-05-11 21:06     ` Chen Gang
2015-05-11 22:06       ` Richard Henderson
2015-05-12  0:43         ` gchen gchen
2015-05-12 10:56           ` Chen Gang
2015-05-12 11:08             ` Peter Maydell
2015-05-12 11:16               ` Chen Gang
2015-05-19  2:47                 ` Chen Gang
2015-05-21 20:59                   ` Chen Gang
2015-05-21 23:40                     ` Chris Metcalf
2015-05-22  1:48                       ` Chen Gang
2015-05-24 22:03                         ` Chen Gang
2015-05-25 15:13                           ` Chen Gang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.