[PR #87] [CLOSED] Cleanup imported #159

Open
opened 2026-01-31 21:30:02 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/qemu/qemu/pull/87
Author: @taylorsimpson
Created: 1/14/2020
Status: Closed

Base: masterHead: cleanup_imported


📝 Commits (10+)

  • 72109cc Add support for Hexagon target with linux-user
  • fdcd183 Add support for bit-reversed and circular addressing modes
  • 3243a98 Fix the following bugs from "make check-tcg"
  • 40c911c Move files to imported directory to indicate origin is arch lib
  • c0c2605 Move code to imported directory
  • bc2c7cf Move more files to imported directory
  • 7d3d685 Respond to first round of review comments
  • 4bc94c5 Respond to first round of review comments
  • 98cb9c5 Fix formatting and build dependencies
  • bba035c Merge branch 'master' of https://github.com/quic/qemu

📊 Changes

83 files changed (+49871 additions, -5 deletions)

View changed files

📝 configure (+9 -0)
default-configs/hexagon-linux-user.mak (+1 -0)
📝 disas/Makefile.objs (+1 -0)
disas/hexagon.c (+59 -0)
📝 include/disas/dis-asm.h (+1 -0)
📝 include/elf.h (+2 -0)
📝 include/exec/helper-gen.h (+13 -0)
📝 include/exec/helper-head.h (+2 -0)
📝 include/exec/helper-proto.h (+6 -0)
📝 include/exec/helper-tcg.h (+7 -0)
📝 linux-user/elfload.c (+15 -0)
linux-user/hexagon/cpu_loop.c (+173 -0)
linux-user/hexagon/signal.c (+276 -0)
linux-user/hexagon/sockbits.h (+18 -0)
linux-user/hexagon/syscall_nr.h (+346 -0)
linux-user/hexagon/target_cpu.h (+39 -0)
linux-user/hexagon/target_elf.h (+38 -0)
linux-user/hexagon/target_fcntl.h (+18 -0)
linux-user/hexagon/target_signal.h (+34 -0)
linux-user/hexagon/target_structs.h (+46 -0)

...and 63 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/qemu/qemu/pull/87 **Author:** [@taylorsimpson](https://github.com/taylorsimpson) **Created:** 1/14/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `cleanup_imported` --- ### 📝 Commits (10+) - [`72109cc`](https://github.com/qemu/qemu/commit/72109ccf86f4c8e4bbdd7beea590bb651b4c206e) Add support for Hexagon target with linux-user - [`fdcd183`](https://github.com/qemu/qemu/commit/fdcd183e110ef9c58c438011dcbfff2a69aa1715) Add support for bit-reversed and circular addressing modes - [`3243a98`](https://github.com/qemu/qemu/commit/3243a983468ef78a39454e028245a1e05d4f6bf4) Fix the following bugs from "make check-tcg" - [`40c911c`](https://github.com/qemu/qemu/commit/40c911c9c40a8e94a2eda59d30d188e769c1ebd7) Move files to imported directory to indicate origin is arch lib - [`c0c2605`](https://github.com/qemu/qemu/commit/c0c2605711ee6e4ebb98138999c78470670d7b23) Move code to imported directory - [`bc2c7cf`](https://github.com/qemu/qemu/commit/bc2c7cfc62299f899b52714492dd4492bb465c69) Move more files to imported directory - [`7d3d685`](https://github.com/qemu/qemu/commit/7d3d685cfd87860d3f797e5b4f1eb690eb4c7489) Respond to first round of review comments - [`4bc94c5`](https://github.com/qemu/qemu/commit/4bc94c51ce448ac98732ebf32a2573d4fd388f08) Respond to first round of review comments - [`98cb9c5`](https://github.com/qemu/qemu/commit/98cb9c596dc43e1ddb0a32385647043e6ef56a1e) Fix formatting and build dependencies - [`bba035c`](https://github.com/qemu/qemu/commit/bba035caef931730ce973173997dfd8f25e82b51) Merge branch 'master' of https://github.com/quic/qemu ### 📊 Changes **83 files changed** (+49871 additions, -5 deletions) <details> <summary>View changed files</summary> 📝 `configure` (+9 -0) ➕ `default-configs/hexagon-linux-user.mak` (+1 -0) 📝 `disas/Makefile.objs` (+1 -0) ➕ `disas/hexagon.c` (+59 -0) 📝 `include/disas/dis-asm.h` (+1 -0) 📝 `include/elf.h` (+2 -0) 📝 `include/exec/helper-gen.h` (+13 -0) 📝 `include/exec/helper-head.h` (+2 -0) 📝 `include/exec/helper-proto.h` (+6 -0) 📝 `include/exec/helper-tcg.h` (+7 -0) 📝 `linux-user/elfload.c` (+15 -0) ➕ `linux-user/hexagon/cpu_loop.c` (+173 -0) ➕ `linux-user/hexagon/signal.c` (+276 -0) ➕ `linux-user/hexagon/sockbits.h` (+18 -0) ➕ `linux-user/hexagon/syscall_nr.h` (+346 -0) ➕ `linux-user/hexagon/target_cpu.h` (+39 -0) ➕ `linux-user/hexagon/target_elf.h` (+38 -0) ➕ `linux-user/hexagon/target_fcntl.h` (+18 -0) ➕ `linux-user/hexagon/target_signal.h` (+34 -0) ➕ `linux-user/hexagon/target_structs.h` (+46 -0) _...and 63 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-31 21:30:02 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/qemu#159