Home
last modified time | relevance | path

Searched +full:qemu +full:- +full:bundle (Results 1 – 12 of 12) sorted by relevance

/qemu/scripts/oss-fuzz/
H A Dbuild.sh1 #!/bin/bash -e
3 # OSS-Fuzz build script. See:
4 # https://google.github.io/oss-fuzz/getting-started/new-project-guide/#buildsh
7 # https://github.com/google/oss-fuzz/blob/master/projects/qemu/Dockerfiles
10 # the COPYING file in the top-level directory.
17 # make -j$(nproc) all
21 # $CXX $CXXFLAGS -std=c++11 -Iinclude \
22 # /path/to/name_of_fuzzer.cc -o $OUT/name_of_fuzzer \
23 # -fsanitize=fuzzer /path/to/library.a
30 OSS_FUZZ_BUILD_DIR="./build-oss-fuzz/"
[all …]
/qemu/scripts/
H A Dsymlink-install-tree.py11 def destdir_join(d1: str, d2: str) -> str:
18 out = subprocess.run([*shlex.split(introspect), '--installed'],
21 bundle_dest = destdir_join('qemu-bundle', dest)
/qemu/include/qemu/
H A Dcutils.h6 * @exp10: exponent of 10, a multiple of 3 between -18 and 18 inclusive.
35 * * if @str fits in the buffer, pstrcpy() does not zero-fill the
37 * * if @str is too long, pstrcpy() will copy the first @buf_size-1
65 * @buf must already contain a NUL-terminated string, or the
95 * Test whether @str starts with the case-insensitive prefix @val.
100 * Returns: true if @str starts with case-insensitive prefix @val,
133 * so now points to a NUL-terminated string corresponding to the
202 * three different cachelines. In qemu-img usage, we find that in buffer_is_zero_sample3()
205 * short-circuit, so that we do not pull in additional cache lines. in buffer_is_zero_sample3()
208 return !buf[0] && !buf[len - 1] && !buf[len / 2]; in buffer_is_zero_sample3()
[all …]
/qemu/pc-bios/
H A DREADME1 - SeaBIOS (bios.bin) is the successor of pc bios.
4 - The VGA BIOS and the Cirrus VGA BIOS come from the LGPL VGA bios
7 - OpenBIOS (http://www.openbios.org/) is a free (GPL v2) portable
9 1275-1994 (referred to as Open Firmware) compliant firmware.
11 Sparc32 (including QEMU,tcx.bin and QEMU,cgthree.bin) and Sparc64 are built
14 - SLOF (Slimline Open Firmware) is a free IEEE 1275 Open Firmware
16 https://gitlab.com/slof/slof, and the image currently in qemu is
17 built from git tag qemu-slof-20241106.
19 - VOF (Virtual Open Firmware) is a minimalistic firmware to work with
20 -machine pseries,x-vof=on. When enabled, the firmware acts as a slim shim and
[all …]
/qemu/
H A D.travis.yml5 - gcc
9 # - OS name (currently only linux)
10 # - OS distribution (e.g. "jammy" for Linux)
11 # - Names and values of visible environment variables set in .travis.yml or Settings panel
17 # The channel name "irc.oftc.net#qemu" is encrypted against qemu/qemu
19 # $ travis encrypt -r "qemu/qemu" "irc.oftc.net#qemu"
23- secure: "F7GDRgjuOo5IUyRLqSkmDL7kvdU4UcH3Lm/W2db2JnDHTGCqgEdaYEYKciyCLZ57vOTsTsOgesN8iUT7hNHBd1K…
30 - SRC_DIR=".."
31 - BUILD_DIR="build"
32 - BASE_CONFIG="--disable-docs --disable-tools"
[all …]
H A DMakefile1 # Makefile for QEMU.
10 # Before including a proper config-host.mak, assume we are in the source tree
15 MAKEFLAGS += -rR
17 SHELL = bash -o pipefail
19 # Usage: $(call quiet-command,command and args,"NAME","args to print")
25 quiet-command-run = $(if $(V),,$(if $2,printf " %-7s %s\n" $2 $3 && ))$1
26 quiet-@ = $(if $(V),,@)
27 quiet-command = $(quiet-@)$(call quiet-command-run,$1,$2,$3)
30 help check-help print-% \
31 docker docker-% lcitool-refresh vm-help vm-test vm-build-%
[all …]
/qemu/linux-user/sparc/
H A Dsignal.c19 #include "qemu/osdep.h"
20 #include "qemu.h"
21 #include "user-internals.h"
22 #include "signal-common.h"
23 #include "linux-user/trace.h"
34 * Since qemu does not reference fp or callers_pc directly,
36 * and then bundle locals[] and ins[] into reg_window.
40 * Similarly, bundle structptr and xxargs into xargs[].
54 /* It is more convenient for qemu to move doubles, not singles. */
72 abi_ulong extramask[TARGET_NSIG_WORDS - 1];
[all …]
/qemu/.gitlab-ci.d/
H A Dbuildtest.yml2 - local: '/.gitlab-ci.d/buildtest-template.yml'
4 build-system-alpine:
6 - .native_build_job_template
7 - .native_build_artifact_template
9 - job: amd64-alpine-container
12 TARGETS: avr-softmmu loongarch64-softmmu mips64-softmmu mipsel-softmmu
13 MAKE_CHECK_ARGS: check-build
14 CONFIGURE_ARGS: --enable-docs --enable-trace-backends=log,simple,syslog
16 check-system-alpine:
19 - job: build-system-alpine
[all …]
/qemu/hw/sh4/
H A Dsh7750.c26 #include "qemu/osdep.h"
33 #include "hw/qdev-properties.h"
34 #include "hw/qdev-properties-system.h"
86 return s->cpu->env.features & SH_FEATURE_BCR3_AND_BCR4; in has_bcr3_and_bcr4()
118 return (s->portdira & s->pdtra) | /* CPU */ in porta_lines()
119 (s->periph_portdira & s->periph_pdtra) | /* Peripherals */ in porta_lines()
120 (~(s->portdira | s->periph_portdira) & s->portpullupa); /* Pullups */ in porta_lines()
125 return (s->portdirb & s->pdtrb) | /* CPU */ in portb_lines()
126 (s->periph_portdirb & s->periph_pdtrb) | /* Peripherals */ in portb_lines()
127 (~(s->portdirb | s->periph_portdirb) & s->portpullupb); /* Pullups */ in portb_lines()
[all …]
/qemu/util/
H A Dcutils.c25 #include "qemu/osdep.h"
26 #include "qemu/host-utils.h"
43 #include <mach-o/dyld.h>
51 #include "qemu/ctype.h"
52 #include "qemu/cutils.h"
53 #include "qemu/error-report.h"
59 memset(buf + len, pad, buf_size - len); in strpadcpy()
72 if (c == 0 || q >= buf + buf_size - 1) in pstrcpy()
85 pstrcpy(buf + len, buf_size - len, s); in pstrcat()
158 int y = tm->tm_year + 1900, m = tm->tm_mon + 1, d = tm->tm_mday; in mktimegm()
[all …]
/qemu/hw/s390x/
H A Ds390-pci-inst.c10 * your option) any later version. See the COPYING file in the top-level
14 #include "qemu/osdep.h"
18 #include "qemu/error-report.h"
22 #include "hw/s390x/s390-pci-inst.h"
23 #include "hw/s390x/s390-pci-bus.h"
24 #include "hw/s390x/s390-pci-kvm.h"
25 #include "hw/s390x/s390-pci-vfio.h"
32 if (iommu->dma_limit) { in inc_dma_avail()
33 iommu->dma_limit->avail++; in inc_dma_avail()
39 if (iommu->dma_limit) { in dec_dma_avail()
[all …]
/qemu/hw/usb/
H A Dhcd-xhci.c5 * Date: 2011-05-11 ; Author: Hector Martin <hector@marcansoft.com>
6 * Based on usb-ohci.c, emulates Renesas NEC USB 3.0
22 #include "qemu/osdep.h"
23 #include "qemu/timer.h"
24 #include "qemu/log.h"
25 #include "qemu/module.h"
26 #include "qemu/queue.h"
28 #include "hw/qdev-properties.h"
32 #include "hcd-xhci.h"
415 return lookup_name(event->ccode, TRBCCode_names, in event_name()
[all …]