EP3274824A1 - Effiziente adressenübersetzung - Google Patents

Effiziente adressenübersetzung

Info

Publication number
EP3274824A1
EP3274824A1 EP15886782.0A EP15886782A EP3274824A1 EP 3274824 A1 EP3274824 A1 EP 3274824A1 EP 15886782 A EP15886782 A EP 15886782A EP 3274824 A1 EP3274824 A1 EP 3274824A1
Authority
EP
European Patent Office
Prior art keywords
offset
isa
guest
zone
host
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
EP15886782.0A
Other languages
English (en)
French (fr)
Other versions
EP3274824B1 (de
EP3274824A4 (de
Inventor
Xueliang ZHONG
Yong Wu
Yihua JIN
Jianhui Li
Xiaodong Lin
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Intel Corp
Original Assignee
Intel Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Intel Corp filed Critical Intel Corp
Publication of EP3274824A1 publication Critical patent/EP3274824A1/de
Publication of EP3274824A4 publication Critical patent/EP3274824A4/de
Application granted granted Critical
Publication of EP3274824B1 publication Critical patent/EP3274824B1/de
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F12/00Accessing, addressing or allocating within memory systems or architectures
    • G06F12/02Addressing or allocation; Relocation
    • G06F12/08Addressing or allocation; Relocation in hierarchically structured memory systems, e.g. virtual memory systems
    • G06F12/10Address translation
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/455Emulation; Interpretation; Software simulation, e.g. virtualisation or emulation of application or operating system execution engines
    • G06F9/45533Hypervisors; Virtual machine monitors
    • G06F9/45554Instruction set architectures of guest OS and hypervisor or native processor differ, e.g. Bochs or VirtualPC on PowerPC MacOS
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/30Arrangements for executing machine instructions, e.g. instruction decode
    • G06F9/3017Runtime instruction translation, e.g. macros
    • G06F9/30174Runtime instruction translation, e.g. macros for non-native instruction set, e.g. Javabyte, legacy code
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/30Arrangements for executing machine instructions, e.g. instruction decode
    • G06F9/34Addressing or accessing the instruction operand or the result ; Formation of operand address; Addressing modes
    • G06F9/355Indexed addressing
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/455Emulation; Interpretation; Software simulation, e.g. virtualisation or emulation of application or operating system execution engines
    • G06F9/45533Hypervisors; Virtual machine monitors
    • G06F9/45558Hypervisor-specific management and integration aspects
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/455Emulation; Interpretation; Software simulation, e.g. virtualisation or emulation of application or operating system execution engines
    • G06F9/45533Hypervisors; Virtual machine monitors
    • G06F9/45558Hypervisor-specific management and integration aspects
    • G06F2009/45583Memory management, e.g. access or allocation

Definitions

  • the present disclosure relates to address translation, in particular to, efficient address translation.
  • ISA instruction set architecture
  • An ISA is a part of a computing device architecture related to programming, including the native data types, instructions, registers, addressing modes, memory architecture, interrupt and exception handling, and external I/O.
  • ISAs typically have an associated native word size, for example, 32-bit, 64-bit, etc.
  • the native word size is related to register size in bits as well as memory address size and corresponding capacity of a memory address space.
  • Applications designed to execute on a selected computing device typically include instructions that correspond to the native word size of the computing device.
  • FIG. 1 illustrates a functional block diagram of a computing device according to various embodiments of the present disclosure
  • FIG. 2 is a memory diagram illustrating source (guest) and target (host) memory architectures according to various embodiments of the present disclosure
  • FIG. 3 illustrates three example source ISA instruction translations according to one embodiment of the present disclosure.
  • FIG. 4 is a flowchart of efficient address translation operations according to various embodiments of the present disclosure.
  • guest ISA a first ISA
  • host ISA a second ISA
  • the guest (i.e., source) ISA may have a native word size (in bits) that is less than the native word size of the host (i.e., target) ISA.
  • guest ISA may correspond to ARMv7 ISA (available from Holding, plc, Cambridge, United Kingdom) and host ISA may correspond to an X86-64 ISA (for example, X86-64 ISA available from Corporation, Santa Clara, California) .
  • the ARMv7 ISA has a 32-bit native word size and the X86-64 ISA has a 64 bit native word size.
  • Such execution may be accomplished by emulating guest operations on the host.
  • Emulation includes translating instructions from the source ISA to the target ISA and translating memory addresses from the guest to the host. Instructions may differ between the ISAs, e.g., a LD instruction or a MOV instruction configured to load (i.e., move) contents of a memory location into a register. Numbers of bits in results of arithmetic operations correspond to native word sizes and thus, may differ. Memory addresses may differ since a size of memory and associated number of memory addresses are related to native word size and thus, to ISA.
  • Translations may be performed statically by a compiler (i.e., prior to runtime) and/or dynamically (i.e., during runtime) by ajust-in-time (JIT) compiler, by a guest operating system (OS) and/or by a virtual machine (VM) , as described herein.
  • JIT just-in-time
  • OS guest operating system
  • VM virtual machine
  • Translation may include adding one or more control prefix (es) to a target instruction configured to ensure emulation accuracy.
  • control prefix es
  • an operation control prefix may be added to a target instruction configured to ensure that arithmetic results are limited to the source ISA native word size.
  • an address control prefix configured to ensure that the translated address corresponds to a guest native address space, may be added to a target memory access instruction that includes a base ⁇ offset calculation.
  • the control prefixes are configured to ensure that behavior resulting from execution of an emulated source ISA instruction is the same on the host as behavior resulting from execution of the source ISA on its native platform. Although providing a benefit, including such prefixes consumes computing device resources.
  • Each prefix increases an amount of memory occupied by the application since at least the address control prefix may be added to each memory access instruction that includes a base ⁇ offset address calculation. Operations associated with decoding and/or executing the prefixes consume more processor resources. Further, the increased memory usage associated with the control prefixes may increase cache misses and thus increase latencies associated with memory accesses.
  • the methods and systems are configured to reduce a number of address control prefixes while ensuring accurate behavior resulting from execution of a source ISA instruction on a target ISA platform (i.e., computing device) .
  • the address control prefix may be omitted from a memory access instruction that includes a base plus or minus ( ⁇ ) an offset calculation when the offset is a constant between zero and a maximum offset.
  • the address control prefix is included for memory access instructions when at least one of the offset is not a constant and/or the offset is not between zero and a maximum offset.
  • a size (i.e., an amount) of the maximum offset is related to characteristics of an associated OS.
  • the maximum offset may be 4096.
  • the maximum offset may be 8192.
  • the maximum offset may be greater than or less than 4096.
  • the offset may be greater than or less than 8192.
  • a memory address calculation that includes adding or subtracting an offset to or from a base address may result in an overflow, an underflow or neither an overflow nor an underflow.
  • the resulting address points to a similar memory location in both the source address space and the target address space.
  • Overflow may occur as a result of adding an offset to a base address if the sum of base address and offset is greater than a maximum allowable address addressable by the guest/source ISA. In other words, higher order bits are truncated so that the resulting address corresponds to a smaller address.
  • Underflow may occur as a result of subtracting an offset from a base address if the offset is greater than the base address.
  • the result is negative and when a result is negative, because of the manner in which negative numbers are represented in a computing device (e.g., two’s complement, ones’ complement) , the highest order bit (s) are set, corresponding to a relatively large number positive number (i.e., unsigned integer) .
  • a four bit source native word size, an eight bit target native word size and a base address of 0100 b may be considered.
  • a maximum source address is 1111 b and a maximum target address is 1111 1111 b , where the subscript b corresponds to binary.
  • Overflow in the source platform address space may occur when an offset greater than or equal to 1100 b is added to the base address.
  • overflow or underflow may trigger a memory access exception (i.e., fault) when the overflow or underflow results in an address that points to reserved memory space.
  • reserved memory space may include source kernel reserved memory in low memory, i.e., memory addresses at or near zero, and source kernel space in high memory, i.e., memory addresses at or near a maximum allowable address.
  • Source kernel reserved may thus correspond to an overflow zone and source kernel space may correspond to an underflow zone.
  • Respective size (s) of the source kernel reserved memory and source kernel space may be related to architecture and/or OS.
  • the target architecture may similarly include reserved memory space: target kernel reserved in low memory and target kernel space in high memory. Applications generally do not have permission to access reserved memory space. Thus, an address that points to reserved memory space may draw a memory access exception that may then be communicated to the application attempting the access.
  • Such reserved memory space may be managed by, for example, an OS and/or VMM (virtual machine monitor) .
  • memory address calculations i.e., base ⁇ offset
  • a base address plus offset calculation that may cause an overflow (base +offset>maximum memory address) on a source platform may instead point to a memory location in user space on the target platform.
  • a base address minus offset calculation that may cause an underflow on the source platform may similarly cause an underflow on the target platform.
  • Methods and systems according to the present disclosure are configured to provide an overflow zone and an underflow zone in target memory address space that are related to respective overflow and underflow zones in source memory address space.
  • a maximum offset value is related to size (s) of the target overflow zone and underflow zone, as described herein. Because the target native word is larger than the source native word, a base plus offset calculation may not overflow on the target, rather may point to a memory location in user space at a higher memory address than a maximum source memory address.
  • a target overflow zone may be defined that starts at an upper limit of source memory address space and has a size related to the maximum offset, as described herein.
  • the target overflow zone may be emulated by setting memory access privileges for memory locations in this zone to prevent read, write and/or execution access. For example, memory access privileges may be set as no read, no write and no execution privileges via a memory protection system call. Thus, a memory address result that points the target overflow zone may draw a memory access exception without an address control prefix.
  • guest memory address calculations that include a base address ⁇ offset, where the offset is constant and between zero and a maximum offset, may be accurately emulated without an address control prefix. Operations associated with validation of the address translation may be avoided. Guest memory address calculations where the offset is not constant and/or is not within the range of zero to maximum offset may include the address control prefix. Thus, memory usage may be decreased, processor resources may be freed and cache misses may be mitigated. Further, accurate emulation may be achieved without additional validation operations configured to confirm accuracy of a result.
  • FIG. 1 illustrates a system block diagram of a computing device 100 according to various embodiments of the present disclosure.
  • Computing device 100 may include, but is not limited to, a server, a workstation computer, a desktop computer, a laptop computer, a tablet computer (e.g., and the like) , an ultraportable computer, an ultramobile computer, a netbook computer and/or a subnotebook computer, a mobile telephone including, but not limited to, a smart phone, (e.g., -based phone, -based phone, -based phone, etc. ) , etc.
  • a smart phone e.g., -based phone, -based phone, -based phone, etc.
  • Computing device 100 includes processor 102, memory 104, one or more peripheral device (s) 106, host operating system (OS) 110, virtual machine (VM) 120 and compiler 130.
  • Processor 102 is configured to perform operations associated with computing device 100.
  • Peripheral devices 106 may include, for example, user interface device (s) including a display, a touch-screen display, printer, keypad, keyboard, etc., sensor (s) including accelerometer, global positioning system (GPS) , gyroscope, etc., input/output (I/O) port (s) , communication logic, wired and/or wireless, storage device (s) including hard disk drives, solid-state drives, removable storage media, etc.
  • Memory 104 includes any type of memory technology, as described herein.
  • Computing device 100 may further include virtual machine monitor (VMM) 112.
  • VMM 112 may correspond to and/or be included in host OS 110. In another embodiment, VMM 112 may not be included in host OS 110.
  • VM 120 hosts a guest OS 122 and an application 124.
  • VM 120 may further host compiler 126 and/or translator logic 128.
  • translator logic 128 may be included in compiler 126. In some embodiments, translator logic 128 may be included in VM 120 and not in compiler 126. In some embodiments, translator logic 128 may be included in compiler 130, i.e., may not be included in VM 120.
  • compiler 130 may correspond to a static compiler.
  • compiler 126 may correspond to a just-in-time (JIT) compiler.
  • the VMM (i.e., hypervisor) 112 is configured to provide an interface between VM 120 and circuitry associated with computing device 100.
  • the VMM 112 is configured to manage access to processor 102, memory 104 and/or peripheral device (s) 106 by VM 120.
  • Host OS 110 is configured to execute on processor 102 thus, a host native word size of host OS 110 and processor 102 may be the same.
  • the host native word size may thus correspond to the host ISA word size and the computing device 100 register word size.
  • the host native word size may include a number, m, bits. For example, m may be greater than or equal to four. For example, m may be equal to sixty four (64) .
  • Guest OS 122 may have an associated guest native word size of n bits, where n is less than m. For example, n may be greater than or equal to four. For example, n may be equal to thirty two (32) .
  • Application 124 may include instructions that correspond to the guest ISA.
  • VM 120 is configured to provide a guest execution environment of guest OS 122 and application 124. In other words, VM 120 may be configured to support guest OS 122 and application 124 while executing on computing device 100. VM 120 is configured to execute on processor 102 and to interact with host OS 110 and/or VMM 112. In an embodiment, VM 120 may correspond to a process VM. Compiler 126 is configured to compile, e.g., application 124 and/or guest OS 122 to execute on processor 102. For example, compiler 126 may correspond to a dynamic (just-in-time) compiler. In an embodiment, compiler 126 may include translator logic 128. In another embodiment, guest OS 122 may include translator logic. In another embodiment, VMM 112 may include translator logic 128.
  • translator logic 128 is configured to select, determine and/or set the maximum offset.
  • the maximum offset may then be stored in maximum offset store 129.
  • the maximum offset is related to the host (target) ISA and/or the guest (source) ISA.
  • the maximum offset may be related to the host OS and/or the source OS.
  • the maximum offset is related to a size of reserved memory.
  • an OS may reserve one or more pages of high memory as kernel space ( “kernel space” ) , e.g., to host the kernel.
  • the OS may reserve one or more pages of low memory for kernel purposes ( “kernel reserved” ) .
  • Translator logic 128 may then be configured to determine the maximum offset based, at least in part, on a size of the kernel space and/or a size of the kernel reserved region.
  • the maximum offset may be less than or equal to a minimum of the size of the guest kernel space and the size of the guest kernel reserved.
  • the maximum offset may be less than or equal to a minimum of the size of the guest kernel space, the size of the guest kernel reserved, the size of the host kernel space and a size of a created OF zone in the host, as described herein.
  • a first maximum offset related to an offset configured to be added to the base address may be determined and a second maximum offset related to an offset configured to be subtracted from the based address may be determined.
  • the first maximum offset may be less than or equal to a minimum of the size of guest kernel space and the size of the host kernel space and the second maximum offset may be less than or equal to a minimum of the guest kernel reserved and the created OF zone.
  • the maximum offset is configured to ensure, inter alia, that a memory address calculation (i.e., base minus offset) that would result in an underflow and a memory access exception on a guest platform results in a host address that is in the host kernel space and thus draws a corresponding memory access exception on the host, i.e., computing device 100.
  • Translator logic 128 is further configured to create an OF zone in the host address space configured to emulate a guest kernel reserved region.
  • a size of the created OF zone may be related to the maximum offset (i.e., a maximum offset value) , as described herein.
  • translator logic 128 may be configured to request that access privileges to memory locations included in the OF zone be set to prevent (i.e., deny) any read, write and/or execution access.
  • an address translation that results in a host address in the OF zone is configured to draw a memory access exception.
  • a base plus offset operation that results in an overflow may then draw the memory access exception based, at least in part, on the privileges settings.
  • an emulated memory access instruction that would draw an exception on a guest platform will draw a similar exception on computing device 110.
  • FIG. 2 is a memory diagram 200 illustrating source (guest) 202 and target (host) 204 memory architectures consistent with various embodiments of the present disclosure.
  • Target memory 204 corresponds to memory 104 of FIG. 1.
  • Source memory 202 includes 2 n memory locations.
  • Low memory i.e., near address zero
  • high memory i.e., near address 2 n
  • the kernel reserved region corresponds to an overflow (OF) zone 212
  • the guest kernel space corresponds to a underflow (UF) zone 216, as described herein.
  • Guest memory 202 may thus include three regions: OF zone 212, UF zone 216 and a user space 214.
  • the initializations of translator logic 128 are configured to emulate guest OF zone 212 and guest UF zone 216 in target memory 204.
  • Target memory 204 includes 2 m memory locations where m is greater than n.
  • Target memory 204 includes a first user memory region 220, a target kernel reserved region 221, a second user memory region 224 and a host kernel space in upper memory that corresponds to a host UF zone 226.
  • target memory 204 may include an OF zone 222 located adjacent to (and above) memory location 2 n .
  • Memory access privileges for OF zone 222 may be set to cause memory access attempts to draw a memory access exception, as described herein.
  • the maximum offset may be related to one or more of a size of OF zone 212, a size of UF zone 216, a size of OF zone 222 and/or a size of UF zone 226, as described herein.
  • a size of OF zone 222 may be selected (i.e., defined) to limit an amount of host memory space occupied by OF zone 222.
  • the maximum offset may then likewise be limited to less than or equal to the size of the OF zone 222.
  • host address space 204 is configured to emulate guest address space 202.
  • a memory address corresponds to user space 214 in guest memory space 202
  • a corresponding memory address in host address space 204 may also correspond to user space 220 or 224.
  • a host memory address that corresponds to a guest memory address that draws a memory access exception in guest address space 202 is configured to draw a memory access exception in host address space 204, as described herein.
  • Translator logic 128 is configured to determine whether an instruction is a memory access instruction, and if so, to determine whether the instruction includes a base ⁇ offset address calculation. If the instruction includes a base ⁇ offset address calculation, translator logic 128 is configured to determine whether (or not) to add an address control prefix. Translator logic 128 is further configured to manage translation of the instruction (and address) from guest ISA to host ISA.
  • translator logic 128 may be configured to add the address control prefix to a memory access instruction that is a base ⁇ offset type instruction when the offset is not a constant and/or the offset is not between zero and the maximum offset.
  • Translator logic 128 may be further configured to translate the base ⁇ offset as a guest address operation.
  • the address control prefix is configured to ensure address calculation is limited to the native word size of the guest ISA. The instruction may then be translated into a target ISA instruction.
  • translator logic 128 may be configured to not add the address control prefix to a memory access instruction that is a base ⁇ offset type instruction when the offset is a constant and the offset is between zero and the maximum offset.
  • Translator logic 128 may be further configured to translate the base ⁇ offset as a host address operation.
  • the address calculation may be performed using the native word size of the host ISA.
  • An address result that would draw a memory access exception on the guest platform is configured to draw a memory access exception on computing device 100, as described herein. Address calculations may thus be emulated by computing platform 100 with associated host ISA.
  • FIG. 3 illustrates three example source ISA translations 300 according to one embodiment of the present disclosure.
  • the source ISA instructions may correspond to an ARMv7 ISA that has a 32 bit native word size and the target ISA may correspond to an X86-64 ISA that has a 64 bit native word size.
  • the maximum offset for these examples is 4096 (i.e., 0x800) and all three examples are memory access instructions (i.e.,load instructions) that include base ⁇ offset calculations.
  • all three examples are candidates for analysis by translator logic 128, as described herein.
  • a first source ISA instruction 302 corresponds to a first translated target ISA instruction 312.
  • the offset for the first source ISA instruction 302 is 0x10 and 0x10 is a constant greater than zero and less than 0x800, thus the first source ISA instruction may be translated to the target ISA without adding an address control prefix.
  • the first translated target ISA instruction 312 illustrates this result.
  • Instruction 312 is a MOV instruction configured to move the contents of a target memory location pointed to by the contents of register RDI plus offset 0x10 into register R8D.
  • the translation may be performed as a host address calculation, i.e., as a 64-bit calculation.
  • a second source ISA instruction 304 corresponds to a second translated target ISA instruction 314.
  • the offset for the second source ISA instruction 304 is 0x40008000 and 0x40008000 is greater than 0x800, thus an address control prefix (e.g., ADDR32) may be prepended to the translated second source ISA instruction.
  • the second translated target ISA instruction 314 illustrates this result.
  • Instruction 314 is a MOV instruction configured to move the contents of a target memory location pointed to by the contents of register EDI plus offset 0x40008000 into register R10D.
  • the translation may be performed as a guest address calculation (i.e., as a 32-bit calculation) and the address control prefix is configured to ensure that the emulation is accurate.
  • a third source ISA instruction 306 corresponds to a third translated target ISA instruction 316.
  • the offset for the third source ISA instruction 306 is contained in register EDX and may not be constant, thus the address control prefix, ADDR32, may be prepended to the translated third source ISA instruction 316.
  • the third translated target ISA instruction 316 illustrates this result.
  • Instruction 316 is a MOV instruction configured to move the contents of a target memory location pointed to by the contents of register EDI plus the contents of register EDX into register R11D.
  • the translation may be performed as a guest address calculation and the address control prefix is configured to ensure that the emulation is accurate.
  • a number of address control prefixes may be reduced while ensuring accurate behavior resulting from execution of a source ISA instruction on a target ISA platform (i.e., computing device 100) when a native word size of the source ISA is smaller than the native word size of the target ISA.
  • the address control prefix may be omitted from a memory access instruction when the address corresponds to a base plus or minus ( ⁇ ) an offset and the offset is a constant between zero and a maximum offset, as described herein.
  • FIG. 4 is a flowchart 400 of efficient address translation operations according to various embodiments of the present disclosure. The operations may be performed, for example, by computing device 100, in particular, translator logic 128, compiler 126, guest OS 122, VM 120 and/or compiler 130 of FIG. 1.
  • Operations of this embodiment may begin with receiving a source ISA program counter 402.
  • a program counter is configured to point to a next instruction.
  • the next instruction may be fetched and decoded at operation 404.
  • Whether the instruction contains a base plus or minus ( ⁇ ) offset address calculation may be determined at operation 406. If the instruction does not contain a base ⁇ offset address calculation, program flow may proceed to operation 416. If the instruction does contain a base ⁇ offset address calculation, whether the offset is a constant and between zero and a maximum offset may be determined at operation 408. If the offset is a constant and is in the range between zero and the maximum offset, the base ⁇ offset may be translated as a host (i.e., target) address calculation at operation 410.
  • the calculation may be performed using the host native word size and may yield a host native word size result.
  • An address control prefix may not be added to the translated instruction, i.e., the address control prefix may be omitted.
  • Program flow may then proceed to operation 416. If the offset is not a constant and/or the offset is not in the range between zero and maximum offset, an address control prefix may be added at operation 412.
  • the address control prefix is configured to constrain the address calculation and a result of the address calculation to a guest native word size, as described herein.
  • the base ⁇ offset may be translated as a guest address calculation at operation 414, i.e., may be limited to the guest native word size.
  • Program flow may then proceed to operation 416.
  • the instruction may be translated into a target ISA instruction at operation 416. Program flow may then continue at operation 418.
  • At least some guest memory address calculations that include a base address ⁇ offset may be accurately emulated without an address control prefix.
  • Guest memory address calculations where the offset is not constant and/or is not within the range of zero to maximum offset may include the address control prefix.
  • memory usage may be decreased, processor resources may be freed and cache misses may be mitigated.
  • FIG. 4 illustrates operations according various embodiments, it is to be understood that not all of the operations depicted in FIG. 4 are necessary for other embodiments.
  • the operations depicted in FIG. 4, and/or other operations described herein may be combined in a manner not specifically shown in any of the drawings, and such embodiments may include less or more operations than are illustrated in FIG. 4.
  • claims directed to features and/or operations that are not exactly shown in one drawing are deemed within the scope and content of the present disclosure.
  • VMM 112 may be configured to manage system resources and control tasks that are run on VM120, and/or system, e.g., computing device 100. VMM 112 may provide a layer of abstraction for underlying hardware to various virtual machines, e.g., VM 120. Guest OS may be implemented using Microsoft Windows v7 although other operating systems may be used.
  • Memory 104 may include one or more of the following types of memory: semiconductor firmware memory, programmable memory, non-volatile memory, read only memory, electrically programmable memory, random access memory, flash memory, magnetic disk memory, and/or optical disk memory. Either additionally or alternatively system memory may include other and/or later-developed types of computer-readable memory.
  • Embodiments of the operations described herein may be implemented in a computer-readable storage device having stored thereon instructions that when executed by one or more processors perform the methods.
  • the processor may include, for example, a processing unit and/or programmable circuitry.
  • the storage device may include a machine readable storage device including any type of tangible, non-transitory storage device, for example, any type of disk including floppy disks, optical disks, compact disk read-only memories (CD-ROMs) , compact disk rewritables (CD-RWs) , and magneto-optical disks, semiconductor devices such as read-only memories (ROMs) , random access memories (RAMs) such as dynamic and static RAMs, erasable programmable read-only memories (EPROMs) , electrically erasable programmable read-only memories (EEPROMs) , flash memories, magnetic or optical cards, or any type of storage devices suitable for storing electronic instructions.
  • ROMs read-only memories
  • RAMs random access memories
  • logic may refer to an app, software, firmware and/or circuitry configured to perform any of the aforementioned operations.
  • Software may be embodied as a software package, code, instructions, instruction sets and/or data recorded on non-transitory computer readable storage medium.
  • Firmware may be embodied as code, instructions or instruction sets and/or data that are hard-coded (e.g., nonvolatile) in memory devices.
  • Circuitry may comprise, for example, singly or in any combination, hardwired circuitry, programmable circuitry such as computer processors comprising one or more individual instruction processing cores, state machine circuitry, and/or firmware that stores instructions executed by programmable circuitry.
  • the logic may, collectively or individually, be embodied as circuitry that forms part of a larger system, for example, an integrated circuit (IC) , an application-specific integrated circuit (ASIC) , a system on-chip (SoC) , desktop computers, laptop computers, tablet computers, servers, smart phones, etc.
  • IC integrated circuit
  • ASIC application-specific integrated circuit
  • SoC system on-chip
  • a hardware description language may be used to specify circuit and/or logic implementation (s) for the various logic and/or circuitry described herein.
  • the hardware description language may comply or be compatible with a very high speed integrated circuits (VHSIC) hardware description language (VHDL) that may enable semiconductor fabrication of one or more circuits and/or logic described herein.
  • VHSIC very high speed integrated circuits
  • VHDL may comply or be compatible with IEEE Standard 1076-1987, IEEE Standard 1076.2, IEEE1076.1, IEEE Draft 3.0 of VHDL-2006, IEEE Draft 4.0 of VHDL-2008 and/or other versions of the IEEE VHDL standards and/or other hardware description standards.
  • this disclosure generally relates to an efficient address translation.
  • the methods and systems are configured to reduce a number of address control prefixes while ensuring accurate behavior resulting from execution of a source ISA instruction on a target ISA platform (i.e., computing device) .
  • the address control prefix may be omitted from a memory access instruction when the address corresponds to a base ⁇ an offset and the offset is a constant between zero and a maximum offset.
  • the address control prefix may be included for memory access instructions when the address corresponds to a base ⁇ an offset and at least one of the offset is not a constant and/or the offset is not between zero and a maximum offset.
  • Examples of the present disclosure include subject material such as a method, means for performing acts of the method, a device, or of an apparatus or system related to efficient address translation, as discussed below.
  • the device includes a processor; a memory and translator logic.
  • the processor is to execute a host instruction set.
  • the translator logic is to determine whether an offset is a constant and whether the offset is greater than zero and less than a maximum offset in response to receiving a guest memory access instruction that contains a base address plus or minus the offset.
  • the maximum offset is related to at least one of a host instruction set architecture (ISA) and a guest ISA.
  • ISA host instruction set architecture
  • This example includes the elements of example 1, wherein the translator logic is further to translate the base address plus or minus the offset as a host address calculation if the offset is a constant and the offset is greater than zero and less than the maximum offset.
  • This example includes the elements of example 1, wherein the translator logic is further to add an address control prefix to a corresponding host memory access instruction if at least one of the offset is not a constant and/or the offset is not greater than zero and less than the maximum offset; and the translator logic is further to translate the base address plus or minus the offset as a guest address calculation.
  • This example includes the elements according to any one of examples 1 through 3, wherein the translator logic is further to translate the guest memory access instruction from a source ISA into a target ISA.
  • This example includes the elements according to any one of examples 1 through 3, wherein a native word size of the guest ISA is less than a native word size of the host ISA, the guest memory access instruction related to the guest ISA.
  • This example includes the elements according to any one of examples 1 through 3, wherein the translator logic is further to define an overflow (OF) zone and an underflow (UF) zone in the memory, the OF zone and the UF zone related to the maximum offset.
  • OF overflow
  • UF underflow
  • This example includes the elements of example 6, wherein the translator logic is further to set memory access privileges of the OF zone to prevent read, write and execution access.
  • This example includes the elements of example 6, wherein the UF zone corresponds to a host kernel space.
  • This example includes the elements according to any one of examples 1 through 3, wherein a native word size of the guest ISA is 32 bits and a native word size of the host ISA is 64 bits.
  • This example includes the elements of example 9, wherein the guest ISA corresponds to an ARMv7 ISA and the host ISA corresponds to an x86-64 ISA.
  • This example includes the elements according to any one of examples 1 through 3, wherein the translator logic is included in a virtual machine (VM) .
  • VM virtual machine
  • This example includes the elements according to any one of examples 1 through 3, wherein the translator logic is included in at least one of a dynamic compiler and a static compiler.
  • This example includes the elements according to any one of examples 1 through 3, wherein the maximum offset is 4096.
  • the method includes determining, by translator logic, whether an offset is a constant and whether the offset is greater than zero and less than a maximum offset in response to receiving a guest memory access instruction that contains a base address plus or minus the offset.
  • the maximum offset is related to at least one of a host instruction set architecture (ISA) and a guest ISA.
  • This example includes the elements of example 14, and further includes translating, by the translator logic, the base address plus or minus the offset as a host address calculation if the offset is a constant and the offset is greater than zero and less than the maximum offset.
  • This example includes the elements of example 14, and further includes adding, by the translator logic, an address control prefix to a corresponding host memory access instruction if at least one of the offset is not a constant and/or the offset is not greater than zero and less than the maximum offset; and translating, by the translator logic, the base address plus or minus the offset as a guest address calculation.
  • This example includes the elements of example 14, and further includes translating, by the translator logic, the guest memory access instruction from a source ISA into a target ISA.
  • This example includes the elements of example 14, wherein a native word size of the guest ISA is less than a native word size of the host ISA, the guest memory access instruction related to the guest ISA.
  • This example includes the elements of example 14, and further includes defining, by the translator logic, an overflow (OF) zone and an underflow (UF) zone in a memory, the OF zone and the UF zone related to the maximum offset.
  • OF overflow
  • UF underflow
  • This example includes the elements of example 19, and further includes setting, by the translator logic, memory access privileges of the OF zone to prevent read, write and execution access.
  • This example includes the elements of example 19, wherein the UF zone corresponds to a host kernel space.
  • This example includes the elements of example 14, wherein a native word size of the guest ISA is 32 bits and a native word size of the host ISA is 64 bits.
  • This example includes the elements of example 22, wherein the guest ISA corresponds to an ARMv7 ISA and the host ISA corresponds to an x86-64 ISA.
  • This example includes the elements of example 14, wherein the translator logic is included in a virtual machine (VM) .
  • VM virtual machine
  • This example includes the elements of example 14, wherein the translator logic is included in at least one of a dynamic compiler and a static compiler.
  • This example includes the elements of example 14, wherein the maximum offset is 4096.
  • the device includes a computer readable storage device having stored thereon instructions that when executed by one or more processors result in the following operations including: determining whether an offset is a constant and whether the offset is greater than zero and less than a maximum offset in response to receiving a guest memory access instruction that contains a base address plus or minus the offset, the maximum offset related to at least one of a host instruction set architecture (ISA) and a guest ISA.
  • ISA host instruction set architecture
  • This example includes the elements of example 27, wherein the instructions that when executed by one or more processors results in the following additional operations including translating the base address plus or minus the offset as a host address calculation if the offset is a constant and the offset is greater than zero and less than the maximum offset.
  • This example includes the elements of example 27, wherein the instructions that when executed by one or more processors results in the following additional operations including adding an address control prefix to a corresponding host memory access instruction if at least one of the offset is not a constant and/or the offset is not greater than zero and less than the maximum offset; and translating the base address plus or minus the offset as a guest address calculation.
  • This example includes the elements according to any one of examples 27 through 29, wherein the instructions that when executed by one or more processors results in the following additional operations including translating the guest memory access instruction from a source ISA into a target ISA.
  • This example includes the elements according to any one of examples 27 through 29, wherein a native word size of the guest ISA is less than a native word size of the host ISA, the guest memory access instruction related to the guest ISA.
  • This example includes the elements according to any one of examples 27 through 29, wherein the instructions that when executed by one or more processors results in the following additional operations including defining an overflow (OF) zone and an underflow (UF) zone in a memory, the OF zone and the UF zone related to the maximum offset.
  • OF overflow
  • UF underflow
  • This example includes the elements of example 32, wherein the instructions that when executed by one or more processors results in the following additional operations including setting memory access privileges of the OF zone to prevent read, write and execution access.
  • This example includes the elements of example 32, wherein the UF zone corresponds to a host kernel space.
  • This example includes the elements according to any one of examples 27 through 29, wherein a native word size of the guest ISA is 32 bits and a native word size of the host ISA is 64 bits.
  • This example includes the elements of example 35, wherein the guest ISA corresponds to an ARMv7 ISA and the host ISA corresponds to an x86-64 ISA.
  • This example includes the elements according to any one of examples 27 through 29, wherein the translator logic is included in a virtual machine (VM) .
  • VM virtual machine
  • This example includes the elements according to any one of examples 27 through 29, wherein the translator logic is included in at least one of a dynamic compiler and a static compiler.
  • This example includes the elements according to any one of examples 27 through 29, wherein the maximum offset is 4096.
  • the device includes means for determining, by translator logic, whether an offset is a constant and whether the offset is greater than zero and less than a maximum offset in response to receiving a guest memory access instruction that contains a base address plus or minus the offset.
  • the maximum offset is related to at least one of a host instruction set architecture (ISA) and a guest ISA.
  • This example includes the elements of example 40, and further includes means for translating, by the translator logic, the base address plus or minus the offset as a host address calculation if the offset is a constant and the offset is greater than zero and less than the maximum offset.
  • This example includes the elements of example 40, and further includes means for adding, by the translator logic, an address control prefix to a corresponding host memory access instruction if at least one of the offset is not a constant and/or the offset is not greater than zero and less than the maximum offset; and means for translating, by the translator logic, the base address plus or minus the offset as a guest address calculation.
  • This example includes the elements according to any one of examples 40 through 42, and further includes means for translating, by the translator logic, the guest memory access instruction from a source ISA into a target ISA.
  • This example includes the elements according to any one of examples 40 through 42, wherein a native word size of the guest ISA is less than a native word size of the host ISA, the guest memory access instruction related to the guest ISA.
  • This example includes the elements according to any one of examples 40 through 42, and further includes means for defining, by the translator logic, an overflow (OF) zone and an underflow (UF) zone in a memory, the OF zone and the UF zone related to the maximum offset.
  • OF overflow
  • UF underflow
  • This example includes the elements of example 45, and further includes means for setting, by the translator logic, memory access privileges of the OF zone to prevent read, write and execution access.
  • This example includes the elements of example 45, wherein the UF zone corresponds to a host kernel space.
  • This example includes the elements according to any one of examples 40 through 42, wherein a native word size of the guest ISA is 32 bits and a native word size of the host ISA is 64 bits.
  • This example includes the elements of example 48, wherein the guest ISA corresponds to an ARMv7 ISA and the host ISA corresponds to an x86-64 ISA.
  • This example includes the elements according to any one of examples 40 through 42, wherein the translator logic is included in a virtual machine (VM) .
  • VM virtual machine
  • This example includes the elements according to any one of examples 40 through 42, wherein the translator logic is included in at least one of a dynamic compiler and a static compiler.
  • This example includes the elements according to any one of examples 40 through 42, wherein the maximum offset is 4096.
  • This example includes the elements according to any one of examples 1 through 3, wherein the maximum offset is less than or equal to a minimum of a size of a guest kernel space and a size of a guest kernel reserved.
  • This example includes the elements according to any one of examples 1 through 3, wherein the maximum offset is less than or equal to a minimum of a size of a guest kernel space, a size of a guest kernel reserved, a size of a host kernel space and a size of a created OF (overflow) zone.
  • This example includes the elements according to any one of examples 1 through 3, wherein the guest memory access instruction contains the base address plus the offset and the maximum offset corresponds to a first maximum offset that is less than or equal to a minimum of a size of a guest kernel space and a size of a host kernel space.
  • This example includes the elements according to any one of examples 1 through 3, wherein the guest memory access instruction contains the base address minus the offset and the maximum offset corresponds to a second maximum offset that is less than or equal to a minimum of a size of a guest kernel reserved and a size of a created OF (overflow) zone.
  • This example includes the elements of example 6, wherein a size of the OF zone is configured to limit an amount of host memory space occupied by the OF zone.
  • This example includes the elements of example 14, wherein the maximum offset is less than or equal to a minimum of a size of a guest kernel space and a size of a guest kernel reserved.
  • This example includes the elements of example 14, wherein the maximum offset is less than or equal to a minimum of a size of a guest kernel space, a size of a guest kernel reserved, a size of a host kernel space and a size of a created OF (overflow) zone.
  • This example includes the elements of example 14, wherein the guest memory access instruction contains the base address plus the offset and the maximum offset corresponds to a first maximum offset that is less than or equal to a minimum of a size of a guest kernel space and a size of a host kernel space.
  • This example includes the elements of example 14, wherein the guest memory access instruction contains the base address minus the offset and the maximum offset corresponds to a second maximum offset that is less than or equal to a minimum of a size of a guest kernel reserved and a size of a created OF (overflow) zone.
  • This example includes the elements of example 19, wherein a size of the OF zone is configured to limit an amount of host memory space occupied by the OF zone.
  • This example includes the elements according to any one of examples 27 through 29, wherein the maximum offset is less than or equal to a minimum of a size of a guest kernel space and a size of a guest kernel reserved.
  • This example includes the elements according to any one of examples 27 through 29, wherein the maximum offset is less than or equal to a minimum of a size of a guest kernel space, a size of a guest kernel reserved, a size of a host kernel space and a size of a created OF (overflow) zone.
  • This example includes the elements according to any one of examples 27 through 29, wherein the guest memory access instruction contains the base address plus the offset and the maximum offset corresponds to a first maximum offset that is less than or equal to a minimum of a size of a guest kernel space and a size of a host kernel space.
  • This example includes the elements according to any one of examples 27 through 29, wherein the guest memory access instruction contains the base address minus the offset and the maximum offset corresponds to a second maximum offset that is less than or equal to a minimum of a size of a guest kernel reserved and a size of a created OF (overflow) zone.
  • This example includes the elements of example 32, wherein a size of the OF zone is configured to limit an amount of host memory space occupied by the OF zone.
  • This example includes the elements according to any one of examples 40 through 42, wherein the maximum offset is less than or equal to a minimum of a size of a guest kernel space and a size of a guest kernel reserved.
  • This example includes the elements according to any one of examples 40 through 42, wherein the maximum offset is less than or equal to a minimum of a size of a guest kernel space, a size of a guest kernel reserved, a size of a host kernel space and a size of a created OF (overflow) zone.
  • This example includes the elements according to any one of examples 40 through 42, wherein the guest memory access instruction contains the base address plus the offset and the maximum offset corresponds to a first maximum offset that is less than or equal to a minimum of a size of a guest kernel space and a size of a host kernel space.
  • This example includes the elements according to any one of examples 40 through 42, wherein the guest memory access instruction contains the base address minus the offset and the maximum offset corresponds to a second maximum offset that is less than or equal to a minimum of a size of a guest kernel reserved and a size of a created OF (overflow) zone.
  • This example includes the elements of example 45, wherein a size of the OF zone is configured to limit an amount of host memory space occupied by the OF zone.
  • a computer readable storage device having stored thereon instructions that when executed by one or more processors result in the following operations including the method according to any one of claims 14 to 26 and 58 to 62.
  • a system including at least one device arranged to perform the method of any one of claims 14 to 26 and 58 to 62.
  • a device including means to perform the method of any one of claims 14 to 26 and 58 to 62.
EP15886782.0A 2015-03-27 2015-03-27 Effiziente adressenübersetzung Active EP3274824B1 (de)

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
PCT/CN2015/075219 WO2016154795A1 (en) 2015-03-27 2015-03-27 Efficient address translation

Publications (3)

Publication Number Publication Date
EP3274824A1 true EP3274824A1 (de) 2018-01-31
EP3274824A4 EP3274824A4 (de) 2018-12-12
EP3274824B1 EP3274824B1 (de) 2021-03-17

Family

ID=57003745

Family Applications (1)

Application Number Title Priority Date Filing Date
EP15886782.0A Active EP3274824B1 (de) 2015-03-27 2015-03-27 Effiziente adressenübersetzung

Country Status (4)

Country Link
US (2) US11422943B2 (de)
EP (1) EP3274824B1 (de)
CN (1) CN107430521B (de)
WO (1) WO2016154795A1 (de)

Families Citing this family (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP3274824B1 (de) 2015-03-27 2021-03-17 Intel Corporation Effiziente adressenübersetzung
CN107807839B (zh) * 2016-09-09 2022-01-28 阿里巴巴集团控股有限公司 一种修改虚拟机内存数据的方法、装置及电子设备

Family Cites Families (21)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20020083421A1 (en) 2000-12-22 2002-06-27 Hitachi America, Ltd. Assembly language code compilation for an instruction-set architecture containing new instructions using the prior assembler
US7233998B2 (en) 2001-03-22 2007-06-19 Sony Computer Entertainment Inc. Computer architecture and software cells for broadband networks
US7886112B2 (en) 2006-05-24 2011-02-08 Sony Computer Entertainment Inc. Methods and apparatus for providing simultaneous software/hardware cache fill
US8028290B2 (en) 2006-08-30 2011-09-27 International Business Machines Corporation Multiple-core processor supporting multiple instruction set architectures
CN101425020A (zh) * 2007-10-31 2009-05-06 国际商业机器公司 对mmu仿真进行加速的方法、装置和全系统仿真器
US8037278B2 (en) * 2008-01-11 2011-10-11 International Business Machines Corporation Dynamic address translation with format control
US8095773B2 (en) * 2008-02-26 2012-01-10 International Business Machines Corporation Dynamic address translation with translation exception qualifier
US8706900B2 (en) * 2008-07-10 2014-04-22 Juniper Networks, Inc. Dynamic storage resources
US8468284B2 (en) 2010-06-23 2013-06-18 International Business Machines Corporation Converting a message signaled interruption into an I/O adapter event notification to a guest operating system
US8402248B2 (en) * 2010-12-31 2013-03-19 Telefonaktiebolaget L M Ericsson (Publ) Explicitly regioned memory organization in a network element
WO2012103245A2 (en) 2011-01-27 2012-08-02 Soft Machines Inc. Guest instruction block with near branching and far branching sequence construction to native instruction block
US8732431B2 (en) * 2011-03-06 2014-05-20 Micron Technology, Inc. Logical address translation
CN103597451B (zh) 2011-03-31 2017-06-13 英特尔公司 用于高可用性的存储器镜像和冗余生成
CN103765400B (zh) 2011-04-07 2016-05-04 威盛电子股份有限公司 一种乱序执行微处理器中的有条件存储指令
US9152548B2 (en) * 2012-01-17 2015-10-06 Vmware, Inc. Controlling access to a privileged resource in user-mode system level mobile virtualization using a ptrace () system call
US9046915B2 (en) * 2012-02-27 2015-06-02 Advanced Micro Devices, Inc. Circuit and method for initializing a computer system
US9141537B2 (en) 2012-10-30 2015-09-22 Mangstor, Inc. Magnetic random access memory journal
CN103905312B (zh) * 2012-12-26 2017-06-16 中国电信股份有限公司 IPv6/IPv4协议翻译网关及数据报文处理方法
US20160048458A1 (en) * 2014-08-14 2016-02-18 Bitdefender IPR Management Ltd. Computer Security Systems and Methods Using Hardware-Accelerated Access To Guest Memory From Below The Operating System
CN107077337B (zh) 2014-12-09 2021-01-15 英特尔公司 用于执行根据两个指令集架构编译的应用编码的系统和方法
EP3274824B1 (de) 2015-03-27 2021-03-17 Intel Corporation Effiziente adressenübersetzung

Also Published As

Publication number Publication date
US20180052774A1 (en) 2018-02-22
EP3274824B1 (de) 2021-03-17
US11422943B2 (en) 2022-08-23
WO2016154795A1 (en) 2016-10-06
EP3274824A4 (de) 2018-12-12
CN107430521B (zh) 2022-02-18
US20220405210A1 (en) 2022-12-22
CN107430521A (zh) 2017-12-01

Similar Documents

Publication Publication Date Title
US8645951B2 (en) Supporting heterogeneous virtualization
US20220405210A1 (en) Efficient address translation
US8127098B1 (en) Virtualization of real mode execution
US9471292B2 (en) Binary translation reuse in a system with address space layout randomization
US10120663B2 (en) Inter-architecture compatability module to allow code module of one architecture to use library module of another architecture
US8352670B2 (en) Execute-only memory and mechanism enabling execution from execute-only memory for minivisor
US9015835B2 (en) Systems and methods for procedure return address verification
US10877793B2 (en) Extending the base address register by modifying the number of read-only bits associated with a device to be presented to a guest operating system
US9836316B2 (en) Flexible acceleration of code execution
US11734209B2 (en) Scalable interrupt virtualization for input/output devices
US9703703B2 (en) Control of entry into protected memory views
US20160188354A1 (en) Efficient enabling of extended page tables
US11042485B2 (en) Implementing firmware runtime services in a computer system
JP2017508208A (ja) 協調設計されたプロセッサ用動的言語アクセラレータ
US10241787B2 (en) Control transfer override
EP2889757B1 (de) Ladeanweisung zur Codeumsetzung

Legal Events

Date Code Title Description
STAA Information on the status of an ep patent application or granted ep patent

Free format text: STATUS: THE INTERNATIONAL PUBLICATION HAS BEEN MADE

PUAI Public reference made under article 153(3) epc to a published international application that has entered the european phase

Free format text: ORIGINAL CODE: 0009012

STAA Information on the status of an ep patent application or granted ep patent

Free format text: STATUS: REQUEST FOR EXAMINATION WAS MADE

17P Request for examination filed

Effective date: 20170906

AK Designated contracting states

Kind code of ref document: A1

Designated state(s): AL AT BE BG CH CY CZ DE DK EE ES FI FR GB GR HR HU IE IS IT LI LT LU LV MC MK MT NL NO PL PT RO RS SE SI SK SM TR

AX Request for extension of the european patent

Extension state: BA ME

DAV Request for validation of the european patent (deleted)
DAX Request for extension of the european patent (deleted)
REG Reference to a national code

Ref country code: DE

Ref legal event code: R079

Ref document number: 602015067109

Country of ref document: DE

Free format text: PREVIOUS MAIN CLASS: G06F0009450000

Ipc: G06F0009455000

A4 Supplementary search report drawn up and despatched

Effective date: 20181114

RIC1 Information provided on ipc code assigned before grant

Ipc: G06F 9/355 20180101ALI20181108BHEP

Ipc: G06F 9/30 20180101ALI20181108BHEP

Ipc: G06F 12/10 20160101ALI20181108BHEP

Ipc: G06F 9/455 20180101AFI20181108BHEP

RIC1 Information provided on ipc code assigned before grant

Ipc: G06F 9/355 20180101ALI20181108BHEP

Ipc: G06F 9/455 20180101AFI20181108BHEP

Ipc: G06F 9/30 20180101ALI20181108BHEP

Ipc: G06F 12/10 20160101ALI20181108BHEP

GRAP Despatch of communication of intention to grant a patent

Free format text: ORIGINAL CODE: EPIDOSNIGR1

STAA Information on the status of an ep patent application or granted ep patent

Free format text: STATUS: GRANT OF PATENT IS INTENDED

INTG Intention to grant announced

Effective date: 20201001

GRAS Grant fee paid

Free format text: ORIGINAL CODE: EPIDOSNIGR3

GRAA (expected) grant

Free format text: ORIGINAL CODE: 0009210

STAA Information on the status of an ep patent application or granted ep patent

Free format text: STATUS: THE PATENT HAS BEEN GRANTED

AK Designated contracting states

Kind code of ref document: B1

Designated state(s): AL AT BE BG CH CY CZ DE DK EE ES FI FR GB GR HR HU IE IS IT LI LT LU LV MC MK MT NL NO PL PT RO RS SE SI SK SM TR

REG Reference to a national code

Ref country code: GB

Ref legal event code: FG4D

REG Reference to a national code

Ref country code: CH

Ref legal event code: EP

REG Reference to a national code

Ref country code: DE

Ref legal event code: R096

Ref document number: 602015067109

Country of ref document: DE

REG Reference to a national code

Ref country code: IE

Ref legal event code: FG4D

REG Reference to a national code

Ref country code: AT

Ref legal event code: REF

Ref document number: 1372877

Country of ref document: AT

Kind code of ref document: T

Effective date: 20210415

REG Reference to a national code

Ref country code: NL

Ref legal event code: FP

REG Reference to a national code

Ref country code: LT

Ref legal event code: MG9D

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: BG

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210617

Ref country code: HR

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

Ref country code: GR

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210618

Ref country code: FI

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

Ref country code: NO

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210617

REG Reference to a national code

Ref country code: AT

Ref legal event code: MK05

Ref document number: 1372877

Country of ref document: AT

Kind code of ref document: T

Effective date: 20210317

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: RS

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

Ref country code: LV

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

Ref country code: SE

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: SM

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

Ref country code: AT

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

Ref country code: EE

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

Ref country code: CZ

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

Ref country code: LT

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

REG Reference to a national code

Ref country code: CH

Ref legal event code: PL

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: IS

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210717

Ref country code: SK

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

Ref country code: RO

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

Ref country code: PL

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

Ref country code: PT

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210719

REG Reference to a national code

Ref country code: BE

Ref legal event code: MM

Effective date: 20210331

REG Reference to a national code

Ref country code: DE

Ref legal event code: R097

Ref document number: 602015067109

Country of ref document: DE

PLBE No opposition filed within time limit

Free format text: ORIGINAL CODE: 0009261

STAA Information on the status of an ep patent application or granted ep patent

Free format text: STATUS: NO OPPOSITION FILED WITHIN TIME LIMIT

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: ES

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

Ref country code: AL

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

Ref country code: CH

Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES

Effective date: 20210331

Ref country code: LI

Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES

Effective date: 20210331

Ref country code: MC

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

Ref country code: LU

Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES

Effective date: 20210327

Ref country code: IE

Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES

Effective date: 20210327

Ref country code: DK

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

26N No opposition filed

Effective date: 20211220

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: SI

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: IT

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: IS

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210717

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: BE

Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES

Effective date: 20210331

PGFP Annual fee paid to national office [announced via postgrant information from national office to epo]

Ref country code: GB

Payment date: 20230216

Year of fee payment: 9

Ref country code: DE

Payment date: 20230222

Year of fee payment: 9

P01 Opt-out of the competence of the unified patent court (upc) registered

Effective date: 20230518

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: CY

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: HU

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT; INVALID AB INITIO

Effective date: 20150327

PGFP Annual fee paid to national office [announced via postgrant information from national office to epo]

Ref country code: NL

Payment date: 20231215

Year of fee payment: 10

Ref country code: FR

Payment date: 20231212

Year of fee payment: 10

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: MK

Free format text: LAPSE BECAUSE OF FAILURE TO SUBMIT A TRANSLATION OF THE DESCRIPTION OR TO PAY THE FEE WITHIN THE PRESCRIBED TIME-LIMIT

Effective date: 20210317

PGFP Annual fee paid to national office [announced via postgrant information from national office to epo]

Ref country code: DE

Payment date: 20231128

Year of fee payment: 10

Ref country code: GB

Payment date: 20240109

Year of fee payment: 10