/qemu/target/hexagon/ |
H A D | gen_helper_protos.py | 35 declared = [] 37 declared.append(ret_type) 40 declared.append(arg.proto_arg) 42 arguments = ", ".join(declared) 48 f.write(f"DEF_HELPER_{len(declared) - 1}({tag}, {arguments})\n") 50 f.write(f"DEF_HELPER_FLAGS_{len(declared) - 1}({tag}, "
|
H A D | gen_tcg_funcs.py | 67 declared = [] 71 reg.idef_arg(declared) 74 declared.append(hex_common.imm_name(immlett)) 76 arguments = ", ".join(["ctx", "ctx->insn", "ctx->pkt"] + declared) 83 declared = [] 86 declared.append(ret_type) 89 declared.append(arg.call_arg) 91 arguments = ", ".join(declared)
|
H A D | gen_helper_funcs.py | 43 declared = [] 45 declared.append(arg.func_arg) 47 arguments = ", ".join(declared)
|
H A D | hex_common.py | 344 def idef_arg(self, declared): argument 345 declared.append(self.reg_tcg()) 559 def idef_arg(self, declared): argument 560 declared.append(self.reg_tcg()) 561 declared.append("CS")
|
/qemu/target/hexagon/idef-parser/ |
H A D | idef-parser.h | 134 * Semantic record of the VARID token, identifying declared variables 142 * Data structure uniquely identifying a declared VARID variable, used for 143 * keeping track of declared variable, so that any variable is declared only 171 HexVar var; /**< rvalue of declared variable type */ 210 unsigned tmp_count; /**< Index of the last declared TCGv temp */ 211 unsigned qemu_tmp_count; /**< Index of the last declared int temp */ 212 unsigned if_count; /**< Index of the last declared if label */
|
H A D | README.rst | 59 - Keep track of which registers, among the declared one, have been 76 declared by the declaration statements. In this case all the three registers 77 will be declared, ``RsV`` and ``RtV`` will also be read and ``RdV`` will be 94 registers, storing the result in the just declared temporary. 157 declared anywhere, but rather a symbol which is easy to match in 283 Similarly to C, variables in the input code must be explicitly declared, such as 295 which are later automatically freed at the end of the function they're declared 296 in. Contrary to C, we only allow variables to be declared with an integer type 331 name, size, and bit width of the newly declared variable. In addition, this 332 function also ensures that variables aren't declared multiple times, and prints
|
/qemu/scripts/codeconverter/codeconverter/ |
H A D | qom_type_info.py | 350 # self.info("No type checkers declared for %s", uppercase) 352 …# self.warn("Can't find where type checkers for %s (%s) are declared. We will need them to… 405 # self.warn("Can't find where parent type %s is declared", parent_typename) 514 d.warn("instance type checker for %s already declared", uppercase) 576 d.warn("instance type declared here (%s)", d.instancetype) 581 d.warn("class type declared here (%s)", d.classtype) 641 self.warn("class type declared for %s", uppercase) 661 d.warn("instance type declared here (%s)", d.instancetype) 666 d.warn("class type declared here") 746 parent.info("parent type declared here") [all …]
|
H A D | qom_macros.py | 643 """Add DECLARE_*_TYPE(..., void) when there's no declared type""" 684 self.info("type name for %s already declared", uppercase)
|
/qemu/docs/devel/ |
H A D | qom.rst | 313 A type is declared using the OBJECT_DECLARE macro family. In types 344 The 'struct MyDevice' needs to be declared separately. 345 If the type requires virtual functions to be declared in the class 352 own virtual functions (i.e. which was declared with OBJECT_DECLARE_SIMPLE_TYPE)
|
H A D | style.rst | 149 Public functions from a file or subsystem (declared in headers) tend 334 If a variable is counting something, it should be declared with an 634 * Variables declared with g_auto* MUST always be initialized, 637 * If a variable declared with g_auto* holds a value which must
|
H A D | control-flow-integrity.rst | 19 function pointer declared in the source code.
|
H A D | rust.rst | 46 A target for ``rustfmt`` is also declared in ``rust/meson.build``: 299 the wrapper to be declared thread-safe::
|
H A D | decodetree.rst | 103 to have been already declared, typically via a second decoder.
|
H A D | reset.rst | 6 The reset of qemu objects is handled using the resettable interface declared
|
/qemu/rust/qemu-api/src/ |
H A D | qom.rs | 141 /// no checking whatsoever of what is declared. It is the caller's 155 // declared above. 343 // SAFETY: soundness is declared via IsA<U>, which is an unsafe trait; in upcast() 364 // SAFETY: soundness is declared via IsA<U>, which is an unsafe trait; in upcast_mut() 432 /// For classes declared in C: 437 /// to the superclass, as declared in the `TypeInfo` 442 /// For classes declared in Rust and implementing [`ObjectImpl`]: 497 /// right now, interfaces can only be declared in C. 589 // SAFETY: soundness is declared via IsA<U>, which is an unsafe trait in upcast()
|
/qemu/qga/vss-win32/ |
H A D | vss-common.h | 107 * COM initializer; this should declared before COMPointer to uninitialize COM
|
/qemu/include/system/ |
H A D | ramblock.h | 16 * The functions declared here will be removed soon.
|
H A D | os-win32.h | 65 * These functions are not declared in setjmp.h because __aarch64__ defines
|
H A D | ram_addr.h | 16 * The functions declared here will be removed soon.
|
/qemu/include/qemu/ |
H A D | coroutine-tls.h | 102 * Define a variable in Thread Local Storage that was previously declared from
|
/qemu/tests/functional/qemu_test/ |
H A D | asset.py | 29 # Instances of this class must be declared as class level variables
|
/qemu/scripts/ |
H A D | block-coroutine-wrapper.py | 124 # Match wrappers declared with a co_wrapper mark
|
H A D | simpletrace.py | 113 f'{e} event is logged but is not declared in the trace events'
|
/qemu/scripts/tracetool/ |
H A D | __init__.py | 106 "declared as 'void *'" % name)
|
/qemu/include/qom/ |
H A D | object.h | 232 * The object struct and class struct need to be declared manually. 249 * declared. 252 * virtual methods declared. 425 * no requirement for a class struct. If you declared your type with
|