US20080320282A1 - Method And Systems For Providing Transaction Support For Executable Program Components - Google Patents

Method And Systems For Providing Transaction Support For Executable Program Components Download PDF

Info

Publication number
US20080320282A1
US20080320282A1 US11/766,960 US76696007A US2008320282A1 US 20080320282 A1 US20080320282 A1 US 20080320282A1 US 76696007 A US76696007 A US 76696007A US 2008320282 A1 US2008320282 A1 US 2008320282A1
Authority
US
United States
Prior art keywords
transaction
instruction
executable
transaction information
access
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.)
Abandoned
Application number
US11/766,960
Inventor
Robert P. Morris
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.)
Scenera Technologies LLC
Original Assignee
OkraLabs LLC
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 OkraLabs LLC filed Critical OkraLabs LLC
Priority to US11/766,960 priority Critical patent/US20080320282A1/en
Assigned to OKRALABS, LLC reassignment OKRALABS, LLC ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: MORRIS, ROBERT P.
Publication of US20080320282A1 publication Critical patent/US20080320282A1/en
Assigned to SCENERA TECHNOLOGIES, LLC reassignment SCENERA TECHNOLOGIES, LLC ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: OKRALABS LLC
Abandoned legal-status Critical Current

Links

Images

Classifications

    • 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/38Concurrent instruction execution, e.g. pipeline, look ahead
    • G06F9/3861Recovery, e.g. branch miss-prediction, exception handling
    • 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/46Multiprogramming arrangements
    • G06F9/466Transaction processing

Definitions

  • Transactional memory is used for providing concurrency control for a region of memory shared by two or more processes or threads. It is an alternative to lock based concurrency control mechanisms such as semaphores. Like database transactions, support for transactional memory is built into a programming language. Thus, transactional memory is language dependent. and language specific, Transaction memory typically applies to data variables that are shared between two threads or processes.
  • transaction information is associated with an instruction included in an executable addressable entity included in an executable program component generated from source code written in a programming language, wherein the transaction information is independent of the source code and the programming language.
  • an access to the instruction is detected for executing by a processor.
  • a transaction operation to perform in association with the executing of the instruction is determined based on the transaction information associated with the instruction.
  • the transaction operation is performed in association with the executing of the instruction, wherein the transaction operation is performed by a program component other than the executable program component including the executable addressable entity.
  • a system for providing transaction support for executable program components includes means for associating transaction information with an instruction included in an executable addressable entity included in an executable program component generated from source code written in a programming language, wherein the transaction information is independent of the source code and the programming language.
  • the system also includes means for detecting an access to the instruction for executing by a processor.
  • the system further includes means for determining a transaction operation to perform in association with the executing of the instruction based on the transaction information associated with the instruction.
  • the system still further includes means for performing the transaction operation in association with the executing of the instruction, wherein the transaction operation is performed by a program component other than the executable program component including the executable addressable entity.
  • a system for providing transaction support for executable program components includes a transaction information manager component configured for associating transaction information with an instruction included in an executable addressable entity included in an executable program component generated from source code written in a programming language, wherein the transaction information is independent of the source code and the programming language.
  • the system also includes an access detector component configured for detecting an access to the instruction for executing by a processor.
  • the system further includes a transaction manager component configured for determining a transaction operation to perform in association with the executing of the instruction based on the transaction information associated with the instruction and configured for performing the transaction operation in association with the executing of the instruction, wherein the transaction operation is performed by a program component other than the executable program component including the executable addressable entity.
  • a computer readable medium including a computer program, executable by a machine, for providing transaction support for executable program components.
  • the computer program includes executable instructions for associating transaction information with an instruction included in an executable addressable entity included in an executable program component generated from source code written in a programming language, wherein the transaction information is independent of the source code and the programming language.
  • the computer program also includes instructions for detecting an access to the instruction for executing by a processor.
  • the computer program also includes instructions for determining a transaction operation to perform in association with the executing of the instruction based on the transaction information associated with the instruction.
  • the computer program also includes instructions for performing the transaction operation in association with the executing of the instruction, wherein the transaction operation is performed by a program component other than the executable program component including the executable addressable entity.
  • FIG. 1 is a flow diagram illustrating a method for providing transaction support for executable program components according to an embodiment of the subject matter described herein;
  • FIG. 2 is a block diagram illustrating a system for providing transaction support for executable program components according to another embodiment of the subject matter described herein;
  • FIG. 3 is a block diagram illustrating a system for providing transaction support for executable program components according to another embodiment of the subject matter described herein;
  • FIG. 4 is a flow diagram illustrating a method for providing transaction support for executable program components according to an embodiment of the subject matter described herein;
  • FIG. 5 a illustrates an exemplary Extensible Markup Language (XML) document for associating concurrency policies with addressable entities according to another embodiment of the subject matter described herein;
  • XML Extensible Markup Language
  • FIG. 5 b illustrates an exemplary loadable object file for associating concurrency policies with addressable entities according to another embodiment of the subject matter described herein;
  • FIG. 6 a is a data flow diagram illustrating data flow in a system for providing concurrency control for addressable entities according to another embodiment of the subject matter described herein;
  • FIG. 6 b is a data flow diagram illustrating data flow in a system for providing concurrency control for addressable entities according to another embodiment of the subject matter described herein;
  • FIG. 6 c is a data flow diagram illustrating data flow in a system for providing concurrency control for addressable entities according to another embodiment of the subject matter described herein;
  • FIG. 6 d is a data flow diagram illustrating data flow in a system for providing concurrency control for addressable entities according to another embodiment of the subject matter described herein;
  • FIG. 7 is a block diagram illustrating a system for providing transaction support for executable program components according to another embodiment of the subject matter described herein.
  • FIG. 1 is a flow diagram illustrating a method for providing transaction support for executable program components according to an exemplary embodiment of the subject matter described herein.
  • a transaction can include a unit of operation of an executable that is treated in a coherent and reliable way independent of other transactions that must be either entirely completed or aborted.
  • FIG. 2 is a block diagram illustrating a system for providing transaction support for executable program components according to another exemplary embodiment of the subject matter described herein. The method illustrated in FIG. 1 can be carried out by, for example, some or all of the components illustrated in the exemplary system of FIG. 2 .
  • a system for providing transaction support for executable program components includes means for associating transaction information with an instruction included in an executable addressable entity included in an executable program component generated from source code written in a programming language, wherein the transaction information is independent of the source code and the programming language.
  • a transaction information (TI) manager component 202 is configured for associating transaction information with an instruction included in an executable addressable entity included in an executable program component.
  • the executable program component is generated from source code written in a programming language.
  • the transaction information is independent of the source code and the programming language.
  • an instruction 204 of an executable addressable entity 206 is shown as included in an executable program component 208 .
  • the executable program component 208 is generated from a source code representation 210 written in a programming language.
  • the transaction information associated with the instruction 204 is not included in the source code representation 210 and is independent of the programming language.
  • the association of the transaction information with the instruction 204 can be made directly, for example, by associating an address of a memory location of the instruction 204 with the transaction information in a transaction information record, or by replacing the instruction 204 in a memory location with another instruction for invoking an interceptor component for performing a transaction operation based on the associated transaction information.
  • associating the transaction information with the instruction 204 included in the executable addressable entity 206 includes selecting the transaction information for association with the instruction 204 according to an attribute of the executable addressable entity 206 .
  • An attribute of the instruction 204 is any information within an execution environment 212 hosting the instruction 204 that is related to the instruction 204 .
  • An attribute can be the virtual or physical memory address of the instruction 204 , the instruction itself, an operand of the instruction 204 , a data type of an operand of the instruction 204 , information associated with a runtime process in which the instruction 204 is accessed, a symbol or name associated with the instruction 204 , an attribute of an invoker of the instruction 204 , an attribute of a “user” with access privileges to the instruction 204 , information associated with the executable addressable entity 206 that includes the instruction 204 , and information associated with the executable program component 208 to which the executable addressable entity 206 including the instruction 204 belongs.
  • the exemplary system 200 can include the execution environment 212 supporting the operation of the executable program component 208 .
  • the execution environment 212 can include, for example, a processor 214 , a processor addressable memory 216 , such as a virtual memory, and an operating system 218 .
  • the execution environment 212 can include additional and alternate components and subsystems, such as a network stack (not shown), based on the requirements of a particular device hosting the execution environment 212 .
  • the execution environment 212 can be configured to support the processing of executables such as applications and object code libraries.
  • the source code representation 210 of the executable program component 208 can be represented in a processor independent source code programming language, wherein a plurality of machine code instructions, each executable by a processor from a specified architecture family, can be generated from the source code representation 210 written in the programming language.
  • the executable program component 208 is an executable representation of the source code representation 210 , which can be written in a processor-independent programming language.
  • processor-independent programming languages include JAVATM, C, C++, Basic, Perl, and Ruby.
  • a processor independent programming language is a programming language from which a plurality of machine code representations can be generated from a single source written using the programming language, where each respective machine code representation is compatible for execution by a respective processor from a different processor family, such as the INTEL® x86 processor family and the POWERPC® processor family. That is, a machine code representation of a source code representation can be generated that is executable on a processor from a particular processor family and a machine code representation can be generated that is executable on a processor of a second processor family. As such, a source code representation written in a processor-independent programming language can be used to generate an executable representation capable of being run in an execution environment supported by a processor from a family other than the family of the processor 214 .
  • the executable program component 208 including the addressable entity 206 can be generated through a process of compiling the source code 210 using components illustrated in FIG. 3 .
  • the executable program component 208 including the addressable entity 206 can be generated using a compiler 302 resulting in an object code representation 304 .
  • the object code representation 304 can be linked, if needed, with another object code representation 306 generated from another source code (not shown), using a linker 308 producing a loadable object code representation 310 which can be stored in a persistent physical memory 312 either included in the address space of the memory 216 or outside the address space of the memory 216 as is typically done.
  • Interpreted programming languages are based upon similar principals and are considered within the scope of this document.
  • the executable program component 208 is created, for example, by a loader/linker 314 interoperating with a memory management system 316 included in the execution environment 212 .
  • the loader/linker 314 is configured to load the loadable object code 310 into a memory location in the memory 216 as described above.
  • the loader/linker 314 and/or the memory management system 316 reserves a memory location that is associated with the addressable entity 206 of the executable program component 208 .
  • a value associated with the addressable entity 206 is stored in the associated memory location.
  • each instruction such as the instruction 204
  • an executable addressable entity such as the executable addressable entity 206
  • the executable program component 208 including the executable addressable entity 206 includes any unresolved references to addressable entities within and/or external to the executable program component 208 , a load-time or run-time linking process is performed by a linking component of the loader/linker 314 resolving the unresolved references enabling a runtime process to execute the instructions including the instruction 204 in the executable program component 208 using the processor 214 .
  • addressable entities including the executable addressable entity 206 in the executable program component 208 are loaded into, and thereby associated with, respective memory locations by a loader/linker that can interoperate with a memory management system 316 .
  • Executable entities such as the executable addressable entity 206 include one or more instructions, such as the instruction 204 , that are associated with memory locations when the executable addressable entity 206 is loaded into the memory 216 .
  • a flow chart 400 in FIG. 4 depicts another exemplary method for providing transaction support for executable program components.
  • a determination is made whether an instruction 204 is associated with transaction information.
  • the instruction 204 and its associated executable addressable entity 206 are loaded into the memory 216 by the loader/linker 314 included in the execution environment 212 as depicted in FIG. 3 .
  • the executable addressable entity 206 including the instruction 204 in the executable program component 208 loaded into the memory 216 is accessible to the processor 214 .
  • the loader/linker 314 uses an address space supported by the processor 214 and the memory 216 where an address from the address space can be used by the processor 214 to locate a memory location of the memory 216 .
  • the address space of the memory 216 is mapped to a volatile physical memory such as a random access memory (RAM) with any currently unmapped, allocated memory 216 stored in a swap file in a physical persistent memory 312 , for example.
  • a volatile physical memory such as a random access memory (RAM)
  • RAM random access memory
  • an address space spans both volatile physical memory and persistent physical memory such a ROM (not shown) and the persistent physical memory 312 , such as a hard drive.
  • the address space can be entirely mapped to the persistent physical memory 312 with RAM serving as a cache.
  • At least a portion of the persistent physical memory 312 is addressed by the address space of the memory 216 as indicated in the system 200 .
  • SDSS structured data storage system
  • systems using a structured data storage system (SDSS) based memory management system as described in U.S. patent application Ser. No. 11/428,273 and U.S. patent application Ser. No. 11/428,338 include an address space than can span volatile and persistent physical memory extending processor memory 216 across various types of physical memory.
  • SDSS structured data storage system
  • Transaction information can be provided using a number of language independent techniques.
  • a declarative language defined for specifying transaction information is used.
  • the declarative language for example, can be an XML based language specified by a schema where at least a portion of the language is defined for specifying transaction information.
  • a command language is used for specifying transaction information.
  • a command language such as structured query language (SQL) can be used.
  • a user interface such as an administrator/user graphical user interface 318 can be provided for directing a user in providing transaction information. Transaction information provided by the user is received via the interface component 318 and associated with the instruction 204 , for example, based on a condition matching an attribute of the addressable entity 206 .
  • FIG. 5 a provides an example of an Extensible Markup Language (XML) document specified by a schema.
  • XML Extensible Markup Language
  • a portion of the XML markup specified by the schema is defined for specifying transaction information.
  • a transaction information specification such as depicted in FIG. 5a , can be generated manually by a user.
  • a developer tool such as a linker, can be configured to generate the transaction information specification based on symbol information and other metadata attributes associated with a representation of the addressable entities included in, for example, the object code 304 and/or the loadable object code 310 .
  • a developer tool can require user input for identifying, for example, transaction boundaries and isolation policies based on the symbols for generating a template.
  • a user can edit the generated template using symbol information and/or knowledge of the source code 210 from which the executable program component 208 is generated.
  • a tool such as the compiler 302 , linker 308 , and/or loader 314 can be configured to map a programming language specific symbol space to a language neutral symbol space defined for identifying program addressable entities in a language neutral manner.
  • symbols in the symbol space of the compiler 302 or interpreter of the programming language used for the source code 210 can be used by a user for ease of use. Programming language specific symbols along with language neutral symbols can be used in generating the transaction information specification and/or a transaction information template.
  • a ⁇ constraint> XML document 500 a is depicted.
  • the ⁇ constraint> document 500 a can include one or more ⁇ executable-component> elements each corresponding to an executable program component, such as, an ⁇ executable-component> element 502 a corresponding to the executable program component 208 .
  • Each ⁇ executable-component> element includes an identifier, such as a URI included in a ⁇ uri> element, such as a depicted ⁇ uri> element 504 a that identifies a loadable object code file, such as the loadable object code file 310 , including a loadable representation of the executable program component 208 .
  • the transaction information includes transaction model information identifying a transactional model for determining a transaction operation to perform in association with the executing of an instruction, such as the instruction 204 .
  • An ⁇ executable-component> element can include a ⁇ transaction-model> element (not shown) allowing for the specification of a particular type of transaction model.
  • the transaction manager component 220 can support a cooperative transaction hierarchy model, a cooperative software engineering environment (SEE) model, a distributed object management (DOM) model, an open public environment model, a “ConTract” model, a split-transaction model, a “Flex” transaction model, an S-transaction model, a multilevel transaction model, and/or a poly-transaction model.
  • SEE software engineering environment
  • DOM distributed object management
  • An ⁇ executable-component> element can include one or more ⁇ aentity> elements.
  • a ⁇ aentity> element specifies attribute conditions for an addressable entity in an executable program component identified by an ⁇ uri> element included in an ⁇ executable-component> element.
  • An addressable entity can be identified using one or more attribute conditions, referred to as “matching criteria.” Examples of attributes that can be used in conditions specified in matching criteria have been discussed above.
  • an execution environment condition can be used as a matching criteria. The condition can be detected during the executing of an executable program component, and wherein associating transaction information with an instruction included in an executable addressable entity of the executable program component is based on the detected execution environment condition.
  • the system 200 can include a system monitor component 320 configured for detecting an execution environment condition during the processing of the executable program component 208 .
  • the transaction information manager component 202 can be configured for associating the transaction information with an instruction included in an executable addressable entity based on the detected execution environment condition and any additional matching criteria.
  • a matching criterion such as an execution environment condition, can be detected when an executable program component is not operating. If transaction information associated with the matching criterion is an action not associated with an access to a matching addressable entity, such as changing a transaction model associated with matching addressable entities, the action can be performed.
  • an execution environment condition such as processor utilization can be used as an attribute for locating transaction information for associating with the instruction 204 included in the addressable entity 206 when a processor utilization condition included in the matching criteria is met, such as a threshold value for processor utilization of the processor 214 .
  • transaction information can be specified that causes a switch from a transaction policy requiring serialized access to a set of transaction resources to a policy that can result in “dirty reads” with respect to one or more of the transaction resources, to improve system performance. Additional examples of matching criteria are provided throughout the document.
  • an ⁇ aentity> element 506 a is included with a specification of matching criteria.
  • a ⁇ symbol> element can be included for specifying a name/symbol in symbol information generated, for example, during the compile, link, and load process as described above.
  • wildcard matching is supported for specifying a condition in matching criteria including support for regular expressions and/or their analogs.
  • an ⁇ execute> element such an an ⁇ execute/> element 510 a
  • a ⁇ type> element (not shown) can be supported for general purpose data type specification used in matching criteria.
  • the ⁇ execute/> element 510 a is a special purpose “type” specification element. Keywords used for content of a ⁇ type> element specification are language independent, typically conforming to types supported by the architecture of the target processor, such as the processor 214 . Some implementations can support language specific ⁇ type> element content as a matching criteria specification. Other examples of attributes that various implementations can support for matching criteria can be identified by one skilled in the art given the description provided in this document.
  • SOAP Service Oriented Architecture Protocol
  • RPC remote procedure calls
  • the SOAP schema and namespace can be used in an example of a format for specifying matching criteria and transaction information.
  • RDF Resource definition framework
  • RDF Resource definition framework
  • a combination of attributes of an addressable entity including symbol/name, data type information, and runtime process owner, for example, can be specified for identifying addressable entities with matching attributes, associating the matching addressable entities with transaction information.
  • ⁇ aentity> elements can be nested.
  • the nesting can correspond to a scope for matching an addressable entity with a ⁇ aentity> element.
  • a scope can be specified as a condition in matching criteria. For a programming language or an executable program component supporting only addressable entities having global scope all ⁇ aentity> elements appear in the same level as depicted in the ⁇ constraint> document 500 a as generated by a development tool and/or by a user.
  • conditions for matching criteria are specified for two sets of transaction information specifications are depicted in the two ⁇ aentity> elements, the ⁇ aentity> element 506 a and a ⁇ aentity> element 512 a .
  • a ⁇ symbol> and/or ⁇ type> element can be used for specifying matching criteria for identifying an addressable entity associated with specified transaction information included in an ⁇ aentity> element..
  • 5 a match addressable entries that are executable as indicated, for example, by the ⁇ execute/> element 510 a and have an associated symbol of “dolt,” or an associated symbol of “errorHandler,” as specified by the the first ⁇ symbol> element 508 a and a second ⁇ symbol> element 514 a , and are at the highest scope level of the executable program component 208 as specified by the nesting of the first ⁇ aentity> element 506 a and the second ⁇ aentity> element 512 a .
  • Each set of transaction information specifications is identified by a ⁇ transaction> element defined by the corresponding schema for including transaction information specification, such as a ⁇ transaction> element 516 a included in the first ⁇ aentity> element 506 a .
  • a ⁇ transaction> element defined by the corresponding schema for including transaction information specification, such as a ⁇ transaction> element 516 a included in the first ⁇ aentity> element 506 a .
  • Content of a ⁇ transaction> element is described below.
  • FIG. 5 b illustrates an example of a portion of a loadable object code file for an exemplary SDSS based execution environment, as described in U.S. patent application Ser. No. 11/428,273 and U.S. patent application Ser. No. 11/428,338, providing a transaction information specification.
  • the example shows instructions 500 b used by, for example, the loader/linker 314 to create an instance table for a function, such as the “dolt” executable addressable entity 206 .
  • a CREATE TABLE instruction block 502 b is provided for creating a “dolt_Instance_Table” for holding instance data for instantiations of the “dolt” executable addressable entity 206 .
  • FIG. 5 b illustrates an example of a portion of a loadable object code file for an exemplary SDSS based execution environment, as described in U.S. patent application Ser. No. 11/428,273 and U.S. patent application Ser. No. 11/428,338, providing
  • an instance of “dolt” includes a column for an ID 504 b serving as a primary key, a return instance variable, “return_value” 506 b ; three columns 508 b identifying the invoking executable addressable entity and a return address, “caller_at”, “caller_instance_table”, and “caller_instance_row”; and an instance variable, “result” 510 b .
  • the “dolt” executable addressable entity 206 accesses a static variable and can invoke one or more other executable addressable entities during its operation that also can access one or more static variables.
  • a number of “CONSTRAINT” commands are illustrated in FIG.
  • constraints depicted in FIG. 5 b include a constraint 512 b that the instance variable “result” 510 b is not null, a constraint 514 b that the an instance variable “y” 516 b is not null and it is at least one byte in length.
  • a constraint defined for specifying transaction information is depicted as a “CONSTRAINT TRANSACTION” Instruction block 518 b
  • a keyword such as “NEW” 520 b , indicates whether and when a transaction can be associated with an instance of the “dolt” executable addressable entity 206 .
  • Isolation specifications associated with an ISOLATION keyword 522 b are depicted.
  • the ISOLATION keyword 522 b and associated syntax and grammar are defined for specifying an isolation policy to be enforced for transaction resources when a transaction is associated with a corresponding instance of the executable addressable entity 206 .
  • a COMMIT keyword 524 b and associated syntax and grammar are defined for specifying a successful completion point of a transaction.
  • Transaction resources are specified in FIG. 5 b by a “RESOURCES” keyword 526 b and associated syntax and grammar. Transaction resources must be protected according to transaction specifications such as the specified isolation policy.
  • a portion of a CREATE TABLE instruction block 528 b for creating an instance table for the “errorHandler” executable addressable entity is included in FIG. 5 b .
  • the portion includes a transaction information specification using a “CONSTRAINT TRANSACTION” 530 b instruction block including a keyword, “ABORT ON_ACCESS” 532 b defined for specifying that if an instance of “errorHandler” is accessed under control of a transaction, the transaction is to be aborted and rolled back.
  • an instance of the “dolt” executable addressable entity 206 invokes an instance of the “errorHandler” executable addressable entity (not shown) when an error condition is detected, thus an access to an instance of the “errorHandler” executable addressable eneity is specified as a boundary of a transaction where the transaction is to be aborted.
  • FIG. 5 b Also included in FIG. 5 b is a CREATE TABLE instruction block 534 b creating a “code_block” table for storing executable instructions of executable addressable entities, such as the “dolt” executable addressable entity 206 and the “errorHandler” executable addressable entity. Records in the “code_block” table include executable instructions for various functions, methods, and other executable addressable entity types.
  • transaction information specification can be provided as part of the specification of the “code_block” table 534 b rather than included in the specifications of the various executable addressable entity instance tables, such as the CREATE TABLE instruction block 502 b and the CREATE TABLE instruction block 528 b .
  • additional constraint command language instructions are depicted.
  • a number of GRANT instructions 536 b , 538 b , 540 b , and 542 b are illustrated specifying access control policies.
  • Transaction information specifications can be received through file import, received via a network connection, via a user interface 318 , or via any other input techniques.
  • transaction information specifications, received by the system 300 are stored as transaction information records in a transaction information data store 322 .
  • a file including transaction information specification is provided to the system 300 , via the administrator/user graphical user interface (GUI) 318 , by another executable via a programming interface (not shown), via a file system using a predefined location, and/or using a naming convention.
  • the file data can be provided to the transaction manager component 220 and/or the transaction information manager component 202 for processing and storing as transaction information records in the transaction information data store 322 .
  • Associating transaction information with the instruction 204 included in the executable addressable entity 206 in the executable program component 208 can be accomplished in a variety of ways.
  • the transaction information manager 202 can be configured to interoperate with at least one of the loader/linker 314 and the memory management system 316 to aid the transaction information manager 202 in associating transaction information with the instruction 204 .
  • the transaction information manager 202 can provide for modifying and/or augmenting the executing of the executable program component 208 using an interceptor design pattern for associating transaction information with the instruction 204 .
  • the transaction information manager 202 provides for marking a memory location of the memory 216 where the location includes the instruction 204 for associating the memory location of the instruction 204 with transaction information.
  • Systems 600 a , 600 b , 600 c , and 600 d depicted in FIGS. 6A-D respectively depict variations of the system 200 .
  • Each of the systems 600 a - d is configured for carrying out the method 100 .
  • Each of the systems 600 a - d is configured to load the executable program component 208 into the memory 216 , associating a memory location with the instruction 204 as illustrated by each message 1 in each of the systems 600 a - d.
  • the loader/linker 314 is configured to interoperate with the transaction information manager 202 when loading an addressable entity 206 stored in the loadable object code 310 into the memory 216 .
  • the loader/linker 314 when loading at least a portion the executable addressable entity 206 including the instruction 204 depicted as a message 1 in FIG. 6A , invokes the transaction information manager 202 depicted as message 2 A, providing attribute information associated with instruction 204 .
  • the transaction information manager 202 based on the attribute information and/or attribute information available from the execution environment 212 searches the transaction information records in the transaction information data store 322 for a record with matching criteria that matches the attribute information.
  • the loader/linker 314 continues loading the executable addressable entity 206 including the instruction 204 . If a matching record is located, then the transaction information manager 202 can provide a response to the load/linker 220 for associating the instruction 204 with transaction information in the matching transaction information record.
  • an interceptor is associated with the instruction 204 based on associated transaction information.
  • the transaction information manager 202 response to the loader/linker 314 causes the loader/linker 314 to provide for an interceptor component depicted as a software access detector component 222 A to be invoked in association with an access to the instruction 204 by the processor 214 .
  • the instruction 204 can be replaced with a machine code instruction such as a software interrupt instruction where the interceptor component, the software access detector component 222 A, is configured to process the software interrupt specified in the instruction.
  • a portion of the execution environment 212 supporting the software interrupt is depicted as the software access detector component 222 A in the system 200 .
  • the software access detector component 222 A is depicted as included in the transaction manager component 220 in the system 600 a .
  • the establishing of the interceptor/software access detector component 222 A is depicted as a message 3 A when performed by the loader/linker 314 .
  • the memory management system 316 can be configured to mediate memory accesses.
  • SDSS based systems can be configured to mediate access attempts to various addressable entities stored in an SDSS.
  • the memory management system 316 can be configured to create and manage a chain of interceptors associated with an access to an addressable entity such as the executable addressable entity 206 and thus access to a memory location of the instruction 204 .
  • the memory management system 316 invokes the transaction information manager 202 for locating transaction information and, optionally, determining an interceptor based on located transaction information as depicted by a message 2 B, as opposed to the message 2 A as described above.
  • the memory management system 316 can be configured to determine an interceptor based on transaction information located by the transaction information manager 202 or can be configured to receive interceptor information from the transaction information manager 202
  • the memory manage system 316 can place the interceptor, such as the software access detector component 222 A, in an interceptor chain associated with an access to the instruction 204 .
  • the interceptor placed in the chain is configured to operate based on the transaction information located by the transaction information manager 202 .
  • the establishing of the interceptor by the memory management system 316 is depicted as a message 3 B in the system 600 a.
  • the transaction information manager 202 response to the message 2 A described above with respect to the system 600 a causes the loader/linker 314 to configure the transaction information manager 202 to serve as an interceptor component to be invoked in association with an access to the instruction 204 by the processor 214 .
  • the instruction 204 can be replaced with a machine code instruction such as a software interrupt instruction where the transaction information manager 202 can be configured to be the interrupt handler, thus serving as the interceptor component also known as, the software access detector 222 A.
  • the transaction information manager 202 can be configured to process the software interrupt specified in the instruction.
  • the transaction information manager 202 is configured as an interceptor for associating the instruction 204 with transaction information.
  • the establishing of the transaction information manager 202 as an interceptor is depicted as a message 2 A in the system 600 b .
  • the memory management system 316 can be configured to modify or augment the executable addressable entity 206 including the instruction 204 to set, for example, a software interrupt and configure the transaction information manager 202 as the handler for the interrupt.
  • the message 2 B is depicted to show the memory management system 316 in the role of establishing the transaction information manager 202 as an interceptor of an access of the memory location of the instruction 204 for associating the instruction transaction information.
  • the system 600 b can include the memory management system 316 configured to mediate memory accesses.
  • SDSS based systems can be configured to mediate access attempts to various addressable entities stored in an SDSS as described above.
  • the memory management system 316 can be configured to create and manage a chain of interceptors associated with an access to an addressable entity such as the executable addressable entity 206 and thus access to the instruction 204 .
  • the memory management system 316 can establish the transaction information manager 202 as an interceptor, serving as the software access detector component 222 A, in an interceptor chain associated with an access to the instruction 204 .
  • the interceptor placed in the chain is configured to operate based on the transaction information and is depicted as the message 2 B in the system 600 b based on an SDSS based memory management system 316 .
  • the physical memory supporting the processor memory 216 can be configured to generate one of plurality of hardware interrupts based on a setting of a memory location when accessed by the processor 214 .
  • the loader/linker 314 queries the transaction information manager 202 as depicted by the message 2 to determine if an association should be made.
  • the transaction information manager 202 response can cause the loader/linker 314 to set a memory location to generate an interrupt when an access is detected.
  • the particular interrupt or interrupts generated are based on the transaction information located by the transaction information manager 202 .
  • the loader/linker 314 for example, can set a bit associated with the location and/or region configured to generate an interrupt when the bit is set.
  • the interrupt in one scenario is associated with an interceptor serving as an interrupt handler where the interceptor is configured to perform a specific transaction operation such as the operation for creating a new transaction.
  • a second interrupt can be associated with a second interceptor configured to enforce an isolation policy specified in the transaction information.
  • the configuring of the hardware interrupt associated with an access to the memory location of the instruction 204 and the configuring of its corresponding interceptor/software access detector component is depicted as a message 3 A and a message 3 B, respectively, in the system 600 c.
  • the physical memory supporting the processor memory 216 is configured to generate a particular hardware interrupt based on an access to a specific physical memory location or region by the processor 214 .
  • the loader/linker 314 queries the transaction information manager 202 as depicted by the message 2 to determine if an association should be made.
  • the transaction information manager 202 response can cause the loader/linker 314 to set a memory location and/or region to generate the particular interrupt when an access is detected.
  • one interrupt can be used for detecting memory accesses.
  • the transaction information manager 202 is configured to be the interrupt handler/interceptor for all detected accesses according to the aspect.
  • the configuring of the hardware interrupt associated with an access to the memory location of the instruction 204 and the configuring of the transaction information manager 202 as the corresponding interceptor is depicted as a message 3 in the system 600 d.
  • Memory regions, such as pages, that include a memory location of an instruction associated with transaction information can be marked.
  • a request by the loader/linker 314 to the transaction information manager 202 can result in a response from the transaction information manager 202 .
  • the response can cause the memory location to be marked indicating that the instruction 204 in the memory location is associated with transaction information.
  • the marking can be performed by any of the loader/linker 314 , the transaction information manager 202 , and the memory management system 316 .
  • a memory management system (portions of which are depicted in the system 700 ) can store a value in a header portion or other metadata portion of a memory 216 region, such as a page 1 702 as depicted in the system 700 mapped to a region of a volatile physical memory, such as a RAM 704 , indicating the memory 216 region, the page 702 in the example, is associated with transaction information or should be checked for an association when an access to the page 702 is detected.
  • a header portion or other metadata portion of a memory 216 region such as a page 1 702 as depicted in the system 700 mapped to a region of a volatile physical memory, such as a RAM 704 , indicating the memory 216 region, the page 702 in the example, is associated with transaction information or should be checked for an association when an access to the page 702 is detected.
  • a page table 706 and a map table 708 along with an optional map table cache 708 ′, each included in the memory management system 316 can include a record with a field for marking a memory location and/or region corresponding to the record in at least one of the tables 706 , 708 , and 708 ′.
  • the processor 214 includes a translation lookaside buffer (TLB) 710 included in a memory management unit (MMU) 712 as components of the memory management system 316 .
  • the TLB 710 is configured to include a field in a TLB entry for marking the entry indicating an association with transaction information.
  • the memory management system 316 can use a mark in the TLB 710 , the page table 706 , the map table 708 , the map table cache 708 ′, and a metadata field in a memory location 216 and/or region such as the page 1 702 including the memory location of the instruction 204 .
  • the marking indicates the memory location is associated with transaction information or, at least should be checked for an association.
  • the marking can be performed at load-time by the loader/linker 314 interoperating with the transaction information manager 202 , and/or at run-time as described below.
  • the interrupts and interceptors can be configured to be processed any of prior to, during, and after executing of the instruction 204 depending on transaction operations that are required by the associated transaction information as is discussed in more detail below.
  • a system for providing transaction support for executable program components includes means for detecting an access to the instruction for executing by a processor.
  • an access detector component 222 is configured for detecting an access to the instruction for executing by a processor.
  • an access detector component 222 of the system 200 detects an access to an instruction, such as the instruction 204 associated with transaction information.
  • FIG. 3 illustrates a software access detector component 222 A and a hardware access detector component 222 B. Some systems provide both a hardware access detector component 222 B and a software access detector component 222 A while others provide an access detector component 222 using software or only hardware.
  • the machine code executed by a runtime process can include an accessing instruction or a plurality of accessing instructions capable of accessing the instruction 204 .
  • the accessing instruction can also be generated from a source code, such as the source code 210 or any other source code.
  • the source code includes an accessing source code instruction that when processed and loaded into the memory 216 , in one example, references the instruction 204 included in the executable addressable entity 206 using an address from an address space of the memory 216 as an operand or references the executable addressable entity 206 by accessing the executable addressable entity 206 for processing thus causing the instruction 204 to be accessed by the processor 214 as a result.
  • the processor 214 can include an instruction pointer (IP) register 714 included in a register set 716 .
  • the processor 214 can also include a controller 718 with microcode for interpreting and executing instructions loaded using the IP register 714 and an arithmetic logic unit (ALU) (not shown) for performing arithmetic operations.
  • the IP register 714 is configured for loading an instruction, such as the instruction 204 stored in a memory location of the memory 216 into the processor 214 for executing.
  • Access to the instruction 204 can be detected by a variety of techniques.
  • block 406 of the method 400 includes detecting an access to the instruction 204 and invoking an interceptor.
  • an access to the instruction 204 is detected by an access detector component 222 where the access detector component includes at least one of the software access detector component 222 A using software such as a software interrupt or interceptor configured to be activated in association with the access and the hardware access detector component 222 B using hardware such as a hardware interrupt provided by an interrupt vector 720 included in the processor 214 to be activated in association with the access.
  • Block 408 can be performed before block 402 , in association with block 402 , and/or following block 406 , as depicted in FIG. 4 .
  • the detection of the access can indicate that the instruction 204 is associated with a specific set of transaction information, such as when a particular interceptor is invoked as a part of the detection process where the interceptor is associated with the transaction information and is configured, for example, at load time.
  • block 408 can be performed in association with block 402 .
  • the detection of the access can indicate that the instruction 204 is associated with transaction information, but the transaction information associated with the instruction 204 is determined at run-time in association with the access detection.
  • transaction information associated with a detected access to the instruction 204 is executed following block 406 as depicted in FIG. 4 .
  • the detection of the access does not itself indicate that the instruction is associated with transaction information.
  • a determination is made at run-time in association with the detection of the access whether the instruction is associated with transaction information.
  • block 408 is performed after block 406 . If no transaction information associated with the access to the instruction 204 is located, the method 400 allows the processor to access the instruction 204 for executing and does not proceed to block 410 .
  • the transaction manager 220 can be configured to interoperate with an access detector 222 in association with an access to the instruction 204 .
  • an interceptor of a software access detector 222 A can be invoked in association with an access to the instruction 204 .
  • the interceptor can be associated with the instruction 204 by at least one of the loader/linker 314 and the memory management system 316 interoperating with the transaction information manager 202 as described above.
  • a region of memory 216 such as a page 702 , including the instruction 204 , a corresponding page table 706 entry, a corresponding map table 708 or map table cache 708 ′ entry, and/or a corresponding TLB 710 entry detects access to a memory location that at least should be checked for an association with transaction information in one aspect, and can be associated with transaction information indicated by a mark in another aspect.
  • the system 600 a includes the loader/linker 314 configured to interoperate with the transaction information manager 202 when loading an addressable entity 206 stored in the loadable object code 310 into the memory 216 .
  • an interceptor component of the depicted software access detector component 222 A is provided so that the interceptor is invoked in association with an access to the instruction 204 .
  • the invocation of an interceptor is depicted as a message 4 in the system 600 a .
  • the instruction 204 can be replaced with a machine code instruction such as a software interrupt instruction where the interceptor component of the software access detector component 222 A, is configured to process the software interrupt caused by the executing of the interrupt instruction.
  • the configured interceptor component of the software access detector component 222 A is invoked. Executing of the instruction 204 can occur at any time prior to, during, and/or after processing of the interceptor. Based on the transaction information located by the transaction information manager 202 , an interceptor based on the transaction information can be configured as the interrupt handler for the particular interrupt associated with the instruction 204 .
  • an access instruction 602 is depicted.
  • the access instruction 602 when executed by the processor 214 , causes the processor to access a memory location where the accessing instruction 602 is configured to access the instruction 204 .
  • the interception of access caused by the executing of access instruction 602 is an exemplary message 4 depicted in the system 600 a .
  • the memory management system 316 can be configured to establish an interceptor component of the software access detector component 222 in an interceptor chain associated with an access to the instruction 204 by the processor 214 .
  • an access to the instruction is detected by an SDSS as described above.
  • the SDSS can invoke the interceptor chain including the interceptor associating the memory location of the instruction 204 with transaction information.
  • the SDSS detects the access to the instruction 204 for executing by the processor 214 .
  • the interceptor placed in the chain can be configured to operate based on the transaction information located by the transaction information manager 202 .
  • the establishing of the interceptor by the memory management system 316 is depicted as the message 3 B in the system 600 a .
  • the interception of the access attempt by the processor 214 of the instruction 204 caused by the executing of access instruction 602 is depicted as the message 4 in the system 600 a.
  • the system 600 b includes the transaction information manager 202 established as the interceptor of the software access detector component 222 A associated with the instruction 204 .
  • the association between the interceptor and the memory location of the instruction 204 can be established by the loader/linker 314 and/or the memory management system 316 as described above.
  • the transaction information manager 202 operating in the role of an interceptor of the software access detector component 222 A detects the access to the instruction 204 for executing by the processor 214 .
  • the access instruction 602 is depicted.
  • the access instruction 602 when executed by the processor 214 causes the processor 214 to access the memory location where the accessing instruction 602 is configured to access the instruction 204 .
  • the interception by the transaction information manager 202 of access to the memory location caused by the executing of access instruction 602 is depicted as the message 3 in the system 600 b .
  • the memory management system 316 can be configured to establish an interceptor for detecting an access of the instruction 204 as a result of the executing of the access instruction 602 , for example using an SDSS based memory management system 316 as described above with respect to the system 600 a.
  • the system 600 c includes physical memory for supporting the processor memory 216 .
  • the memory can be configured to generate one of a plurality of hardware interrupts based on an access to a specified physical memory location or region by the processor 214 as described above.
  • the system 600 c can support multiple hardware interrupts, for example an interrupt vector can be included in the processor 214 to support multiple interrupts.
  • an interceptor based on the transaction information is configured as a hardware interrupt handler for the particular interrupt set for the physical memory location to which the memory location and/or region including the instruction 204 is mapped.
  • the access instruction 602 when executed by the processor 214 , causes the processor 214 to access the memory location where the accessing instruction 602 is configured to access the instruction 204 .
  • the access causes the configured hardware interrupt to be generated resulting in control being passed to the corresponding interceptor of the software access detector component 222 A.
  • the configured interrupt is a part of the hardware access detector component 222 B.
  • the interception of the access resulting from executing of the access instruction 602 by the interrupt of the hardware access detector component 222 B is depicted as the message 4 in the system 600 c .
  • the change of control to the interceptor of the software access detector component 222 A resulting from the executing of the access instruction 602 by the processor 214 is depicted as a message 5 in the system 600 c.
  • the system 600 d includes physical memory for supporting the processor memory 216 .
  • the memory can be configured to generate a particular hardware interrupt based on an access to a specific physical memory location or region by the processor 214 .
  • the transaction information manager 202 can be configured as the interrupt handler for the particular hardware interrupt.
  • the transaction information manager 202 serves as the interceptor of the software access detector component 222 A for the particular hardware interrupt of the hardware access detector component 222 B.
  • the interception of the access resulting from executing of the access instruction 602 by the interrupt of the hardware access detector component 222 B is depicted as the message 4 in the system 600 c .
  • the change of control to the transaction information manager 202 operating as the interceptor of the software access detector component 222 A resulting from the executing of the access instruction 602 by the processor 214 is depicted as a message 5 in the system 600 d.
  • an access to a memory location by the processor 214 is detected.
  • the memory management system 316 can be configured to detect memory 216 accesses by the processor 214 .
  • the memory location or region accessed including the instruction 204 is marked using any of the marking systems described above. A determination is made as to whether an entry for the accessed memory location is in the TLB 710 and whether the entry is marked.
  • the processor 214 attempts to access the memory location of the instruction 204 , for example as a result of executing the accessing instruction 602 , a lookup in the TLB 710 is performed for locating a physical memory address of the memory location of the instruction 204 .
  • TLB 710 If an entry is located in the TLB 710 , a determination is made whether the TLB entry is marked. If the TLB entry is not marked the processor 214 is allowed to access the memory location by the memory management system. If the TLB 710 entry is marked, control can be passed to an interceptor for handling as described above. Thus, an access to the instruction 204 is detected.
  • an attempt to locate a page table record corresponding to the accessed memory location is made. For example, if no entry is located in the TLB 710 , a page table 706 lookup is performed to determine whether the memory location in the memory 216 is loaded into physical memory. If an entry in the page table 706 is found, a determination is made as to whether the entry is marked. If the page table entry is not marked, the processor 214 is allowed to access the memory location by the memory management system 316 . If the entry in the page table 710 is marked, control can be passed to an interceptor as described above. Thus, access to the instruction 204 is detected. Otherwise, the memory management system 316 allows the processor 214 to complete the attempted access.
  • the memory management system 316 supports an address space that spans volatile physical memory, such as the RAM 704 , and physical persistent memory, as in an SDSS based system, then if there is no entry corresponding to the memory location of the instruction 204 in the page table 706 , an attempt to locate the entry corresponding to the memory location in the map table 708 and/or the map table cache 708 ′ is made. For example, if the memory location is mapped to a physical location in the persistent physical memory 312 , such as a block 50 722 including the executable addressable entity 206 and the instruction 204 , then a map table 708 and/or a map table cache 708 ′ lookup locates an entry identifying the physical address of the block 50 722 in the persistent physical memory 312 .
  • the contents of a region of the physical persistent physical memory 312 including the memory location are loaded into the RAM 704 .
  • the page table 706 , map table 708 , and map table cache 708 ′ are updated accordingly to indicate the mapping of the memory location in the RAM 704 .
  • the memory management system 316 loads the region, block 50 722 , into a region of the RAM 704 such as the page 1 702 .
  • a determination that the page 702 is marked can be performed by checking the page 702 for a mark or the updated page table entry corresponding to the page 702 can be checked for marking.
  • the page table entry is marked when the map table entry is marked. Thus, access to the instruction 204 is detected.
  • a transaction operation to perform in association with the executing of the instruction based on the transaction information associated with the instruction is determined.
  • a system for providing transaction support for executable program components includes means for determining a transaction operation to perform in association with the executing of the instruction based on the transaction information associated with the instruction.
  • a transaction manager component 220 is configured for determining a transaction operation to perform in association with the executing of the instruction based on the transaction information associated with the instruction.
  • the transaction manager component 220 determines from the transaction information an operation to perform in association with the executing of the instruction 204 included in the addressable entity 206 .
  • the transaction operation can include at least one of generating a new transaction, committing and terminating a transaction, aborting a transaction and rolling back changes made by the transaction, and invoking a specified event handler. For example, if the executable addressable entity 206 matches the matching criteria of the “dolt” ⁇ aentity> element 506 a in FIG. 5 a , the transaction manager component 220 determines a new transaction should be created based on the ⁇ new/> element 518 a included in the ⁇ transaction> element 516 a .
  • an ⁇ isolation> element 520 a specifying isolation policy information included in the ⁇ transaction> element 516 a specifies transaction isolation policy requirements that the transaction manager component 220 is configured to support for the operation of the associated instruction(s) performed in the context of a transaction. If the memory location access detected is associated with a return from an instance of the “dolt” executable entity 206 , the transaction manager component 220 determines from the ⁇ aentity> element 506 a that the existing transaction should be committed and terminated as specified by a ⁇ commit> element 522 a .
  • the transaction manager component 220 determines that an abort operation should be performed on the existing transaction as specified in the ⁇ aentity> element with matching attributes specified by the ⁇ symbol> element 514 a and an ⁇ execute/> element 524 a .
  • the abort operation is transaction information specified by a ⁇ abort> element 526 a included in a ⁇ transaction> element 528 a.
  • a transaction operation to perform in association with the detected access is determined. Determining a transaction operation to perform in association with the executing of the instruction 204 can be determined at various times. The time when a determination is performed can affect how tightly or loosely coupled the transaction operation is with the access detector component 222 .
  • a determination of a transaction operation to perform in association with the executing of the instruction 204 is performed at load/link time by the loader/linker 314 and/or the memory management system 316 interoperating with the transaction information manager 202 . That is, block 410 is performed in conjunction with block 402 in this case.
  • the transaction information manager 202 uses an attribute associated with an instruction 204 included in the “dolt” executable addressable entity 206 to determine whether a transaction information record in the transaction information data store 322 includes matching criteria based on the attribute.
  • the transaction information in the record can include transaction operation information as described, for example, in FIG. 5 a and FIG. 5 b .
  • the transaction information and information associated with the detected access including an attribute associated with the instruction 204 is provided to the transaction manager component 220 for determining an operation to be performed in association with an access to an addressable entity being loaded/linked.
  • the transaction information matching an instance of “dolt” executable addressable entity 206 indicates based on the ⁇ new/> element 518 a that a create transaction operation is to be performed prior to or during the initial executing of an instance of “dolt” executable addressable entity 206 .
  • the transaction information also identifies resources specified by a ⁇ resources> element 530 a that are to be protected during the created transaction and the isolation policy that is to be used specified by the ⁇ isolation> element 520 a .
  • the transaction resources are located and necessary setup is performed to enforce the isolation policy.
  • an interceptor of the access detector component 222 can be established that is configured to execute the identified operations when access to the corresponding instruction is detected without requiring the transaction information manager 202 to locate the matching record again.
  • a general purpose interceptor of the access detector component 222 can be established at load/link time.
  • the transaction information manager 202 can be established as an interceptor, either based on locating a matching transaction information record or the interceptor can be setup as an interceptor for detected access attempts for an executable addressable entity or an included instruction without determining associated transaction information exists.
  • access information associated with the access to the instruction 204 is identified.
  • a transaction operation to perform in association with the executing of the instruction is determined based on the access information and the transaction information.
  • the access detector component 222 can be configured for identifying access information associated with the access to the instruction 204 .
  • the transaction manager component 220 can be configured for determining a transaction operation to perform in association with the executing of the instruction 204 based on the access information and the transaction information. In either case, when the general purpose interceptor is invoked as a result of a detected access, the transaction information manager 202 using an attribute associated with the access information locates a matching transaction information record. If no matching transaction information record is located, executing of the accessed entity is allowed to continue. If a matching transaction information record is located (corresponding to block 408 being performed after block 406 ), the transaction information along with access information is provided to the transaction manager component 220 . The transaction manager component 220 determines a transaction operation to be performed based on the access information and the transaction information performing block 410 .
  • the access information can include information identifying the instruction and/or the location of the instruction in an addressable entity.
  • the access information can identify the “dolt” entity 206 and indicate that executing has not yet started.
  • the transaction manager 220 determines that an operation to create a new transaction should be performed, that the identified resources are to be protected by the transaction, and that a setup operation must be performed to ensure the protected resources are protected according to the isolation policy specified.
  • the transaction manager component 220 based on the access information and the transaction information determines that a commit operation is to be performed based on the ⁇ commit> element 522 a , a transaction result code log operation is to be performed based on a ⁇ log> element 532 a , and an operation for freeing unneeded resources associated with the completed transaction is to be performed.
  • a loose coupling between a memory location of the instruction 204 and the associated transaction information can be established, at or after load-time.
  • the association between the instruction 204 and the access detector component 222 for associating the instruction 204 with transaction information can be converted from a loose coupling to a tight coupling.
  • a second detected access to the instruction 204 does not require the transaction manager component 220 to determine a transaction operation to be performed, since the transaction operation is identified in the tight coupling, for example, by a new interceptor of the access detector component 222 A configured to perform the determined transaction operation.
  • an interceptor component of the depicted software access detector component 222 A can be provided as described above so that the interceptor is invoked in association with an access to the instruction 204 .
  • the accessing instruction 602 when executed by the processor 214 , causes the processor to attempt an access to a memory location for accessing the instruction 204 .
  • Executing of the instruction 204 can occur at any time prior to, during, and/or after processing of the interceptor.
  • the transaction manager component 220 determines a transaction operation to be performed in association with an access to the instruction 204 as described above.
  • the transaction manager component 220 can additionally select a preconfigured interceptor and/or generate an interceptor configured to perform the determined transaction operation when invoked a next time without re-determining the transaction operation to be performed.
  • the transaction manager component 220 can associate the transaction information with an interceptor for processing when an access to the instruction 204 is detected as described above.
  • the interceptor when invoked is configured to use the associated transaction information to determine a transaction operation to be performed without requiring the transaction information to be located a second time by the transaction information manager 202 for associating with the access to the memory location for accessing the instruction 204 .
  • the transaction manager component 220 can provide the interceptor with the associated transaction information.
  • the interceptor based on the transaction information determines a transaction operation to be performed in association with a detected access to a memory location for accessing the instruction 204 . Once the transaction operation is determined, the interceptor can save information identifying the determined operation, so that when the interceptor is invoked a second time in association with an access to the memory location for accessing the instruction 204 , re-determining the transaction operation to be performed is unnecessary.
  • the memory management system 316 included in the system 600 a can be an SDSS based memory management system 316 that supports an interceptor design pattern for invoking executable addressable entities.
  • the interceptor determined by the transaction manager component 220 is configured to operate in an interceptor chain associated with an access to the memory location for accessing the instruction 204 .
  • the determination can be performed at or before load/link time of the instruction 204 and/or at runtime.
  • executing of the access instruction 602 by the processor 214 causes the processor 214 to attempt an access to a memory location for accessing the instruction 204 .
  • the access is mediated by the memory management system 316 .
  • the memory management system 316 invokes an interceptor chain associated with the memory location for processing.
  • the interceptor provided by the transaction manager component 220 is invoked.
  • the interceptor can be invoked with a transaction operation determined prior to invocation and/or it can interoperate with the transaction information manager 202 and transaction manager component 220 to determine a transaction operation to be performed as a result of the invocation.
  • the system 600 b can include the transaction information manager 202 established as the interceptor of the software access detector component 222 A associated with the detection of an access to a memory location for accessing instruction 204 .
  • the transaction information manager 202 is invoked as described earlier.
  • the transaction information manager 202 receives access information including information identifying an attribute associated with the access, such as an address of the memory location.
  • the transaction information manager 202 can use the attribute to locate a transaction information record in the transaction information data store 322 with matching criteria including a condition that matches based on the attribute.
  • the transaction information manager 202 can use the attribute identified in the access information to identify a second attribute for locating a matching transaction information record.
  • a memory map and symbol table associated with the executable program component 208 can be provided.
  • a symbol table can be provided as a result of a compile/link/load process for generating the executable program component 208 from the source code 210 and loading and linking the loadable object code 310 into the memory 216 .
  • the loader/linker 314 generates a map including information identifying the memory locations where various addressable entities of the executable program component 208 are loaded, such as the “dolt” executable addressable entity 206 and/or the instruction 204 .
  • the loader/linker 314 can be configured to associated memory addresses with at least a portion of the symbols in the symbol table.
  • the transaction information manager 202 can locate a symbol associated with the memory 216 address.
  • the attribute is used to locate a matching transaction information record.
  • the transaction information manager 202 is only invoked when the loader/linker 314 interoperating with the transaction information manager 202 at load/link time determines that a matching record exists.
  • the determination that a matching record exists occurs when an access by the processor 214 to the memory location for executing the instruction 204 is detected.
  • the transaction manager component 220 is invoked as depicted by a message 4 , to determine a transaction operation to be performed based on the access information and the transaction information as already described.
  • the system 600 c includes the physical memory supporting the processor memory 216 that can be configured for generating a plurality of hardware interrupts based on an access to a specified physical memory location or region by the processor 214 as described above.
  • multiple hardware interrupts are supported.
  • an interrupt vector can be included in the processor 214 for supporting multiple interrupts.
  • an interceptor based on the transaction information is configured as the hardware interrupt handler for the particular interrupt set for the memory location and/or region.
  • the access instruction 602 is depicted.
  • the access instruction 602 when executed by the processor 214 , results in the processor 214 attempting to access the memory location for accessing the instruction 204 .
  • the access attempt triggers the configured hardware interrupt to be generated resulting in control being passed to the corresponding interceptor of the software access detector component 222 A.
  • Executing of the instruction 204 can occur at any time prior to, during, and/or after processing of the interceptor.
  • the transaction manager component 220 determines a transaction operation to be performed in association with an access to the instruction 204 as described above.
  • the transaction manager component 220 of the system 600 c can additionally select a preconfigured interceptor and/or generate an interceptor configured to perform the determined transaction operation when invoked without re-determining the transaction operation to be performed.
  • the transaction manager component 220 can associate the transaction information with an interceptor for processing when an access to the instruction 204 is detected.
  • the interceptor when invoked is configured to use the associated transaction information to determine a transaction operation to be performed without requiring the transaction information to be located a second time by the transaction information manager 202 for associating with the access to the memory location for accessing the instruction 204 .
  • the transaction manager component 220 can provide the interceptor with the associated transaction information.
  • the interceptor based on the transaction information determines a transaction operation to be performed in association with a detected access to a memory location for accessing the instruction 204 .
  • the interceptor saves information identifying the determined operation, so that when the interceptor is invoked a second time in association with an access to the memory location for accessing the instruction 204 , re-determining the transaction operation to be performed is unnecessary.
  • the saved transaction operation can be used.
  • the system 600 d includes physical memory supporting the processor memory 216 that can be configured to generate a hardware interrupt based on an access to a physical memory location or region by the processor 214 .
  • the transaction information manager 202 can be configured as the interrupt handler for the particular hardware interrupt.
  • the transaction information manager 202 serves as the interceptor of the software access detector component 222 A for the particular hardware interrupt of the hardware access detector component 222 B.
  • the transaction information manager 202 is invoked as the interrupt handler of the hardware interrupt.
  • the transaction information manager 202 uses access information including information identifying an attribute associated with the access received in the invocation process to locate a matching transaction information record in the transaction information data store 322 .
  • the transaction information manager 202 can use the attribute identified in the access information to identify a second attribute for locating a matching transaction information record as described earlier in an example using a memory map and a symbol table.
  • each ⁇ aentity> element 502 a and 512 a can correspond to a transaction information record in the transaction information data store 322 .
  • a transaction information record corresponding to the ⁇ aentity> element 506 a for instances of the “dolt” executable addressable entity 206
  • a transaction information record corresponding to the ⁇ aentity> element 512 a for instances of an “errorHandler” Executable addressable entity
  • a matching executable addressable entity 206 “dolt,” has a global scope within its including executable program component 208 . This scope information can be used as a condition to be matched in the matching criteria of the corresponding transaction information record.
  • the matching criteria thus includes a condition for matching the “dolt” symbol, a condition that a matching addressable entity is an executable addressable entity, and a condition that the access is for an addressable entity with top level scope in the executable program component 208 .
  • the ⁇ transaction> element 516 a is included for specifying transaction information to be associated with matching accesses as described above.
  • the ⁇ new/> element 518 a is provided for specifying that a new transaction must be created for each instance of the “dolt” executable addressable entity 206 .
  • the specification can indicate the transaction create operation is to be performed when an access to an initial instruction 204 included in the “dolt” executable addressable entity 206 is detected.
  • the initial instruction can be determined based on a policy as described above.
  • the transaction manager component 220 determines that a transaction operation for creating a new transaction is to be performed in association with an access to the initial instruction of the “dolt” executable addressable entity 206 .
  • a rule/policy associated with the schema can specify that when a ⁇ transaction> element is associated with an executable addressable entity without a specification of any particular instruction, an initial instruction can be associated with initial transaction information.
  • a new transaction is to be created even if the runtime process is operating within an existing transaction causing a nesting of transactions.
  • a ⁇ supports> element can be provided for specifying that an associated executable addressable entity can be processed within an existing transaction, but a transaction is not required.
  • a ⁇ requires> element can be provided to indicate that an executable addressable entity can run within an exiting transaction, but, if there is no existing transaction associated with the runtime process accessing the instruction 204 , for example, in an instance of executable addressable entity 206 , then an operation for creating a new transaction should be performed prior to or during the initialization of the “dolt” instance.
  • Those familiar with transaction systems will understand that elements described are exemplary, and that other elements can be used instead of and/or in addition to the examples provided based on the transaction system used.
  • the ⁇ commit> element 522 a specifies when a transaction has completed and should be committed.
  • the transaction created for the “dolt” instance is to be committed when a return from the “dolt” entity is detected.
  • the transaction manager component 220 determines that a commit operation is to be performed in association with an access to any instruction that performs a normal return from the executable addressable entity 206 .
  • the ⁇ isolation> element 520 a as described specifies isolation policy information.
  • a transaction can allow “dirty reads” as can be indicated by a ⁇ dirtyread> element 534 a , or it can require serialized access to transaction resources as indicated by a ⁇ serialize> element (not shown).
  • a dirty read allows a reader to see modifications made but not committed by a transaction in which the read is not being performed.
  • “Dirty reads” can improve performance by avoiding lock contention between a runtime process reading from an addressable entity and a runtime process that writes to the same addressable entity.
  • a “dirty read,” can cause problems because the data read might not be committed meaning the reader may be working with incorrect data.
  • a default can be specified.
  • ⁇ serialize> can be the default.
  • some or all transaction information attributes can have associated default values including a ⁇ transaction> element and its analogs.
  • the transaction information illustrated in FIG. 5 a further indicates that for an instance of the “dolt” executable addressable eneity 206 , non-repeatable reads are not allowed as specified by a ⁇ nonrepeatable> element 536 a and phantom reads are not allowed as specified by a ⁇ phantom> element 538 a . If non-repeatable reads are allowed, it is possible that a runtime process can read from a particular addressable entity a number of times without writing to the addressable entity, and not get the same value on every read.
  • FIG. 5 a includes a ⁇ log> element 532 a for specifying logging requirements to be provided for by the transaction manager component 220 for an associated transaction.
  • the ⁇ log> element 522 a associated with an instance of the “dolt” executable addressable entity 206 indicates a message logging the result code indicated by the % 0 symbol is to be logged in a string with the prefix, “TResult:”.
  • “% 0” is defined to indicate a transaction operation result code.
  • the transaction manager component 220 determines that a message logging a transaction result code is to be performed when a transaction operation is performed in a association with a matching addressable entity.
  • a ⁇ retry> element 540 a indicates that if an error associated with an addressable entity serving as an input and/or output parameter of, for example, a function or method, is detected during the unit of operation under control of transaction, the transaction manager component 220 is to roll-back the transaction and present an error message to a user including the parameter error information. Via the presentation to the user, the transaction manager component 220 can receive an indication to abort the unit of operation or can receive new parameter data and as indicated retry the failed operation.
  • the second ⁇ aentity> entry 512 a matches addressable entities that are executable and have an associated symbol, “errorHandler.”
  • instances of the “dolt” executable addressable entity 206 invoke an instance of the “errorHandler” entity when executing of “dolt” is not successful.
  • a developer can use knowledge of this relationship to abort a transaction created for a “dolt” instance when runtime process executing “dolt” accesses an “errorHandler” instance.
  • the transaction manager component 220 determines that a detected access to an instruction invoking an instance of “errorHandler” requires an operation for aborting a transaction if an associated transaction exists.
  • FIG. 5 b illustrates analogous transaction information to the command language transaction information discussed above, such as a database-backed SDSS based system using a SQL compatible database.
  • a keyword, such as “NEW” 520 b allows the transaction manager component 220 to determine whether and when a transaction can be associated with an instance of the executable addressable entity 206 and operations to be performed for supporting the isolation specifications with respect to the transaction resources also specified, as discussed earlier.
  • the operation of the transaction manager 220 in determining a transaction operation to perform in association with an access to a memory location of the instruction 204 is analogous to that described with respect to FIG. 5 a.
  • a system for providing transaction support for executable program components includes means for performing the transaction operation in association with the executing of the instruction, wherein the transaction operation is performed by a program component other than the executable program component including the executable addressable entity.
  • a transaction manager component 220 is configured for performing the transaction operation in association with the executing of the instruction, wherein the transaction operation is performed by a program component other than the executable program component including the executable addressable entity.
  • the transaction manager component 220 performs or provides for performing each of the determined transaction operations associated with each of the corresponding instructions in the “dolt” 206 and “errorHandler” executable addressable entities as illustrated in FIG. 5 a .
  • the transaction manager component 220 creates a new transaction having attributes based on the “dolt” transaction information record in the transaction information data store 322 created based on the “dolt” ⁇ aentity> element 506 a in FIG. 5 a .
  • the operation is not indicated in the source code representation 210 from which the instruction 204 was generated.
  • the “dolt” executable addressable entity 206 including the accessed instruction 204 is executed in an associated runtime process within the context of the new transaction.
  • the transaction manager component 220 When an access to each of two instances of the “dolt” executable addressable entity 206 is detected, for example, in two runtime processes, the two transactions can operate concurrently. When operated concurrently the transaction manager component 220 ensures the required isolation policy as indicated in the transaction information is enforced. According to the ⁇ isolation> element 520 a in FIG. 5 a , the transaction manager component 220 allows “dirty reads” during the operation of the transactions, but does not allow phantom reads or non-repeatable reads. Further, according to the ⁇ retry> element 540 a specification in FIG.
  • the transaction manger performs the determined operation, 220 based on a determination associating a detection of an invalid parameter while processing in the context of an associated transaction.
  • a retry operation is the determined operation performed in response to detecting the invalid parameter.
  • the transaction manager component 220 can receive an indication to abort the transaction associated with the runtime process in which the parameter condition was detected.
  • the transaction manager component 220 upon receiving the abort indication, rolls back the operation and restores the resources specified in the resources portion of the associated transaction information based on the ⁇ resources> element 530 a to their state at the time of the creation of the associated transaction.
  • the transaction manager component 220 can receive new parameter data and an indication to retry the failed portion of the operation. In this case, the transaction manager component 220 restores the unit of operation to its state prior to the detection of the parameter condition and restarts the unit of operation from that point using the received parameter data.
  • the corresponding transaction can be rolled-back as determined by the transaction manager component 220 and aborted according to the ⁇ abort> element 526 a.
  • An instruction indicating a return from “dolt” can be detected at load time by the loader 314 , according to an aspect. For example, if the processor 214 supports a “return” instruction defined to return from a function or subroutine invocation, the “return” instruction can be detected and associated with transaction information based on the ⁇ aentity> element 506 a . In another example, if the processor 214 supports a stack based execution model, operations changing a processor register defined to reference a base of a stack frame can be detected at runtime.
  • Such instructions indicating a return from an invocation of an executable addressable entity can be associated with transaction information at runtime using matching criteria in a transaction information record and an attribute of the instruction 204 .
  • returns can be mediated and thus detected by the SDSS memory manager 316 .
  • the deleting of a “dolt” instance record can indicate a return and/or a table can be maintained for tracking a call path within a process.
  • the transaction operation can be performed in association with a detected access to a memory location of the instruction 204 at the time the access is detected as indicated above, or the transaction operation can be performed before any access is detected.
  • the isolation policy for access to instances of the “dolt” executable addressable entity 206 requires serialized access to the identified transaction resources with non-repeatable reads and phantom reads not allowed.
  • an SDSS can perform at least a portion of the transaction operations to be performed for enforcing the specified isolation policy prior to a detected access.
  • the isolation policy 522 b portion of the constraint 518 b can be at least partially enforced by allowing only one row to exist in the “dolt_Instance_Table” 502 b at any give time, thus ensuring complete isolation of the processing of the transaction resources 526 b as far as processing of an instance of the “dolt” executable addressable entity 206 is concerned.
  • the transaction resources are identified by the “RESOURCES” 526 b keyword as static variables in the executable program component 208 that can be accessed during an operation of an instance of the “dolt” executable addressable entity 206 . According to an aspect, analysis of the possible execution paths and use of a corresponding symbol table including type information can be used to identify the particular transaction resources.
  • the transaction manager component 220 can determine a more efficient access policy for enforcing the transaction isolation constraints 522 b than forcing serialized access to the “dolt” executable addressable entity 206 .
  • the transaction operations are determined at or before the creation of the loadable object code 310 , and are performed at load-time as well as at time of access according to the commands depicted in the portion of the loadable object file 500 b.
  • the transaction operation for aborting a transaction can be determined during or before creation of the loadable object code and associated with an instance of the “errorHandler” executable addressable entity.
  • the abort operation can be performed when an access to a memory location associated with an invocation of an instance of “errorHandler” is detected at run-time.
  • the transaction information specified using the “CONSTRAINT TRANSACTION” 530 b condition includes a specification, “ABORT ON-ACCESS” 532 b indicating that if an instance of the “errorHandler” executable addressable entity is accessed under control of a transaction, the transaction is to be aborted and rolled back. Also included in FIG.
  • 5 b is the CREATE TABLE instruction block 534 b for creating a “code_block” table for storing executable instructions of executable addressable entities, such as instructions for the “dolt” executable addressable entity and the “errorHandler” executable addressable entity. Records in the “code_block” table 534 b include executable instructions for various functions, methods, and other executable addressable entity types. Alternatively, transaction information specifications can be provided as part of the specification of the “code_block” table rather than included in the specifications of the various executable addressable entity instance tables.
  • the first GRANT command 536 b grants read and write access to dolt_Instance_Table 502 b instances to the SYSTEM process ID allowing the execution environment 212 to use only the single row instance created at the time the executable program component 208 is loaded into the memory 216 .
  • the third GRANT command 538 b gives SYSTEM execute access to the executable “code_block” table allowing the machine and/or virtual byte code in each row of the code_block table 534 b to be accessed and executed by the processor 214 .
  • the second GRANT command 540 b allows an executable addressable entity, SecondAddressableEntity (not shown), in a second executable program component, SecondExecutableProgramComponent, to read and write data from and to records of the dolt_Instance_Table 502 b . This allows a runtime process executing the machine code of the second executable program component to access the executable addressable entity 206 , “dolt.”
  • the fourth GRANT command 542 b gives executable addressable entity, SecondAddressableEntity, in the second executable program component, SecondExecutableProgramComponent, execute access to a record in the code_block table 534 b corresponding to the executable addressable entity associated with the “dolt” executable addressable entity 206 .
  • the second GRANT command 540 b and the fourth GRANT command 542 b allow the secondAddressableEntity to invoke the “dolt” executable addressable entity 206 for execution by the processor 214 .
  • an executable addressable entity table can include a column for storing a reference to transaction information. This technique does not require the matching of attributes as described above. Access to the instruction 204 by the processor performed in association with the performing of a determined transaction operation by the transaction manager component 220 is depicted as a message 5 in the system 600 a - b , a message 6 in the system 600 c , a message 7 in the system 600 d.
  • executable instructions of a computer program for carrying out the methods described herein can be embodied in any machine or computer readable medium for use by or in connection with an instruction execution machine, system, apparatus, or device, such as a computer-based or processor-containing machine, system, apparatus, or device, that can read or fetch the instructions from the machine or computer readable medium and execute the instructions.
  • a “computer readable medium” can be any medium that can contain, store, communicate, propagate, or transport the computer program for use by or in connection with the instruction execution machine, system, apparatus, or device.
  • the computer readable medium can be, for example, but not limited to, an electronic, magnetic, optical, electromagnetic, infrared, or semiconductor machine, system, apparatus, device, or propagation medium.
  • the computer readable medium can include the following: a wired network connection and associated transmission medium, such as an ETHERNET transmission system, a wireless network connection and associated transmission medium, such as an IEEE 802.11(a), (b), (g) or (n) or a BLUETOOTH transmission system, a wide-area network (WAN), a local-area network (LAN), the Internet, an intranet, a portable computer diskette, a random access memory (RAM), a read only memory (ROM), an erasable programmable read only memory (EPROM or Flash memory), an optical fiber, a portable compact disc (CD), a portable digital video disc (DVD), and the like.
  • a wired network connection and associated transmission medium such as an ETHERNET transmission system
  • a wireless network connection and associated transmission medium such as an IEEE 802.11(a), (b), (g) or (n) or a BLUETOOTH transmission system
  • WAN wide-area network
  • LAN local-area network
  • the Internet an intranet

Abstract

Methods and systems are described for providing transaction support for executable program components. In one embodiment, transaction information is associated with an instruction included in an executable addressable entity included in an executable program component generated from source code written in a programming language, wherein the transaction information is independent of the source code and the programming language. Further, an access to the instruction is detected for executing by a processor. A transaction operation to perform in association with the executing of the instruction is determined based on the transaction information associated with the instruction. The transaction operation is performed in association with the executing of the instruction, wherein the transaction operation is performed by a program component other than the executable program component including the executable addressable entity.

Description

    RELATED APPLICATIONS
  • This application is related to U.S. Pat. No. ______, titled “METHOD AND SYSTEMS FOR PROVIDING CONCURRENCY CONTROL FOR ADDRESSABLE ENTITIES”, filed on even date herewith, the entire disclosure of which is here incorporated by reference.
  • BACKGROUND
  • In today's software systems, developing software that involves transactions such as operations using a database can be difficult. Experimentation and testing are typically required to determine correct or optimal transaction boundaries, transaction resources, and transaction policies. Currently, programmers insert transaction related instructions into source code, for example, to start, abort, or commit a transaction. Changing transactional boundaries thus involves a change to software. In other systems, such as in JAVA™ based systems, J2EE transactions can be configured via adding special tags to comment text in JAVA™ source code files and/or configuration files can be provided that allow some ability to configure transaction boundaries. In both cases, the techniques are language specific. Further, the data protected by a transaction is restricted to persistent data that is, typically, data stored in a relational or object oriented database. All data involved in a transaction is from a database accessed during the transaction in a typical scenario. There is no support for a transaction that protects the state of entities included in a program such as a variable.
  • Today's systems can also use a technology referred to as “transactional memory.” Transactional memory is used for providing concurrency control for a region of memory shared by two or more processes or threads. It is an alternative to lock based concurrency control mechanisms such as semaphores. Like database transactions, support for transactional memory is built into a programming language. Thus, transactional memory is language dependent. and language specific, Transaction memory typically applies to data variables that are shared between two threads or processes.
  • Accordingly, there exists a need for methods, systems, and computer program products for providing transaction support for executable program components.
  • SUMMARY
  • Methods and systems are described for providing transaction support for executable program components. In one embodiment, transaction information is associated with an instruction included in an executable addressable entity included in an executable program component generated from source code written in a programming language, wherein the transaction information is independent of the source code and the programming language. Further, an access to the instruction is detected for executing by a processor. A transaction operation to perform in association with the executing of the instruction is determined based on the transaction information associated with the instruction. The transaction operation is performed in association with the executing of the instruction, wherein the transaction operation is performed by a program component other than the executable program component including the executable addressable entity.
  • According to an aspect, a system for providing transaction support for executable program components is disclosed. The system includes means for associating transaction information with an instruction included in an executable addressable entity included in an executable program component generated from source code written in a programming language, wherein the transaction information is independent of the source code and the programming language. The system also includes means for detecting an access to the instruction for executing by a processor. The system further includes means for determining a transaction operation to perform in association with the executing of the instruction based on the transaction information associated with the instruction. The system still further includes means for performing the transaction operation in association with the executing of the instruction, wherein the transaction operation is performed by a program component other than the executable program component including the executable addressable entity.
  • According to another object, a system for providing transaction support for executable program components is disclosed. The system includes a transaction information manager component configured for associating transaction information with an instruction included in an executable addressable entity included in an executable program component generated from source code written in a programming language, wherein the transaction information is independent of the source code and the programming language. The system also includes an access detector component configured for detecting an access to the instruction for executing by a processor. The system further includes a transaction manager component configured for determining a transaction operation to perform in association with the executing of the instruction based on the transaction information associated with the instruction and configured for performing the transaction operation in association with the executing of the instruction, wherein the transaction operation is performed by a program component other than the executable program component including the executable addressable entity.
  • According to a further aspect, a computer readable medium including a computer program, executable by a machine, for providing transaction support for executable program components is disclosed. The computer program includes executable instructions for associating transaction information with an instruction included in an executable addressable entity included in an executable program component generated from source code written in a programming language, wherein the transaction information is independent of the source code and the programming language. The computer program also includes instructions for detecting an access to the instruction for executing by a processor. The computer program also includes instructions for determining a transaction operation to perform in association with the executing of the instruction based on the transaction information associated with the instruction. The computer program also includes instructions for performing the transaction operation in association with the executing of the instruction, wherein the transaction operation is performed by a program component other than the executable program component including the executable addressable entity.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • Objects and advantages of the present invention will become apparent to those skilled in the art upon reading this description in conjunction with the accompanying drawings, in which like reference numerals have been used to designate like or analogous elements, and in which:
  • FIG. 1 is a flow diagram illustrating a method for providing transaction support for executable program components according to an embodiment of the subject matter described herein;
  • FIG. 2 is a block diagram illustrating a system for providing transaction support for executable program components according to another embodiment of the subject matter described herein;
  • FIG. 3 is a block diagram illustrating a system for providing transaction support for executable program components according to another embodiment of the subject matter described herein;
  • FIG. 4 is a flow diagram illustrating a method for providing transaction support for executable program components according to an embodiment of the subject matter described herein;
  • FIG. 5 a illustrates an exemplary Extensible Markup Language (XML) document for associating concurrency policies with addressable entities according to another embodiment of the subject matter described herein;
  • FIG. 5 b illustrates an exemplary loadable object file for associating concurrency policies with addressable entities according to another embodiment of the subject matter described herein;
  • FIG. 6 a is a data flow diagram illustrating data flow in a system for providing concurrency control for addressable entities according to another embodiment of the subject matter described herein;
  • FIG. 6 b is a data flow diagram illustrating data flow in a system for providing concurrency control for addressable entities according to another embodiment of the subject matter described herein;
  • FIG. 6 c is a data flow diagram illustrating data flow in a system for providing concurrency control for addressable entities according to another embodiment of the subject matter described herein;
  • FIG. 6 d is a data flow diagram illustrating data flow in a system for providing concurrency control for addressable entities according to another embodiment of the subject matter described herein; and
  • FIG. 7 is a block diagram illustrating a system for providing transaction support for executable program components according to another embodiment of the subject matter described herein.
  • DETAILED DESCRIPTION
  • FIG. 1 is a flow diagram illustrating a method for providing transaction support for executable program components according to an exemplary embodiment of the subject matter described herein. A transaction can include a unit of operation of an executable that is treated in a coherent and reliable way independent of other transactions that must be either entirely completed or aborted. FIG. 2 is a block diagram illustrating a system for providing transaction support for executable program components according to another exemplary embodiment of the subject matter described herein. The method illustrated in FIG. 1 can be carried out by, for example, some or all of the components illustrated in the exemplary system of FIG. 2.
  • With reference to FIG. 1, in block 102 transaction information is associated with an instruction included in an executable addressable entity included in an executable program component generated from source code written in a programming language, wherein the transaction information is independent of the source code and the programming language. Accordingly, a system for providing transaction support for executable program components includes means for associating transaction information with an instruction included in an executable addressable entity included in an executable program component generated from source code written in a programming language, wherein the transaction information is independent of the source code and the programming language. For example, as illustrated in FIG. 2, a transaction information (TI) manager component 202 is configured for associating transaction information with an instruction included in an executable addressable entity included in an executable program component. The executable program component is generated from source code written in a programming language. The transaction information is independent of the source code and the programming language.
  • For example, an instruction 204 of an executable addressable entity 206 is shown as included in an executable program component 208. The executable program component 208 is generated from a source code representation 210 written in a programming language. The transaction information associated with the instruction 204 is not included in the source code representation 210 and is independent of the programming language.
  • The association of the transaction information with the instruction 204 can be made directly, for example, by associating an address of a memory location of the instruction 204 with the transaction information in a transaction information record, or by replacing the instruction 204 in a memory location with another instruction for invoking an interceptor component for performing a transaction operation based on the associated transaction information. In another aspect, associating the transaction information with the instruction 204 included in the executable addressable entity 206 includes selecting the transaction information for association with the instruction 204 according to an attribute of the executable addressable entity 206. An attribute of the instruction 204 is any information within an execution environment 212 hosting the instruction 204 that is related to the instruction 204. An attribute can be the virtual or physical memory address of the instruction 204, the instruction itself, an operand of the instruction 204, a data type of an operand of the instruction 204, information associated with a runtime process in which the instruction 204 is accessed, a symbol or name associated with the instruction 204, an attribute of an invoker of the instruction 204, an attribute of a “user” with access privileges to the instruction 204, information associated with the executable addressable entity 206 that includes the instruction 204, and information associated with the executable program component 208 to which the executable addressable entity 206 including the instruction 204 belongs.
  • The exemplary system 200 can include the execution environment 212 supporting the operation of the executable program component 208. The execution environment 212 can include, for example, a processor 214, a processor addressable memory 216, such as a virtual memory, and an operating system 218. The execution environment 212 can include additional and alternate components and subsystems, such as a network stack (not shown), based on the requirements of a particular device hosting the execution environment 212. The execution environment 212 can be configured to support the processing of executables such as applications and object code libraries.
  • According to an aspect, the source code representation 210 of the executable program component 208 can be represented in a processor independent source code programming language, wherein a plurality of machine code instructions, each executable by a processor from a specified architecture family, can be generated from the source code representation 210 written in the programming language. For example, the executable program component 208 is an executable representation of the source code representation 210, which can be written in a processor-independent programming language. Some examples of processor-independent programming languages include JAVA™, C, C++, Basic, Perl, and Ruby. A processor independent programming language is a programming language from which a plurality of machine code representations can be generated from a single source written using the programming language, where each respective machine code representation is compatible for execution by a respective processor from a different processor family, such as the INTEL® x86 processor family and the POWERPC® processor family. That is, a machine code representation of a source code representation can be generated that is executable on a processor from a particular processor family and a machine code representation can be generated that is executable on a processor of a second processor family. As such, a source code representation written in a processor-independent programming language can be used to generate an executable representation capable of being run in an execution environment supported by a processor from a family other than the family of the processor 214.
  • The executable program component 208 including the addressable entity 206 can be generated through a process of compiling the source code 210 using components illustrated in FIG. 3. The executable program component 208 including the addressable entity 206 can be generated using a compiler 302 resulting in an object code representation 304. The object code representation 304 can be linked, if needed, with another object code representation 306 generated from another source code (not shown), using a linker 308 producing a loadable object code representation 310 which can be stored in a persistent physical memory 312 either included in the address space of the memory 216 or outside the address space of the memory 216 as is typically done. Interpreted programming languages are based upon similar principals and are considered within the scope of this document.
  • The executable program component 208 is created, for example, by a loader/linker 314 interoperating with a memory management system 316 included in the execution environment 212. The loader/linker 314 is configured to load the loadable object code 310 into a memory location in the memory 216 as described above. During the process of loading, the loader/linker 314 and/or the memory management system 316 reserves a memory location that is associated with the addressable entity 206 of the executable program component 208. During loading and/or linking a value associated with the addressable entity 206 is stored in the associated memory location. Thus, each instruction, such as the instruction 204, in an executable addressable entity, such as the executable addressable entity 206, is associated with a memory location.
  • If the executable program component 208 including the executable addressable entity 206 includes any unresolved references to addressable entities within and/or external to the executable program component 208, a load-time or run-time linking process is performed by a linking component of the loader/linker 314 resolving the unresolved references enabling a runtime process to execute the instructions including the instruction 204 in the executable program component 208 using the processor 214.
  • According to an aspect, addressable entities including the executable addressable entity 206 in the executable program component 208 are loaded into, and thereby associated with, respective memory locations by a loader/linker that can interoperate with a memory management system 316. Executable entities such as the executable addressable entity 206 include one or more instructions, such as the instruction 204, that are associated with memory locations when the executable addressable entity 206 is loaded into the memory 216.
  • A flow chart 400 in FIG. 4 depicts another exemplary method for providing transaction support for executable program components. In block 402, a determination is made whether an instruction 204 is associated with transaction information. The instruction 204 and its associated executable addressable entity 206 are loaded into the memory 216 by the loader/linker 314 included in the execution environment 212 as depicted in FIG. 3. The executable addressable entity 206 including the instruction 204 in the executable program component 208 loaded into the memory 216 is accessible to the processor 214. The loader/linker 314 uses an address space supported by the processor 214 and the memory 216 where an address from the address space can be used by the processor 214 to locate a memory location of the memory 216.
  • According to an aspect, the address space of the memory 216 is mapped to a volatile physical memory such as a random access memory (RAM) with any currently unmapped, allocated memory 216 stored in a swap file in a physical persistent memory 312, for example. In another aspect, an address space spans both volatile physical memory and persistent physical memory such a ROM (not shown) and the persistent physical memory 312, such as a hard drive. For example, the address space can be entirely mapped to the persistent physical memory 312 with RAM serving as a cache. U.S. patent application Ser. No. 11/428,273 filed Jun. 30, 2006, entitled “Methods, Systems, And Computer Program Products For Providing A Program Execution Environment,” the entire disclosure of which is here incorporated by reference, describes an operating system hosted language neutral virtual execution environment supporting at least one of a virtual, non-sequential address space and a virtual, structured address space. Further, U.S. patent application Ser. No. 11/428,338 filed Jun. 30, 2006, entitled “Methods, Systems, And Computer Program Products For Providing Access To Addressable Entities Using A Non-Sequential Virtual Address Space,” the entire disclosure of which is here incorporated by reference, describes providing access to addressable entities using at least one of a non-sequential, virtual address space and a structured, virtual address space in a native execution environment. According to an aspect, at least a portion of the persistent physical memory 312 is addressed by the address space of the memory 216 as indicated in the system 200. For example, systems using a structured data storage system (SDSS) based memory management system as described in U.S. patent application Ser. No. 11/428,273 and U.S. patent application Ser. No. 11/428,338 include an address space than can span volatile and persistent physical memory extending processor memory 216 across various types of physical memory.
  • Transaction information can be provided using a number of language independent techniques. According to an aspect, a declarative language defined for specifying transaction information is used. The declarative language, for example, can be an XML based language specified by a schema where at least a portion of the language is defined for specifying transaction information. In another aspect, a command language is used for specifying transaction information. For example, a command language such as structured query language (SQL) can be used. According to yet another aspect, a user interface, such as an administrator/user graphical user interface 318 can be provided for directing a user in providing transaction information. Transaction information provided by the user is received via the interface component 318 and associated with the instruction 204, for example, based on a condition matching an attribute of the addressable entity 206.
  • FIG. 5 a provides an example of an Extensible Markup Language (XML) document specified by a schema. A portion of the XML markup specified by the schema is defined for specifying transaction information. A transaction information specification, such as depicted in FIG. 5a, can be generated manually by a user. A developer tool, such as a linker, can be configured to generate the transaction information specification based on symbol information and other metadata attributes associated with a representation of the addressable entities included in, for example, the object code 304 and/or the loadable object code 310. A developer tool can require user input for identifying, for example, transaction boundaries and isolation policies based on the symbols for generating a template. A user can edit the generated template using symbol information and/or knowledge of the source code 210 from which the executable program component 208 is generated. Alternatively, a tool such as the compiler 302, linker 308, and/or loader 314 can be configured to map a programming language specific symbol space to a language neutral symbol space defined for identifying program addressable entities in a language neutral manner. Further, symbols in the symbol space of the compiler 302 or interpreter of the programming language used for the source code 210 can be used by a user for ease of use. Programming language specific symbols along with language neutral symbols can be used in generating the transaction information specification and/or a transaction information template.
  • Returning to the exemplary representation of the transaction information specification in FIG. 5 a, a <constraint> XML document 500 a is depicted. The <constraint> document 500 a can include one or more <executable-component> elements each corresponding to an executable program component, such as, an <executable-component> element 502 a corresponding to the executable program component 208. Each <executable-component> element includes an identifier, such as a URI included in a <uri> element, such as a depicted <uri> element 504 a that identifies a loadable object code file, such as the loadable object code file 310, including a loadable representation of the executable program component 208. In another aspect, the transaction information includes transaction model information identifying a transactional model for determining a transaction operation to perform in association with the executing of an instruction, such as the instruction 204. An <executable-component> element can include a <transaction-model> element (not shown) allowing for the specification of a particular type of transaction model. For example, the transaction manager component 220 can support a cooperative transaction hierarchy model, a cooperative software engineering environment (SEE) model, a distributed object management (DOM) model, an open public environment model, a “ConTract” model, a split-transaction model, a “Flex” transaction model, an S-transaction model, a multilevel transaction model, and/or a poly-transaction model.
  • An <executable-component> element can include one or more <aentity> elements. For example, a <aentity> element, specifies attribute conditions for an addressable entity in an executable program component identified by an <uri> element included in an <executable-component> element. An addressable entity can be identified using one or more attribute conditions, referred to as “matching criteria.” Examples of attributes that can be used in conditions specified in matching criteria have been discussed above. According to an aspect, an execution environment condition can be used as a matching criteria. The condition can be detected during the executing of an executable program component, and wherein associating transaction information with an instruction included in an executable addressable entity of the executable program component is based on the detected execution environment condition. For example, the system 200 can include a system monitor component 320 configured for detecting an execution environment condition during the processing of the executable program component 208. The transaction information manager component 202 can be configured for associating the transaction information with an instruction included in an executable addressable entity based on the detected execution environment condition and any additional matching criteria. In another aspect, a matching criterion, such as an execution environment condition, can be detected when an executable program component is not operating. If transaction information associated with the matching criterion is an action not associated with an access to a matching addressable entity, such as changing a transaction model associated with matching addressable entities, the action can be performed.
  • In an example, an execution environment condition such as processor utilization can be used as an attribute for locating transaction information for associating with the instruction 204 included in the addressable entity 206 when a processor utilization condition included in the matching criteria is met, such as a threshold value for processor utilization of the processor 214. For example, transaction information can be specified that causes a switch from a transaction policy requiring serialized access to a set of transaction resources to a policy that can result in “dirty reads” with respect to one or more of the transaction resources, to improve system performance. Additional examples of matching criteria are provided throughout the document.
  • In the <constraint> document 500 a, an <aentity> element 506 a is included with a specification of matching criteria. A <symbol> element can be included for specifying a name/symbol in symbol information generated, for example, during the compile, link, and load process as described above. A <symbol> element 508 a specifying “dolt” as a matching symbol criteria is depicted. According to an aspect, wildcard matching is supported for specifying a condition in matching criteria including support for regular expressions and/or their analogs. Further, an <execute> element, such an an <execute/> element 510 a, can be used to indicate that a matching entity is an executable addressable entity as is addressable entity 206. A <type> element (not shown) can be supported for general purpose data type specification used in matching criteria. The <execute/> element 510 a is a special purpose “type” specification element. Keywords used for content of a <type> element specification are language independent, typically conforming to types supported by the architecture of the target processor, such as the processor 214. Some implementations can support language specific <type> element content as a matching criteria specification. Other examples of attributes that various implementations can support for matching criteria can be identified by one skilled in the art given the description provided in this document.
  • Service Oriented Architecture Protocol (SOAP), for example, allows addressable entities to be specified for remote procedure calls (RPC) in a language neutral manner using an analogous XML schema. The SOAP schema and namespace can be used in an example of a format for specifying matching criteria and transaction information. Resource definition framework (RDF) can also be used for supporting a schema for generating and processing transaction information supporting both the specification of matching criteria and transaction information. A combination of attributes of an addressable entity including symbol/name, data type information, and runtime process owner, for example, can be specified for identifying addressable entities with matching attributes, associating the matching addressable entities with transaction information.
  • According to an aspect, <aentity> elements can be nested. The nesting can correspond to a scope for matching an addressable entity with a <aentity> element. Thus, a scope can be specified as a condition in matching criteria. For a programming language or an executable program component supporting only addressable entities having global scope all <aentity> elements appear in the same level as depicted in the <constraint> document 500 a as generated by a development tool and/or by a user.
  • In FIG. 5 a, conditions for matching criteria are specified for two sets of transaction information specifications are depicted in the two <aentity> elements, the <aentity> element 506 a and a <aentity> element 512 a. For example, a <symbol> and/or <type> element can be used for specifying matching criteria for identifying an addressable entity associated with specified transaction information included in an <aentity> element.. The transaction information specification entries in FIG. 5 a match addressable entries that are executable as indicated, for example, by the <execute/> element 510 a and have an associated symbol of “dolt,” or an associated symbol of “errorHandler,” as specified by the the first <symbol> element 508 a and a second <symbol> element 514 a, and are at the highest scope level of the executable program component 208 as specified by the nesting of the first <aentity> element 506 a and the second <aentity> element 512 a. Each set of transaction information specifications is identified by a <transaction> element defined by the corresponding schema for including transaction information specification, such as a <transaction> element 516 a included in the first <aentity> element 506 a. Content of a <transaction> element is described below.
  • FIG. 5 b illustrates an example of a portion of a loadable object code file for an exemplary SDSS based execution environment, as described in U.S. patent application Ser. No. 11/428,273 and U.S. patent application Ser. No. 11/428,338, providing a transaction information specification. The example shows instructions 500 b used by, for example, the loader/linker 314 to create an instance table for a function, such as the “dolt” executable addressable entity 206. A CREATE TABLE instruction block 502 b is provided for creating a “dolt_Instance_Table” for holding instance data for instantiations of the “dolt” executable addressable entity 206. As depicted in FIG. 5 b, an instance of “dolt” includes a column for an ID 504 b serving as a primary key, a return instance variable, “return_value” 506 b; three columns 508 b identifying the invoking executable addressable entity and a return address, “caller_at”, “caller_instance_table”, and “caller_instance_row”; and an instance variable, “result” 510 b. In an example, the “dolt” executable addressable entity 206 accesses a static variable and can invoke one or more other executable addressable entities during its operation that also can access one or more static variables. A number of “CONSTRAINT” commands are illustrated in FIG. 5 b that specify constraints on the columns in each “dolt_Instance_Table” row. An SDSS based execution environment in enforcing the specified constraints can provide parameter and data validation data at runtime for the executable program component 208 including the “dolt” executable addressable entity 206. Exemplary constraints depicted in FIG. 5 b include a constraint 512 b that the instance variable “result” 510 b is not null, a constraint 514b that the an instance variable “y” 516 b is not null and it is at least one byte in length. A constraint defined for specifying transaction information is depicted as a “CONSTRAINT TRANSACTION” Instruction block 518b A keyword, such as “NEW” 520 b, indicates whether and when a transaction can be associated with an instance of the “dolt” executable addressable entity 206. Isolation specifications associated with an ISOLATION keyword 522 b are depicted. The ISOLATION keyword 522 b and associated syntax and grammar are defined for specifying an isolation policy to be enforced for transaction resources when a transaction is associated with a corresponding instance of the executable addressable entity 206. A COMMIT keyword 524 b and associated syntax and grammar are defined for specifying a successful completion point of a transaction. Transaction resources are specified in FIG. 5 b by a “RESOURCES” keyword 526 b and associated syntax and grammar. Transaction resources must be protected according to transaction specifications such as the specified isolation policy.
  • A portion of a CREATE TABLE instruction block 528 b for creating an instance table for the “errorHandler” executable addressable entity is included in FIG. 5 b. The portion includes a transaction information specification using a “CONSTRAINT TRANSACTION” 530 b instruction block including a keyword, “ABORT ON_ACCESS” 532 b defined for specifying that if an instance of “errorHandler” is accessed under control of a transaction, the transaction is to be aborted and rolled back. In an example, an instance of the “dolt” executable addressable entity 206 invokes an instance of the “errorHandler” executable addressable entity (not shown) when an error condition is detected, thus an access to an instance of the “errorHandler” executable addressable eneity is specified as a boundary of a transaction where the transaction is to be aborted.
  • Also included in FIG. 5 b is a CREATE TABLE instruction block 534 b creating a “code_block” table for storing executable instructions of executable addressable entities, such as the “dolt” executable addressable entity 206 and the “errorHandler” executable addressable entity. Records in the “code_block” table include executable instructions for various functions, methods, and other executable addressable entity types.
  • Alternatively, the transaction information specification can be provided as part of the specification of the “code_block” table 534 b rather than included in the specifications of the various executable addressable entity instance tables, such as the CREATE TABLE instruction block 502 b and the CREATE TABLE instruction block 528 b. Following table creation instructions, additional constraint command language instructions are depicted. A number of GRANT instructions 536 b, 538 b, 540 b, and 542 b are illustrated specifying access control policies.
  • Transaction information specifications can be received through file import, received via a network connection, via a user interface 318, or via any other input techniques. According to an aspect, transaction information specifications, received by the system 300 are stored as transaction information records in a transaction information data store 322. For example, a file including transaction information specification is provided to the system 300, via the administrator/user graphical user interface (GUI) 318, by another executable via a programming interface (not shown), via a file system using a predefined location, and/or using a naming convention. The file data can be provided to the transaction manager component 220 and/or the transaction information manager component 202 for processing and storing as transaction information records in the transaction information data store 322.
  • Associating transaction information with the instruction 204 included in the executable addressable entity 206 in the executable program component 208 can be accomplished in a variety of ways. According to an aspect, the transaction information manager 202 can be configured to interoperate with at least one of the loader/linker 314 and the memory management system 316 to aid the transaction information manager 202 in associating transaction information with the instruction 204. The transaction information manager 202, according to an aspect, can provide for modifying and/or augmenting the executing of the executable program component 208 using an interceptor design pattern for associating transaction information with the instruction 204. According to another aspect, the transaction information manager 202 provides for marking a memory location of the memory 216 where the location includes the instruction 204 for associating the memory location of the instruction 204 with transaction information.
  • Systems 600 a, 600 b, 600 c, and 600 d depicted in FIGS. 6A-D, respectively depict variations of the system 200. Each of the systems 600 a-d is configured for carrying out the method 100. Each of the systems 600 a-d is configured to load the executable program component 208 into the memory 216, associating a memory location with the instruction 204 as illustrated by each message 1 in each of the systems 600 a-d.
  • For example, in the system 600 a in FIG. 6A, the loader/linker 314 is configured to interoperate with the transaction information manager 202 when loading an addressable entity 206 stored in the loadable object code 310 into the memory 216. For example, the loader/linker 314 when loading at least a portion the executable addressable entity 206 including the instruction 204 depicted as a message 1 in FIG. 6A, invokes the transaction information manager 202 depicted as message 2A, providing attribute information associated with instruction 204. The transaction information manager 202 based on the attribute information and/or attribute information available from the execution environment 212 searches the transaction information records in the transaction information data store 322 for a record with matching criteria that matches the attribute information. If a record is not found, the loader/linker 314 continues loading the executable addressable entity 206 including the instruction 204. If a matching record is located, then the transaction information manager 202 can provide a response to the load/linker 220 for associating the instruction 204 with transaction information in the matching transaction information record.
  • Returning to FIG. 4, in block 404 of the method 400 an interceptor is associated with the instruction 204 based on associated transaction information. For example, in the system 600 a the transaction information manager 202 response to the loader/linker 314 causes the loader/linker 314 to provide for an interceptor component depicted as a software access detector component 222A to be invoked in association with an access to the instruction 204 by the processor 214. For example, the instruction 204 can be replaced with a machine code instruction such as a software interrupt instruction where the interceptor component, the software access detector component 222A, is configured to process the software interrupt specified in the instruction. A portion of the execution environment 212 supporting the software interrupt is depicted as the software access detector component 222A in the system 200. The software access detector component 222A is depicted as included in the transaction manager component 220 in the system 600 a. The establishing of the interceptor/software access detector component 222A is depicted as a message 3A when performed by the loader/linker 314.
  • Alternatively, in the system 600 a, the memory management system 316 can be configured to mediate memory accesses. For example, SDSS based systems can be configured to mediate access attempts to various addressable entities stored in an SDSS. For example, the memory management system 316 can be configured to create and manage a chain of interceptors associated with an access to an addressable entity such as the executable addressable entity 206 and thus access to a memory location of the instruction 204. Thus the memory management system 316 invokes the transaction information manager 202 for locating transaction information and, optionally, determining an interceptor based on located transaction information as depicted by a message 2B, as opposed to the message 2A as described above. The memory management system 316 can be configured to determine an interceptor based on transaction information located by the transaction information manager 202 or can be configured to receive interceptor information from the transaction information manager 202 The memory manage system 316 can place the interceptor, such as the software access detector component 222A, in an interceptor chain associated with an access to the instruction 204. The interceptor placed in the chain is configured to operate based on the transaction information located by the transaction information manager 202. The establishing of the interceptor by the memory management system 316 is depicted as a message 3B in the system 600 a.
  • Referring to FIG. 6 b, in the system 600 b, the transaction information manager 202 response to the message 2A described above with respect to the system 600 a, causes the loader/linker 314 to configure the transaction information manager 202 to serve as an interceptor component to be invoked in association with an access to the instruction 204 by the processor 214. For example, as described above, in an example, the instruction 204 can be replaced with a machine code instruction such as a software interrupt instruction where the transaction information manager 202 can be configured to be the interrupt handler, thus serving as the interceptor component also known as, the software access detector 222A. The transaction information manager 202 can be configured to process the software interrupt specified in the instruction. Thus, the transaction information manager 202 is configured as an interceptor for associating the instruction 204 with transaction information. The establishing of the transaction information manager 202 as an interceptor is depicted as a message 2A in the system 600 b. Alternatively, the memory management system 316 can be configured to modify or augment the executable addressable entity 206 including the instruction 204 to set, for example, a software interrupt and configure the transaction information manager 202 as the handler for the interrupt. The message 2B is depicted to show the memory management system 316 in the role of establishing the transaction information manager 202 as an interceptor of an access of the memory location of the instruction 204 for associating the instruction transaction information.
  • The system 600 b can include the memory management system 316 configured to mediate memory accesses. For example, SDSS based systems can be configured to mediate access attempts to various addressable entities stored in an SDSS as described above. The memory management system 316 can be configured to create and manage a chain of interceptors associated with an access to an addressable entity such as the executable addressable entity 206 and thus access to the instruction 204. The memory management system 316 can establish the transaction information manager 202 as an interceptor, serving as the software access detector component 222A, in an interceptor chain associated with an access to the instruction 204. The interceptor placed in the chain is configured to operate based on the transaction information and is depicted as the message 2B in the system 600 b based on an SDSS based memory management system 316.
  • Referring now to FIG. 6 c, in the system 600 c, the physical memory supporting the processor memory 216 can be configured to generate one of plurality of hardware interrupts based on a setting of a memory location when accessed by the processor 214. The loader/linker 314 queries the transaction information manager 202 as depicted by the message 2 to determine if an association should be made. The transaction information manager 202 response can cause the loader/linker 314 to set a memory location to generate an interrupt when an access is detected. The particular interrupt or interrupts generated are based on the transaction information located by the transaction information manager 202. The loader/linker 314, for example, can set a bit associated with the location and/or region configured to generate an interrupt when the bit is set. The interrupt in one scenario is associated with an interceptor serving as an interrupt handler where the interceptor is configured to perform a specific transaction operation such as the operation for creating a new transaction. In the scenario, a second interrupt can be associated with a second interceptor configured to enforce an isolation policy specified in the transaction information. The configuring of the hardware interrupt associated with an access to the memory location of the instruction 204 and the configuring of its corresponding interceptor/software access detector component is depicted as a message 3A and a message 3B, respectively, in the system 600 c.
  • Referring now to FIG. 6 d, in the system 600 d, the physical memory supporting the processor memory 216 is configured to generate a particular hardware interrupt based on an access to a specific physical memory location or region by the processor 214. As indicated the loader/linker 314 queries the transaction information manager 202 as depicted by the message 2 to determine if an association should be made. The transaction information manager 202 response can cause the loader/linker 314 to set a memory location and/or region to generate the particular interrupt when an access is detected. According to an aspect, one interrupt can be used for detecting memory accesses. The transaction information manager 202 is configured to be the interrupt handler/interceptor for all detected accesses according to the aspect. The configuring of the hardware interrupt associated with an access to the memory location of the instruction 204 and the configuring of the transaction information manager 202 as the corresponding interceptor is depicted as a message 3 in the system 600 d.
  • Memory regions, such as pages, that include a memory location of an instruction associated with transaction information can be marked. For example, a request by the loader/linker 314 to the transaction information manager 202 can result in a response from the transaction information manager 202. The response can cause the memory location to be marked indicating that the instruction 204 in the memory location is associated with transaction information. The marking can be performed by any of the loader/linker 314, the transaction information manager 202, and the memory management system 316.
  • Referring to FIG. 7, a memory management system (portions of which are depicted in the system 700) can store a value in a header portion or other metadata portion of a memory 216 region, such as a page 1 702 as depicted in the system 700 mapped to a region of a volatile physical memory, such as a RAM 704, indicating the memory 216 region, the page 702 in the example, is associated with transaction information or should be checked for an association when an access to the page 702 is detected. Additionally, a page table 706 and a map table 708 along with an optional map table cache 708′, each included in the memory management system 316, can include a record with a field for marking a memory location and/or region corresponding to the record in at least one of the tables 706, 708, and 708′. Additionally, the processor 214 includes a translation lookaside buffer (TLB) 710 included in a memory management unit (MMU) 712 as components of the memory management system 316. The TLB 710 is configured to include a field in a TLB entry for marking the entry indicating an association with transaction information. Thus, the memory management system 316 can use a mark in the TLB 710, the page table 706, the map table 708, the map table cache 708′, and a metadata field in a memory location 216 and/or region such as the page 1 702 including the memory location of the instruction 204. The marking indicates the memory location is associated with transaction information or, at least should be checked for an association. The marking can be performed at load-time by the loader/linker 314 interoperating with the transaction information manager 202, and/or at run-time as described below. The interrupts and interceptors can be configured to be processed any of prior to, during, and after executing of the instruction 204 depending on transaction operations that are required by the associated transaction information as is discussed in more detail below.
  • Returning to FIG. 1, in block 104 an access to the instruction for executing by a processor is detected. Accordingly, a system for providing transaction support for executable program components includes means for detecting an access to the instruction for executing by a processor. For example, as illustrated in FIG. 2, an access detector component 222 is configured for detecting an access to the instruction for executing by a processor.
  • Referring again to FIG. 2, an access detector component 222 of the system 200 detects an access to an instruction, such as the instruction 204 associated with transaction information. FIG. 3 illustrates a software access detector component 222A and a hardware access detector component 222B. Some systems provide both a hardware access detector component 222B and a software access detector component 222A while others provide an access detector component 222 using software or only hardware.
  • In an example, the machine code executed by a runtime process can include an accessing instruction or a plurality of accessing instructions capable of accessing the instruction 204. The accessing instruction can also be generated from a source code, such as the source code 210 or any other source code. The source code includes an accessing source code instruction that when processed and loaded into the memory 216, in one example, references the instruction 204 included in the executable addressable entity 206 using an address from an address space of the memory 216 as an operand or references the executable addressable entity 206 by accessing the executable addressable entity 206 for processing thus causing the instruction 204 to be accessed by the processor 214 as a result.
  • As illustrated in FIG. 7, the processor 214 can include an instruction pointer (IP) register 714 included in a register set 716. The processor 214 can also include a controller 718 with microcode for interpreting and executing instructions loaded using the IP register 714 and an arithmetic logic unit (ALU) (not shown) for performing arithmetic operations. The IP register 714 is configured for loading an instruction, such as the instruction 204 stored in a memory location of the memory 216 into the processor 214 for executing.
  • Access to the instruction 204 can be detected by a variety of techniques. In FIG. 4, block 406 of the method 400 includes detecting an access to the instruction 204 and invoking an interceptor. For example, in the systems 200, 300, and 600 a-d an access to the instruction 204 is detected by an access detector component 222 where the access detector component includes at least one of the software access detector component 222A using software such as a software interrupt or interceptor configured to be activated in association with the access and the hardware access detector component 222B using hardware such as a hardware interrupt provided by an interrupt vector 720 included in the processor 214 to be activated in association with the access. Block 408 can be performed before block 402, in association with block 402, and/or following block 406, as depicted in FIG. 4.
  • The detection of the access can indicate that the instruction 204 is associated with a specific set of transaction information, such as when a particular interceptor is invoked as a part of the detection process where the interceptor is associated with the transaction information and is configured, for example, at load time. When this is the case, in the method 400, block 408 can be performed in association with block 402. Alternatively, the detection of the access can indicate that the instruction 204 is associated with transaction information, but the transaction information associated with the instruction 204 is determined at run-time in association with the access detection. In such cases, in the method 400, in block 408 transaction information associated with a detected access to the instruction 204 is executed following block 406 as depicted in FIG. 4. In still other aspects, the detection of the access does not itself indicate that the instruction is associated with transaction information. A determination is made at run-time in association with the detection of the access whether the instruction is associated with transaction information. In such aspects, block 408 is performed after block 406. If no transaction information associated with the access to the instruction 204 is located, the method 400 allows the processor to access the instruction 204 for executing and does not proceed to block 410.
  • In some aspects, the transaction manager 220 can be configured to interoperate with an access detector 222 in association with an access to the instruction 204. In an aspect, an interceptor of a software access detector 222A can be invoked in association with an access to the instruction 204. The interceptor can be associated with the instruction 204 by at least one of the loader/linker 314 and the memory management system 316 interoperating with the transaction information manager 202 as described above. In another aspect, the memory management system 316 using marked memory regions and/or marked memory management system records in at least one of a region of memory 216, such as a page 702, including the instruction 204, a corresponding page table 706 entry, a corresponding map table 708 or map table cache 708′ entry, and/or a corresponding TLB 710 entry detects access to a memory location that at least should be checked for an association with transaction information in one aspect, and can be associated with transaction information indicated by a mark in another aspect.
  • Referring now to FIG. 6a, the system 600 a includes the loader/linker 314 configured to interoperate with the transaction information manager 202 when loading an addressable entity 206 stored in the loadable object code 310 into the memory 216. As a result of the interoperation, an interceptor component of the depicted software access detector component 222A is provided so that the interceptor is invoked in association with an access to the instruction 204. The invocation of an interceptor is depicted as a message 4 in the system 600 a. For example, the instruction 204 can be replaced with a machine code instruction such as a software interrupt instruction where the interceptor component of the software access detector component 222A, is configured to process the software interrupt caused by the executing of the interrupt instruction. When the processor 214 accesses the memory location of the instruction 204, the configured interceptor component of the software access detector component 222A is invoked. Executing of the instruction 204 can occur at any time prior to, during, and/or after processing of the interceptor. Based on the transaction information located by the transaction information manager 202, an interceptor based on the transaction information can be configured as the interrupt handler for the particular interrupt associated with the instruction 204.
  • In the system 600 a, an access instruction 602 is depicted. The access instruction 602, when executed by the processor 214, causes the processor to access a memory location where the accessing instruction 602 is configured to access the instruction 204. The interception of access caused by the executing of access instruction 602 is an exemplary message 4 depicted in the system 600 a. Alternatively, the memory management system 316 can be configured to establish an interceptor component of the software access detector component 222 in an interceptor chain associated with an access to the instruction 204 by the processor 214. For example, in an SDSS based system an access to the instruction is detected by an SDSS as described above. The SDSS can invoke the interceptor chain including the interceptor associating the memory location of the instruction 204 with transaction information. Thus, the SDSS detects the access to the instruction 204 for executing by the processor 214. The interceptor placed in the chain can be configured to operate based on the transaction information located by the transaction information manager 202. The establishing of the interceptor by the memory management system 316 is depicted as the message 3B in the system 600 a. As just described, the interception of the access attempt by the processor 214 of the instruction 204 caused by the executing of access instruction 602 is depicted as the message 4 in the system 600 a.
  • Referring now to FIG. 6 b, the system 600 b includes the transaction information manager 202 established as the interceptor of the software access detector component 222A associated with the instruction 204. The association between the interceptor and the memory location of the instruction 204 can be established by the loader/linker 314 and/or the memory management system 316 as described above. Thus, the transaction information manager 202 operating in the role of an interceptor of the software access detector component 222A detects the access to the instruction 204 for executing by the processor 214. In the system 600 b, the access instruction 602 is depicted. The access instruction 602 when executed by the processor 214 causes the processor 214 to access the memory location where the accessing instruction 602 is configured to access the instruction 204. The interception by the transaction information manager 202 of access to the memory location caused by the executing of access instruction 602 is depicted as the message 3 in the system 600 b. Alternatively, the memory management system 316 can be configured to establish an interceptor for detecting an access of the instruction 204 as a result of the executing of the access instruction 602, for example using an SDSS based memory management system 316 as described above with respect to the system 600 a.
  • Referring now to FIG. 6 c, the system 600 c includes physical memory for supporting the processor memory 216. The memory can be configured to generate one of a plurality of hardware interrupts based on an access to a specified physical memory location or region by the processor 214 as described above. The system 600 c can support multiple hardware interrupts, for example an interrupt vector can be included in the processor 214 to support multiple interrupts. Based on the transaction information located by the transaction information manager 202, an interceptor based on the transaction information is configured as a hardware interrupt handler for the particular interrupt set for the physical memory location to which the memory location and/or region including the instruction 204 is mapped. In the system 600 c, the access instruction 602, when executed by the processor 214, causes the processor 214 to access the memory location where the accessing instruction 602 is configured to access the instruction 204. The access causes the configured hardware interrupt to be generated resulting in control being passed to the corresponding interceptor of the software access detector component 222A. The configured interrupt is a part of the hardware access detector component 222B. The interception of the access resulting from executing of the access instruction 602 by the interrupt of the hardware access detector component 222B is depicted as the message 4 in the system 600 c. The change of control to the interceptor of the software access detector component 222A resulting from the executing of the access instruction 602 by the processor 214 is depicted as a message 5 in the system 600 c.
  • Referring now to FIG. 6 d, the system 600 d includes physical memory for supporting the processor memory 216. The memory can be configured to generate a particular hardware interrupt based on an access to a specific physical memory location or region by the processor 214. As described above, the transaction information manager 202 can be configured as the interrupt handler for the particular hardware interrupt. Thus, the transaction information manager 202 serves as the interceptor of the software access detector component 222A for the particular hardware interrupt of the hardware access detector component 222B. The interception of the access resulting from executing of the access instruction 602 by the interrupt of the hardware access detector component 222B is depicted as the message 4 in the system 600 c. The change of control to the transaction information manager 202 operating as the interceptor of the software access detector component 222A resulting from the executing of the access instruction 602 by the processor 214 is depicted as a message 5 in the system 600 d.
  • As discussed above, an access to a memory location by the processor 214 is detected. For example, the memory management system 316 can be configured to detect memory 216 accesses by the processor 214. Referring now to FIG. 7, the memory location or region accessed including the instruction 204 is marked using any of the marking systems described above. A determination is made as to whether an entry for the accessed memory location is in the TLB 710 and whether the entry is marked. In the system 700, when the processor 214 attempts to access the memory location of the instruction 204, for example as a result of executing the accessing instruction 602, a lookup in the TLB 710 is performed for locating a physical memory address of the memory location of the instruction 204. If an entry is located in the TLB 710, a determination is made whether the TLB entry is marked. If the TLB entry is not marked the processor 214 is allowed to access the memory location by the memory management system. If the TLB 710 entry is marked, control can be passed to an interceptor for handling as described above. Thus, an access to the instruction 204 is detected.
  • If there is no entry corresponding to the memory location of the instruction 204 in the TLB 710, then an attempt to locate a page table record corresponding to the accessed memory location is made. For example, if no entry is located in the TLB 710, a page table 706 lookup is performed to determine whether the memory location in the memory 216 is loaded into physical memory. If an entry in the page table 706 is found, a determination is made as to whether the entry is marked. If the page table entry is not marked, the processor 214 is allowed to access the memory location by the memory management system 316. If the entry in the page table 710 is marked, control can be passed to an interceptor as described above. Thus, access to the instruction 204 is detected. Otherwise, the memory management system 316 allows the processor 214 to complete the attempted access.
  • If the memory management system 316 supports an address space that spans volatile physical memory, such as the RAM 704, and physical persistent memory, as in an SDSS based system, then if there is no entry corresponding to the memory location of the instruction 204 in the page table 706, an attempt to locate the entry corresponding to the memory location in the map table 708 and/or the map table cache 708′ is made. For example, if the memory location is mapped to a physical location in the persistent physical memory 312, such as a block 50 722 including the executable addressable entity 206 and the instruction 204, then a map table 708 and/or a map table cache 708′ lookup locates an entry identifying the physical address of the block 50 722 in the persistent physical memory 312. When an entry in the map table is located, the contents of a region of the physical persistent physical memory 312 including the memory location are loaded into the RAM 704. The page table 706, map table 708, and map table cache 708′ are updated accordingly to indicate the mapping of the memory location in the RAM 704. For example, once the location of a region of memory 216 including the memory location of the instruction 204 included in the executable addressable entity 206 is located in persistent physical memory 312, the memory management system 316 loads the region, block 50 722, into a region of the RAM 704 such as the page 1 702. A determination that the page 702 is marked can be performed by checking the page 702 for a mark or the updated page table entry corresponding to the page 702 can be checked for marking. The page table entry is marked when the map table entry is marked. Thus, access to the instruction 204 is detected.
  • Returning to FIG. 1, in block 106 a transaction operation to perform in association with the executing of the instruction based on the transaction information associated with the instruction is determined. Accordingly, a system for providing transaction support for executable program components includes means for determining a transaction operation to perform in association with the executing of the instruction based on the transaction information associated with the instruction. For example, as illustrated in FIG. 2, a transaction manager component 220 is configured for determining a transaction operation to perform in association with the executing of the instruction based on the transaction information associated with the instruction.
  • The transaction manager component 220 determines from the transaction information an operation to perform in association with the executing of the instruction 204 included in the addressable entity 206. According to an aspect, the transaction operation can include at least one of generating a new transaction, committing and terminating a transaction, aborting a transaction and rolling back changes made by the transaction, and invoking a specified event handler. For example, if the executable addressable entity 206 matches the matching criteria of the “dolt” <aentity> element 506 a in FIG. 5 a, the transaction manager component 220 determines a new transaction should be created based on the <new/> element 518 a included in the <transaction> element 516 a. The transaction should meet the specification of any other criteria in the transaction information. For example, an <isolation> element 520 a specifying isolation policy information included in the <transaction> element 516 a specifies transaction isolation policy requirements that the transaction manager component 220 is configured to support for the operation of the associated instruction(s) performed in the context of a transaction. If the memory location access detected is associated with a return from an instance of the “dolt” executable entity 206, the transaction manager component 220 determines from the <aentity> element 506 a that the existing transaction should be committed and terminated as specified by a <commit> element 522 a. If the memory location detected by the transaction information manager 202 is associated with an access of an instance of the “errorHandler” executable addressable entity, the transaction manager component 220 determines that an abort operation should be performed on the existing transaction as specified in the <aentity> element with matching attributes specified by the <symbol> element 514 a and an <execute/> element 524 a. The abort operation is transaction information specified by a <abort> element 526 a included in a <transaction> element 528 a.
  • In block 410 of the method 400, a transaction operation to perform in association with the detected access is determined. Determining a transaction operation to perform in association with the executing of the instruction 204 can be determined at various times. The time when a determination is performed can affect how tightly or loosely coupled the transaction operation is with the access detector component 222.
  • Referring now to FIG. 6 a, in the system 600 a a determination of a transaction operation to perform in association with the executing of the instruction 204 is performed at load/link time by the loader/linker 314 and/or the memory management system 316 interoperating with the transaction information manager 202. That is, block 410 is performed in conjunction with block 402 in this case. For example, as described above, when the “dolt” executable addressable entity 206 in the executable program component 208 is loaded into the memory 216, the transaction information manager 202 uses an attribute associated with an instruction 204 included in the “dolt” executable addressable entity 206 to determine whether a transaction information record in the transaction information data store 322 includes matching criteria based on the attribute. When a match is located, the transaction information in the record can include transaction operation information as described, for example, in FIG. 5 a and FIG. 5 b. The transaction information and information associated with the detected access including an attribute associated with the instruction 204 is provided to the transaction manager component 220 for determining an operation to be performed in association with an access to an addressable entity being loaded/linked. For example, in FIG. 5 a, the transaction information matching an instance of “dolt” executable addressable entity 206 indicates based on the <new/> element 518 a that a create transaction operation is to be performed prior to or during the initial executing of an instance of “dolt” executable addressable entity 206. The transaction information also identifies resources specified by a <resources> element 530 a that are to be protected during the created transaction and the isolation policy that is to be used specified by the <isolation> element 520 a. Thus, the transaction resources are located and necessary setup is performed to enforce the isolation policy. When “dolt” information and the corresponding transaction information from the matching transaction information record is passed to the transaction manger 220, an interceptor of the access detector component 222 can be established that is configured to execute the identified operations when access to the corresponding instruction is detected without requiring the transaction information manager 202 to locate the matching record again.
  • According to an aspect, a general purpose interceptor of the access detector component 222 can be established at load/link time. For example, the transaction information manager 202 can be established as an interceptor, either based on locating a matching transaction information record or the interceptor can be setup as an interceptor for detected access attempts for an executable addressable entity or an included instruction without determining associated transaction information exists. In another aspect, access information associated with the access to the instruction 204 is identified. A transaction operation to perform in association with the executing of the instruction is determined based on the access information and the transaction information. For example, the access detector component 222 can be configured for identifying access information associated with the access to the instruction 204. The transaction manager component 220 can be configured for determining a transaction operation to perform in association with the executing of the instruction 204 based on the access information and the transaction information. In either case, when the general purpose interceptor is invoked as a result of a detected access, the transaction information manager 202 using an attribute associated with the access information locates a matching transaction information record. If no matching transaction information record is located, executing of the accessed entity is allowed to continue. If a matching transaction information record is located (corresponding to block 408 being performed after block 406), the transaction information along with access information is provided to the transaction manager component 220. The transaction manager component 220 determines a transaction operation to be performed based on the access information and the transaction information performing block 410. For example, the access information can include information identifying the instruction and/or the location of the instruction in an addressable entity. For example, the access information can identify the “dolt” entity 206 and indicate that executing has not yet started. Based on this information and the transaction information corresponding to the <new> 518 a, <isolate> 520 a, and <resources> 530 a elements in FIG. 5 a, the transaction manager 220 determines that an operation to create a new transaction should be performed, that the identified resources are to be protected by the transaction, and that a setup operation must be performed to ensure the protected resources are protected according to the isolation policy specified. If the access information indicates the instruction is a return instruction, the transaction manager component 220 based on the access information and the transaction information determines that a commit operation is to be performed based on the <commit> element 522 a, a transaction result code log operation is to be performed based on a <log> element 532 a, and an operation for freeing unneeded resources associated with the completed transaction is to be performed.
  • According to an aspect, a loose coupling between a memory location of the instruction 204 and the associated transaction information can be established, at or after load-time. When an access to the instruction 204 is detected, a determination is made by the transaction manager component 220 that a transaction operation is to be performed in association with the access as just described. In association with the access, the association between the instruction 204 and the access detector component 222 for associating the instruction 204 with transaction information can be converted from a loose coupling to a tight coupling. Thus, a second detected access to the instruction 204 does not require the transaction manager component 220 to determine a transaction operation to be performed, since the transaction operation is identified in the tight coupling, for example, by a new interceptor of the access detector component 222A configured to perform the determined transaction operation.
  • In the system 600 a, an interceptor component of the depicted software access detector component 222A can be provided as described above so that the interceptor is invoked in association with an access to the instruction 204. For example, the accessing instruction 602, when executed by the processor 214, causes the processor to attempt an access to a memory location for accessing the instruction 204. Executing of the instruction 204 can occur at any time prior to, during, and/or after processing of the interceptor. Based on the transaction information located by the transaction information manager 202, and attribute information, the transaction manager component 220 determines a transaction operation to be performed in association with an access to the instruction 204 as described above. The transaction manager component 220 can additionally select a preconfigured interceptor and/or generate an interceptor configured to perform the determined transaction operation when invoked a next time without re-determining the transaction operation to be performed.
  • Alternatively, the transaction manager component 220 can associate the transaction information with an interceptor for processing when an access to the instruction 204 is detected as described above. The interceptor when invoked is configured to use the associated transaction information to determine a transaction operation to be performed without requiring the transaction information to be located a second time by the transaction information manager 202 for associating with the access to the memory location for accessing the instruction 204. Alternatively, the transaction manager component 220 can provide the interceptor with the associated transaction information. The interceptor based on the transaction information determines a transaction operation to be performed in association with a detected access to a memory location for accessing the instruction 204. Once the transaction operation is determined, the interceptor can save information identifying the determined operation, so that when the interceptor is invoked a second time in association with an access to the memory location for accessing the instruction 204, re-determining the transaction operation to be performed is unnecessary.
  • According to an aspect, the memory management system 316 included in the system 600 a can be an SDSS based memory management system 316 that supports an interceptor design pattern for invoking executable addressable entities. The interceptor determined by the transaction manager component 220, as described above, is configured to operate in an interceptor chain associated with an access to the memory location for accessing the instruction 204. The determination can be performed at or before load/link time of the instruction 204 and/or at runtime. Thus, for example, executing of the access instruction 602 by the processor 214 causes the processor 214 to attempt an access to a memory location for accessing the instruction 204. The access is mediated by the memory management system 316. The memory management system 316 invokes an interceptor chain associated with the memory location for processing. The interceptor provided by the transaction manager component 220, as a result, is invoked. The interceptor can be invoked with a transaction operation determined prior to invocation and/or it can interoperate with the transaction information manager 202 and transaction manager component 220 to determine a transaction operation to be performed as a result of the invocation.
  • Referring again to FIG. 6 b, the system 600 b, as described above, can include the transaction information manager 202 established as the interceptor of the software access detector component 222A associated with the detection of an access to a memory location for accessing instruction 204. When an access by the processor 214 to the memory location is detected, the transaction information manager 202 is invoked as described earlier. The transaction information manager 202 receives access information including information identifying an attribute associated with the access, such as an address of the memory location. The transaction information manager 202 can use the attribute to locate a transaction information record in the transaction information data store 322 with matching criteria including a condition that matches based on the attribute. Alternatively, the transaction information manager 202 can use the attribute identified in the access information to identify a second attribute for locating a matching transaction information record. For example, a memory map and symbol table associated with the executable program component 208 can be provided. A symbol table can be provided as a result of a compile/link/load process for generating the executable program component 208 from the source code 210 and loading and linking the loadable object code 310 into the memory 216. The loader/linker 314 generates a map including information identifying the memory locations where various addressable entities of the executable program component 208 are loaded, such as the “dolt” executable addressable entity 206 and/or the instruction 204. Further, the loader/linker 314 can be configured to associated memory addresses with at least a portion of the symbols in the symbol table. Thus, given a memory address where a portion of the executable program component 208 is loaded into the memory 216, the transaction information manager 202 can locate a symbol associated with the memory 216 address. As before, the attribute is used to locate a matching transaction information record. In some systems, the transaction information manager 202 is only invoked when the loader/linker 314 interoperating with the transaction information manager 202 at load/link time determines that a matching record exists. In other systems, the determination that a matching record exists occurs when an access by the processor 214 to the memory location for executing the instruction 204 is detected. In either case, the transaction manager component 220 is invoked as depicted by a message 4, to determine a transaction operation to be performed based on the access information and the transaction information as already described.
  • Referring now to FIG. 6 c, the system 600 c, as described above, includes the physical memory supporting the processor memory 216 that can be configured for generating a plurality of hardware interrupts based on an access to a specified physical memory location or region by the processor 214 as described above. In the system 600 c, multiple hardware interrupts are supported. For example, an interrupt vector can be included in the processor 214 for supporting multiple interrupts. Based on the transaction information located by the transaction information manager 202, an interceptor based on the transaction information is configured as the hardware interrupt handler for the particular interrupt set for the memory location and/or region. In the system 600 c, the access instruction 602 is depicted. The access instruction 602, when executed by the processor 214, results in the processor 214 attempting to access the memory location for accessing the instruction 204. The access attempt triggers the configured hardware interrupt to be generated resulting in control being passed to the corresponding interceptor of the software access detector component 222A.
  • Executing of the instruction 204 can occur at any time prior to, during, and/or after processing of the interceptor. Based on the transaction information located by the transaction information manager 202 and attribute information associated with the access attempt, the transaction manager component 220 determines a transaction operation to be performed in association with an access to the instruction 204 as described above. The transaction manager component 220 of the system 600 c can additionally select a preconfigured interceptor and/or generate an interceptor configured to perform the determined transaction operation when invoked without re-determining the transaction operation to be performed. Alternatively, the transaction manager component 220 can associate the transaction information with an interceptor for processing when an access to the instruction 204 is detected. The interceptor when invoked is configured to use the associated transaction information to determine a transaction operation to be performed without requiring the transaction information to be located a second time by the transaction information manager 202 for associating with the access to the memory location for accessing the instruction 204. Alternatively, the transaction manager component 220 can provide the interceptor with the associated transaction information. When invoked, the interceptor based on the transaction information determines a transaction operation to be performed in association with a detected access to a memory location for accessing the instruction 204. Once the transaction operation is determined, the interceptor saves information identifying the determined operation, so that when the interceptor is invoked a second time in association with an access to the memory location for accessing the instruction 204, re-determining the transaction operation to be performed is unnecessary. The saved transaction operation can be used.
  • Referring again to FIG. 6 d, the system 600 d, as described above, includes physical memory supporting the processor memory 216 that can be configured to generate a hardware interrupt based on an access to a physical memory location or region by the processor 214. As described above the transaction information manager 202 can be configured as the interrupt handler for the particular hardware interrupt. Thus, the transaction information manager 202 serves as the interceptor of the software access detector component 222A for the particular hardware interrupt of the hardware access detector component 222B. When an access by the processor 214 to the memory location is detected, the transaction information manager 202 is invoked as the interrupt handler of the hardware interrupt. Since the hardware interrupt is not associated with any particular transaction operation of information, the transaction information manager 202 uses access information including information identifying an attribute associated with the access received in the invocation process to locate a matching transaction information record in the transaction information data store 322. Alternatively, the transaction information manager 202 can use the attribute identified in the access information to identify a second attribute for locating a matching transaction information record as described earlier in an example using a memory map and a symbol table.
  • Once an access to memory has been detected, a determination is made as to whether transaction information is associated with the detected memory access. For example, the transaction information manager 202 attempts to locate a matching transaction information record for the instruction 204 included in the “dolt” executable addressable entity. Based on the symbol “dolt,” the information that the instruction 204 is executable, and information from, for example, a symbol table indicating “dolt” has top level scope in the executable program component 208 a matching transaction information record is located by the transaction information manager 202 in the transaction information data store 322. If transaction information is located, the transaction information is passed to the transaction manager 220 as indicated by a message 6. The transaction manager 220 determines a transaction operation to perform in association with the access of the instruction 204.
  • In FIG. 5 a, each <aentity> element 502 a and 512 a, can correspond to a transaction information record in the transaction information data store 322. Thus, there is a transaction information record corresponding to the <aentity> element 506 a for instances of the “dolt” executable addressable entity 206 and a transaction information record corresponding to the <aentity> element 512 a for instances of an “errorHandler” Executable addressable entity A matching executable addressable entity 206, “dolt,” has a global scope within its including executable program component 208. This scope information can be used as a condition to be matched in the matching criteria of the corresponding transaction information record. The matching criteria thus includes a condition for matching the “dolt” symbol, a condition that a matching addressable entity is an executable addressable entity, and a condition that the access is for an addressable entity with top level scope in the executable program component 208.
  • The <transaction> element 516 a is included for specifying transaction information to be associated with matching accesses as described above. The <new/> element 518 a is provided for specifying that a new transaction must be created for each instance of the “dolt” executable addressable entity 206. The specification can indicate the transaction create operation is to be performed when an access to an initial instruction 204 included in the “dolt” executable addressable entity 206 is detected. The initial instruction can be determined based on a policy as described above. Thus, if the instruction 204 is the “initial” instruction in “dolt” as determined, the transaction manager component 220 determines that a transaction operation for creating a new transaction is to be performed in association with an access to the initial instruction of the “dolt” executable addressable entity 206.
  • For example, in a system supporting a schema associated with FIG. 5 a, a rule/policy associated with the schema can specify that when a <transaction> element is associated with an executable addressable entity without a specification of any particular instruction, an initial instruction can be associated with initial transaction information. A new transaction is to be created even if the runtime process is operating within an existing transaction causing a nesting of transactions. In addition to <new>, a <supports> element can be provided for specifying that an associated executable addressable entity can be processed within an existing transaction, but a transaction is not required. This allows the transaction manager component 220 to determine that a transaction operation for creating a transaction is not required, but an operation allowing the associated executable addressable entity to participate in an existing transaction is to be performed when an existing transaction is detected. A <requires> element can be provided to indicate that an executable addressable entity can run within an exiting transaction, but, if there is no existing transaction associated with the runtime process accessing the instruction 204, for example, in an instance of executable addressable entity 206, then an operation for creating a new transaction should be performed prior to or during the initialization of the “dolt” instance. Those familiar with transaction systems will understand that elements described are exemplary, and that other elements can be used instead of and/or in addition to the examples provided based on the transaction system used.
  • The <commit> element 522 a as described above specifies when a transaction has completed and should be committed. In the <aentity> element 506 a for a “dolt” executable addressable entity 206, the transaction created for the “dolt” instance is to be committed when a return from the “dolt” entity is detected. Thus, the transaction manager component 220 determines that a commit operation is to be performed in association with an access to any instruction that performs a normal return from the executable addressable entity 206.
  • The <isolation> element 520 a as described specifies isolation policy information. For example, a transaction can allow “dirty reads” as can be indicated by a <dirtyread> element 534 a, or it can require serialized access to transaction resources as indicated by a <serialize> element (not shown). A dirty read allows a reader to see modifications made but not committed by a transaction in which the read is not being performed. “Dirty reads” can improve performance by avoiding lock contention between a runtime process reading from an addressable entity and a runtime process that writes to the same addressable entity. A “dirty read,” can cause problems because the data read might not be committed meaning the reader may be working with incorrect data. In the absence of a specification for a transaction attribute, a default can be specified. For example, <serialize> can be the default. According to an aspect, some or all transaction information attributes can have associated default values including a <transaction> element and its analogs.
  • The transaction information illustrated in FIG. 5 a further indicates that for an instance of the “dolt” executable addressable eneity 206, non-repeatable reads are not allowed as specified by a <nonrepeatable> element 536 a and phantom reads are not allowed as specified by a <phantom> element 538 a. If non-repeatable reads are allowed, it is possible that a runtime process can read from a particular addressable entity a number of times without writing to the addressable entity, and not get the same value on every read. If phantom reads are allowed, it is possible that when a runtime process operates, for example, on a row from an addressable entity that is a table, another runtime process can be adding or deleting rows from the same table leading to inconsistencies This information allows the transaction manager component 220 to determine operations to be performed in association with transaction setup and configuration for enforcing the specified isolation policies with respect to the transaction resources identified in a <resources> element 530 a.
  • Transaction information can include information not required or directly related to support for transactions. For example, FIG. 5 a includes a <log> element 532 a for specifying logging requirements to be provided for by the transaction manager component 220 for an associated transaction. The <log> element 522 a associated with an instance of the “dolt” executable addressable entity 206 indicates a message logging the result code indicated by the % 0 symbol is to be logged in a string with the prefix, “TResult:”. In the example, “% 0” is defined to indicate a transaction operation result code. Thus, the transaction manager component 220 determines that a message logging a transaction result code is to be performed when a transaction operation is performed in a association with a matching addressable entity.
  • A <retry> element 540 a indicates that if an error associated with an addressable entity serving as an input and/or output parameter of, for example, a function or method, is detected during the unit of operation under control of transaction, the transaction manager component 220 is to roll-back the transaction and present an error message to a user including the parameter error information. Via the presentation to the user, the transaction manager component 220 can receive an indication to abort the unit of operation or can receive new parameter data and as indicated retry the failed operation.
  • The second <aentity> entry 512 a matches addressable entities that are executable and have an associated symbol, “errorHandler.” In the example, instances of the “dolt” executable addressable entity 206 invoke an instance of the “errorHandler” entity when executing of “dolt” is not successful. A developer can use knowledge of this relationship to abort a transaction created for a “dolt” instance when runtime process executing “dolt” accesses an “errorHandler” instance. This is depicted as the <abort> element 526 a included within a <transaction> element within the <aentity> element 512 a of “errorHandler.” The transaction manager component 220 determines that a detected access to an instruction invoking an instance of “errorHandler” requires an operation for aborting a transaction if an associated transaction exists.
  • FIG. 5 b illustrates analogous transaction information to the command language transaction information discussed above, such as a database-backed SDSS based system using a SQL compatible database. For example, the constraint including transaction information depicted as the “CONSTRAINT TRANSACTION” instruction block 518 b. A keyword, such as “NEW” 520 b allows the transaction manager component 220 to determine whether and when a transaction can be associated with an instance of the executable addressable entity 206 and operations to be performed for supporting the isolation specifications with respect to the transaction resources also specified, as discussed earlier. The operation of the transaction manager 220 in determining a transaction operation to perform in association with an access to a memory location of the instruction 204 is analogous to that described with respect to FIG. 5 a.
  • Returning to FIG. 1, in block 108 the transaction operation is performed in association with the executing of the instruction, wherein the transaction operation is performed by a program component other than the executable program component including the executable addressable entity. Accordingly, a system for providing transaction support for executable program components includes means for performing the transaction operation in association with the executing of the instruction, wherein the transaction operation is performed by a program component other than the executable program component including the executable addressable entity. For example, as illustrated in FIG. 2, a transaction manager component 220 is configured for performing the transaction operation in association with the executing of the instruction, wherein the transaction operation is performed by a program component other than the executable program component including the executable addressable entity.
  • Referring again to FIG. 4, at block 412 the transaction operation is performed. For example, the transaction manager component 220 performs or provides for performing each of the determined transaction operations associated with each of the corresponding instructions in the “dolt” 206 and “errorHandler” executable addressable entities as illustrated in FIG. 5 a. For example, when instruction 204 is accessed via an invocation of the “dolt” executable addressable entity 206 by the first access instruction 602 operating in a first runtime process, the transaction manager component 220 creates a new transaction having attributes based on the “dolt” transaction information record in the transaction information data store 322 created based on the “dolt” <aentity> element 506 a in FIG. 5 a. The operation is not indicated in the source code representation 210 from which the instruction 204 was generated. Upon creation of the transaction, the “dolt” executable addressable entity 206 including the accessed instruction 204 is executed in an associated runtime process within the context of the new transaction.
  • When an access to each of two instances of the “dolt” executable addressable entity 206 is detected, for example, in two runtime processes, the two transactions can operate concurrently. When operated concurrently the transaction manager component 220 ensures the required isolation policy as indicated in the transaction information is enforced. According to the <isolation> element 520 a in FIG. 5 a, the transaction manager component 220 allows “dirty reads” during the operation of the transactions, but does not allow phantom reads or non-repeatable reads. Further, according to the <retry> element 540 a specification in FIG. 5 a, the transaction manger performs the determined operation, 220 based on a determination associating a detection of an invalid parameter while processing in the context of an associated transaction. In the illustrated example, a retry operation is the determined operation performed in response to detecting the invalid parameter. The transaction manager component 220 can receive an indication to abort the transaction associated with the runtime process in which the parameter condition was detected. The transaction manager component 220, upon receiving the abort indication, rolls back the operation and restores the resources specified in the resources portion of the associated transaction information based on the <resources> element 530 a to their state at the time of the creation of the associated transaction. Alternatively, via a user interface, the transaction manager component 220 can receive new parameter data and an indication to retry the failed portion of the operation. In this case, the transaction manager component 220 restores the unit of operation to its state prior to the detection of the parameter condition and restarts the unit of operation from that point using the received parameter data.
  • If, during the processing of either runtime process under the control of each corresponding transaction, an access to the “errorHandler” executable addressable entity instruction is detected, then the corresponding transaction can be rolled-back as determined by the transaction manager component 220 and aborted according to the <abort> element 526 a.
  • If the executing of the “dolt” executable addressable entity 206 returns normally, then the transaction is committed and destroyed by the transaction manager component 220 as indicated by the <commit> element 522 a. An instruction indicating a return from “dolt” can be detected at load time by the loader 314, according to an aspect. For example, if the processor 214 supports a “return” instruction defined to return from a function or subroutine invocation, the “return” instruction can be detected and associated with transaction information based on the <aentity> element 506 a. In another example, if the processor 214 supports a stack based execution model, operations changing a processor register defined to reference a base of a stack frame can be detected at runtime. Such instructions indicating a return from an invocation of an executable addressable entity can be associated with transaction information at runtime using matching criteria in a transaction information record and an attribute of the instruction 204. In an SDSS based execution environment, returns can be mediated and thus detected by the SDSS memory manager 316. For example, the deleting of a “dolt” instance record can indicate a return and/or a table can be maintained for tracking a call path within a process.
  • The transaction operation can be performed in association with a detected access to a memory location of the instruction 204 at the time the access is detected as indicated above, or the transaction operation can be performed before any access is detected. For example, in FIG. 5 b the isolation policy for access to instances of the “dolt” executable addressable entity 206 requires serialized access to the identified transaction resources with non-repeatable reads and phantom reads not allowed. In an SDSS based system, an SDSS can perform at least a portion of the transaction operations to be performed for enforcing the specified isolation policy prior to a detected access. The isolation policy 522 b portion of the constraint 518 b can be at least partially enforced by allowing only one row to exist in the “dolt_Instance_Table” 502 b at any give time, thus ensuring complete isolation of the processing of the transaction resources 526 b as far as processing of an instance of the “dolt” executable addressable entity 206 is concerned. The transaction resources are identified by the “RESOURCES” 526 b keyword as static variables in the executable program component 208 that can be accessed during an operation of an instance of the “dolt” executable addressable entity 206. According to an aspect, analysis of the possible execution paths and use of a corresponding symbol table including type information can be used to identify the particular transaction resources. With this information, the transaction manager component 220 can determine a more efficient access policy for enforcing the transaction isolation constraints 522 b than forcing serialized access to the “dolt” executable addressable entity 206. Thus, the transaction operations are determined at or before the creation of the loadable object code 310, and are performed at load-time as well as at time of access according to the commands depicted in the portion of the loadable object file 500 b.
  • Similarly, for the “errorHandler” executable addressable entity, the transaction operation for aborting a transaction can be determined during or before creation of the loadable object code and associated with an instance of the “errorHandler” executable addressable entity. The abort operation can be performed when an access to a memory location associated with an invocation of an instance of “errorHandler” is detected at run-time. The transaction information specified using the “CONSTRAINT TRANSACTION” 530 b condition includes a specification, “ABORT ON-ACCESS” 532 b indicating that if an instance of the “errorHandler” executable addressable entity is accessed under control of a transaction, the transaction is to be aborted and rolled back. Also included in FIG. 5 b is the CREATE TABLE instruction block 534 b for creating a “code_block” table for storing executable instructions of executable addressable entities, such as instructions for the “dolt” executable addressable entity and the “errorHandler” executable addressable entity. Records in the “code_block” table 534 b include executable instructions for various functions, methods, and other executable addressable entity types. Alternatively, transaction information specifications can be provided as part of the specification of the “code_block” table rather than included in the specifications of the various executable addressable entity instance tables.
  • Following the CREATE TABLE instruction block 534 b, additional constraint commands are depicted. The first GRANT command 536 b grants read and write access to dolt_Instance_Table 502 b instances to the SYSTEM process ID allowing the execution environment 212 to use only the single row instance created at the time the executable program component 208 is loaded into the memory 216. The third GRANT command 538 b gives SYSTEM execute access to the executable “code_block” table allowing the machine and/or virtual byte code in each row of the code_block table 534 b to be accessed and executed by the processor 214. The second GRANT command 540 b allows an executable addressable entity, SecondAddressableEntity (not shown), in a second executable program component, SecondExecutableProgramComponent, to read and write data from and to records of the dolt_Instance_Table 502 b. This allows a runtime process executing the machine code of the second executable program component to access the executable addressable entity 206, “dolt.” The fourth GRANT command 542 b gives executable addressable entity, SecondAddressableEntity, in the second executable program component, SecondExecutableProgramComponent, execute access to a record in the code_block table 534 b corresponding to the executable addressable entity associated with the “dolt” executable addressable entity 206. The second GRANT command 540 b and the fourth GRANT command 542 b allow the secondAddressableEntity to invoke the “dolt” executable addressable entity 206 for execution by the processor 214.
  • In addition to using SQL commands to provide and enforce transaction information, additional columns and tables can be used for supporting additional features. For example, an executable addressable entity table can include a column for storing a reference to transaction information. This technique does not require the matching of attributes as described above. Access to the instruction 204 by the processor performed in association with the performing of a determined transaction operation by the transaction manager component 220 is depicted as a message 5 in the system 600 a-b, a message 6 in the system 600 c, a message 7 in the system 600 d.
  • It should be understood that the various components illustrated in the various block diagrams represent logical components that are configured to perform the functionality described herein and may be implemented in software, hardware, or a combination of the two. Moreover, some or all of these logical components may be combined, some may be omitted altogether, and additional components can be added while still achieving the functionality described herein. Thus, the subject matter described herein can be embodied in many different variations, and all such variations are contemplated to be within the scope of what is claimed.
  • To facilitate an understanding of the subject matter described above, many aspects are described in terms of sequences of actions that can be performed by elements of a computer system. For example, it will be recognized that the various actions can be performed by specialized circuits or circuitry (e.g., discrete logic gates interconnected to perform a specialized function), by program instructions being executed by one or more processors, or by a combination of both.
  • Moreover, executable instructions of a computer program for carrying out the methods described herein can be embodied in any machine or computer readable medium for use by or in connection with an instruction execution machine, system, apparatus, or device, such as a computer-based or processor-containing machine, system, apparatus, or device, that can read or fetch the instructions from the machine or computer readable medium and execute the instructions.
  • As used here, a “computer readable medium” can be any medium that can contain, store, communicate, propagate, or transport the computer program for use by or in connection with the instruction execution machine, system, apparatus, or device. The computer readable medium can be, for example, but not limited to, an electronic, magnetic, optical, electromagnetic, infrared, or semiconductor machine, system, apparatus, device, or propagation medium. More specific examples (a non-exhaustive list) of the computer readable medium can include the following: a wired network connection and associated transmission medium, such as an ETHERNET transmission system, a wireless network connection and associated transmission medium, such as an IEEE 802.11(a), (b), (g) or (n) or a BLUETOOTH transmission system, a wide-area network (WAN), a local-area network (LAN), the Internet, an intranet, a portable computer diskette, a random access memory (RAM), a read only memory (ROM), an erasable programmable read only memory (EPROM or Flash memory), an optical fiber, a portable compact disc (CD), a portable digital video disc (DVD), and the like.
  • Thus, the subject matter described herein can be embodied in many different forms, and all such forms are contemplated to be within the scope of what is claimed. It will be understood that various details of the invention may be changed without departing from the scope of the claimed subject matter. Furthermore, the foregoing description is for the purpose of illustration only, and not for the purpose of limitation, as the scope of protection sought is defined by the claims as set forth hereinafter together with any equivalents thereof entitled to.

Claims (21)

1. A method for providing transaction support for executable program components, the method comprising:
associating transaction information with an instruction included in an executable addressable entity included in an executable program component generated from source code written in a programming language, wherein the transaction information is independent of the source code and the programming language;
detecting an access to the instruction for executing by a processor;
determining a transaction operation to perform in association with the executing of the instruction based on the transaction information associated with the instruction; and
performing the transaction operation in association with the executing of the instruction, wherein the transaction operation is performed by a program component other than the executable program component including the executable addressable entity.
2. The method of claim 1 wherein associating transaction information with an instruction included in an executable addressable entity includes associating transaction information with a memory location associated with the instruction included in the executable addressable entity.
3. The method of claim 1 wherein the source code of the executable program component is in a processor independent programming language, wherein a plurality of machine code instructions, each executable by a specified processor from a different processor architecture family, can be generated from the source code.
4. The method of claim 1 wherein associating the transaction information with an instruction included in an executable addressable entity includes selecting the transaction information for association with the instruction according to an attribute of the executable addressable entity.
5. The method of claim 1 wherein the transaction information includes model information identifying a transactional model for determining a transaction operation to perform in association with the executing of the instruction.
6. The method of claim 1 including detecting an execution environment condition during the processing of the executable program component, and wherein associating the transaction information with the instruction included in the executable addressable entity is based on the detected execution environment condition.
7. The method of claim 1 wherein detecting an access to the instruction includes identifying access information associated with the access to the instruction, and
wherein determining a transaction operation to perform in association with the executing of the instruction is based on the access information and the transaction information.
8. The method of claim 1 wherein the transaction operation includes at least one of generating a new transaction, committing and terminating a transaction, aborting a transaction and rolling back changes made by the transaction, and invoking a specified event handler.
9. The method of claim 1 wherein the transaction operation is performed at least one of before the executing of the instruction, during the executing of the instruction and after the executing of the instruction.
10. A system for providing transaction support for executable program components, the system comprising:
means for associating transaction information with an instruction included in an executable addressable entity included in an executable program component generated from source code written in a programming language, wherein the transaction information is independent of the source code and the programming language;
means for detecting an access to the instruction for executing by a processor;
means for determining a transaction operation to perform in association with the executing of the instruction based on the transaction information associated with the instruction; and
means for performing the transaction operation in association with the executing of the instruction, wherein the transaction operation is performed by a program component other than the executable program component including the executable addressable entity.
11. A system for providing transaction support for executable program components, the system comprising:
a transaction information manager component configured for associating transaction information with an instruction included in an executable addressable entity included in an executable program component generated from source code written in a programming language, wherein the transaction information is independent of the source code and the programming language;
a access detector component configured for detecting an access to the instruction for executing by a processor; and
a transaction manager component configured for determining a transaction operation to perform in association with the executing of the instruction based on the transaction information associated with the instruction and configured for performing the transaction operation in association with the executing of the instruction, wherein the transaction operation is performed by a program component other than the executable program component including the executable addressable entity.
12. The system of claim 11 wherein the transaction information manager component is configured for associating transaction information with a memory location associated with the instruction included in the executable addressable entity.
13. The system of claim 12 including a memory management system component configured for detecting an access to the memory location associated with the instruction included in the executable addressable entity
14. The system of claim 11 wherein the source code of the executable program component is in a processor independent programming language, wherein a plurality of machine code instructions, each executable by a specified processor from a different processor architecture family, can be generated from the source code.
15. The system of claim 11 wherein the transaction information manager component is configured for selecting the transaction information for association with the instruction according to an attribute of the executable addressable entity.
16. The system of claim 11 wherein the transaction information includes model information identifying a transactional model, wherein the transaction manager component is configured for determining a transaction operation to perform in association with the executing of the instruction according to the transactional model.
17. The system of claim 11 including a system monitor component configured for detecting an execution environment condition during the processing of the executable program component, and wherein the transaction information manager component is configured for associating the transaction information with the instruction included in the executable addressable entity is based on the detected execution environment condition.
18. The system of claim 11 wherein the access detector component is configured for identifying access information associated with the access to the instruction, and
wherein the transaction manager component is configured for determining a transaction operation to perform in association with the executing of the instruction is based on the access information and the transaction information.
19. The system of claim 11 wherein the transaction manager component is configured for performing from at least one of generating a new transaction, committing and terminating a transaction, aborting a transaction and rolling back changes made by the transaction, and invoking a specified event handler.
20. The system of claim 11 wherein the transaction manager component is configured for performing the transaction operation at least one of before the executing of the instruction, during the executing of the instruction and after the executing of the instruction.
21. A computer readable medium including a computer program, executable by a machine, for providing transaction support for executable program components, the computer program comprising executable instructions for:
associating transaction information with an instruction included in an executable addressable entity included in an executable program component generated from source code written in a programming language, wherein the transaction information is independent of the source code and the programming language;
detecting an access to the instruction for executing by a processor;
determining a transaction operation to perform in association with the executing of the instruction based on the transaction information associated with the instruction; and
performing the transaction operation in association with the executing of the instruction, wherein the transaction operation is performed by a program component other than the executable program component including the executable addressable entity.
US11/766,960 2007-06-22 2007-06-22 Method And Systems For Providing Transaction Support For Executable Program Components Abandoned US20080320282A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US11/766,960 US20080320282A1 (en) 2007-06-22 2007-06-22 Method And Systems For Providing Transaction Support For Executable Program Components

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
US11/766,960 US20080320282A1 (en) 2007-06-22 2007-06-22 Method And Systems For Providing Transaction Support For Executable Program Components

Publications (1)

Publication Number Publication Date
US20080320282A1 true US20080320282A1 (en) 2008-12-25

Family

ID=40137745

Family Applications (1)

Application Number Title Priority Date Filing Date
US11/766,960 Abandoned US20080320282A1 (en) 2007-06-22 2007-06-22 Method And Systems For Providing Transaction Support For Executable Program Components

Country Status (1)

Country Link
US (1) US20080320282A1 (en)

Cited By (22)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2013186604A1 (en) * 2012-06-15 2013-12-19 International Business Machines Corporation Constrained transaction execution
US8688661B2 (en) 2012-06-15 2014-04-01 International Business Machines Corporation Transactional processing
US8880959B2 (en) 2012-06-15 2014-11-04 International Business Machines Corporation Transaction diagnostic block
US8887002B2 (en) 2012-06-15 2014-11-11 International Business Machines Corporation Transactional execution branch indications
US9215423B2 (en) 2009-03-30 2015-12-15 Time Warner Cable Enterprises Llc Recommendation engine apparatus and methods
US9235848B1 (en) * 2007-07-09 2016-01-12 Groupon, Inc. Implicitly associating metadata using user behavior
US9311259B2 (en) 2012-06-15 2016-04-12 International Business Machines Corporation Program event recording within a transactional environment
US9336007B2 (en) 2012-06-15 2016-05-10 International Business Machines Corporation Processor assist facility
US9336046B2 (en) 2012-06-15 2016-05-10 International Business Machines Corporation Transaction abort processing
US9348642B2 (en) 2012-06-15 2016-05-24 International Business Machines Corporation Transaction begin/end instructions
US9361115B2 (en) 2012-06-15 2016-06-07 International Business Machines Corporation Saving/restoring selected registers in transactional processing
US9367378B2 (en) 2012-06-15 2016-06-14 International Business Machines Corporation Facilitating transaction completion subsequent to repeated aborts of the transaction
US9378024B2 (en) 2012-06-15 2016-06-28 International Business Machines Corporation Randomized testing within transactional execution
US9395998B2 (en) 2012-06-15 2016-07-19 International Business Machines Corporation Selectively controlling instruction execution in transactional processing
US9436477B2 (en) 2012-06-15 2016-09-06 International Business Machines Corporation Transaction abort instruction
US9442737B2 (en) 2012-06-15 2016-09-13 International Business Machines Corporation Restricting processing within a processor to facilitate transaction completion
US9448797B2 (en) 2012-06-15 2016-09-20 International Business Machines Corporation Restricted instructions in transactional execution
WO2018004974A1 (en) * 2016-07-01 2018-01-04 Intel Corporation Processors, methods, and systems to identify stores that cause remote transactional execution aborts
US10430199B2 (en) 2012-06-15 2019-10-01 International Business Machines Corporation Program interruption filtering in transactional execution
US10599435B2 (en) 2012-06-15 2020-03-24 International Business Machines Corporation Nontransactional store instruction
US11507412B2 (en) * 2016-06-27 2022-11-22 Intel Corporation Memory management method and apparatus
US20230029331A1 (en) * 2021-07-26 2023-01-26 Microsoft Technology Licensing, Llc Dynamically allocatable physically addressed metadata storage

Citations (78)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US4455602A (en) * 1981-05-22 1984-06-19 Data General Corporation Digital data processing system having an I/O means using unique address providing and access priority control techniques
US4707781A (en) * 1979-01-09 1987-11-17 Chopp Computer Corp. Shared memory computer method and apparatus
US4821184A (en) * 1981-05-22 1989-04-11 Data General Corporation Universal addressing system for a digital data processing system
US4853842A (en) * 1985-09-11 1989-08-01 Texas Instruments Incorporated Computer memory system having persistent objects
US4989132A (en) * 1988-10-24 1991-01-29 Eastman Kodak Company Object-oriented, logic, and database programming tool with garbage collection
US5247679A (en) * 1990-02-20 1993-09-21 Prime Computer, Inc. Method for sequentially registering executable program formats with unresolved pointers by assigning linkage state and invocation state thereof
US5317708A (en) * 1990-06-29 1994-05-31 Digital Equipment Corporation Apparatus and method for an improved content addressable memory
US5325533A (en) * 1993-06-28 1994-06-28 Taligent, Inc. Engineering system for modeling computer programs
US5581697A (en) * 1994-01-28 1996-12-03 Sun Microsystems, Inc. Method and apparatus for run-time error checking using dynamic patching
US5592625A (en) * 1992-03-27 1997-01-07 Panasonic Technologies, Inc. Apparatus for providing shared virtual memory among interconnected computer nodes with minimal processor involvement
US5649139A (en) * 1991-03-22 1997-07-15 Object Design, Inc. Method and apparatus for virtual memory mapping and transaction management in an object-oriented database system
US5729748A (en) * 1995-04-03 1998-03-17 Microsoft Corporation Call template builder and method
US5752031A (en) * 1995-04-24 1998-05-12 Microsoft Corporation Queue object for controlling concurrency in a computer system
US5829041A (en) * 1994-09-14 1998-10-27 Kabushiki Kaisha Toshiba Method and apparatus for managing single virtual space suitable for distributed processing
US5835764A (en) * 1995-06-30 1998-11-10 International Business Machines Corporation Transaction processing system and method having a transactional subsystem integrated within a reduced kernel operating system
US5850554A (en) * 1995-12-29 1998-12-15 Intel Corporation Compiler tool set for efficiently generating and easily managing multiple program versions of different types
US5873123A (en) * 1996-06-25 1999-02-16 International Business Machines Corporation Processor and method for translating a nonphysical address into a physical address utilizing a selectively nonsequential search of page table entries
US5873102A (en) * 1997-04-29 1999-02-16 Oracle Corporation Pluggable tablespaces on a transportable medium
US5897634A (en) * 1997-05-09 1999-04-27 International Business Machines Corporation Optimized caching of SQL data in an object server system
US5918229A (en) * 1996-11-22 1999-06-29 Mangosoft Corporation Structured data storage using globally addressable memory
US5943283A (en) * 1997-12-05 1999-08-24 Invox Technology Address scrambling in a semiconductor memory
US6006307A (en) * 1997-11-13 1999-12-21 Advanced Micro Devices, Inc. Computer system employing a mirrored memory system for providing prefetch bandwidth
US6009442A (en) * 1997-10-08 1999-12-28 Caere Corporation Computer-based document management system
US6014710A (en) * 1997-06-30 2000-01-11 Sun Microsystems, Inc. System and method for message transmission between network nodes using remote wires
US6026474A (en) * 1996-11-22 2000-02-15 Mangosoft Corporation Shared client-side web caching using globally addressable memory
US6067413A (en) * 1996-06-13 2000-05-23 Instantations, Inc. Data representation for mixed-language program development
US6081833A (en) * 1995-07-06 2000-06-27 Kabushiki Kaisha Toshiba Memory space management method, data transfer method, and computer device for distributed computer system
US6178519B1 (en) * 1998-12-10 2001-01-23 Mci Worldcom, Inc. Cluster-wide database system
US6272597B1 (en) * 1998-12-31 2001-08-07 Intel Corporation Dual-ported, pipelined, two level cache system
US6272612B1 (en) * 1997-09-04 2001-08-07 Bull S.A. Process for allocating memory in a multiprocessor data processing system
US6289424B1 (en) * 1997-09-19 2001-09-11 Silicon Graphics, Inc. Method, system and computer program product for managing memory in a non-uniform memory access system
US6295584B1 (en) * 1997-08-29 2001-09-25 International Business Machines Corporation Multiprocessor computer system with memory map translation
US6298481B1 (en) * 1998-10-30 2001-10-02 Segasoft, Inc. System for modifying the functionality of compiled computer code at run-time
US6335742B1 (en) * 1997-07-24 2002-01-01 Ricoh Company, Ltd. Apparatus for file management and manipulation using graphical displays and textual descriptions
US20020026572A1 (en) * 2000-08-31 2002-02-28 Rafael Joory Reconfiguration incident to enabling an application access to setup information therefor
US20020046224A1 (en) * 1999-08-23 2002-04-18 Bendik Mary M. Document management systems and methods
US6393545B1 (en) * 1919-04-30 2002-05-21 Canon Kabushiki Kaisha Method apparatus and system for managing virtual memory with virtual-physical mapping
US6549996B1 (en) * 1999-07-02 2003-04-15 Oracle Corporation Scalable multiple address space server
US20030074650A1 (en) * 2001-10-17 2003-04-17 Tankut Akgul Debugger operating system for embedded systems
US6578129B1 (en) * 1998-07-24 2003-06-10 Imec Vzw Optimized virtual memory management for dynamic data types
US6584507B1 (en) * 1999-03-02 2003-06-24 Cisco Technology, Inc. Linking external applications to a network management system
US6591355B2 (en) * 1998-09-28 2003-07-08 Technion Research And Development Foundation Ltd. Distributed shared memory system with variable granularity
US6611955B1 (en) * 1999-06-03 2003-08-26 Swisscom Ag Monitoring and testing middleware based application software
US6615383B1 (en) * 1998-05-29 2003-09-02 Sun Microsystems, Inc. System and method for message transmission between network nodes connected by parallel links
US20030167422A1 (en) * 2002-01-09 2003-09-04 Microsoft Corporation Methods and systems for managing an application's relationship to its run-time environment
US6647474B2 (en) * 1993-04-23 2003-11-11 Emc Corporation Remote data mirroring system using local and remote write pending indicators
US6667930B1 (en) * 2002-01-08 2003-12-23 3Dlabs, Inc., Ltd. System and method for optimizing performance in a four-bank SDRAM
US6671791B1 (en) * 2001-06-15 2003-12-30 Advanced Micro Devices, Inc. Processor including a translation unit for selectively translating virtual addresses of different sizes using a plurality of paging tables and mapping mechanisms
US6718485B1 (en) * 1999-11-16 2004-04-06 Parasoft Corporation Software emulating hardware for analyzing memory references of a computer program
US20040083465A1 (en) * 2002-10-28 2004-04-29 Weijia Zhang Method and system for connecting to an application programming interface
US20040098563A1 (en) * 2002-11-19 2004-05-20 Stmicroelectronics, Inc. Coprocessor extension architecture built using a novel split-instruction transaction model
US20040151018A1 (en) * 2003-01-22 2004-08-05 Tianlong Chen Network attached memory and implementation thereof
US6775680B2 (en) * 2000-08-08 2004-08-10 International Business Machines Corporation High level assembler metamodel
US20040163082A1 (en) * 2003-02-13 2004-08-19 Marc Tremblay Commit instruction to support transactional program execution
US20040187115A1 (en) * 2003-02-13 2004-09-23 Marc Tremblay Selectively monitoring stores to support transactional program execution
US20040189695A1 (en) * 2003-03-24 2004-09-30 James Brian Kurtz Extensible object previewer in a shell browser
US20040221134A1 (en) * 2003-04-30 2004-11-04 Tianlong Chen Invariant memory page pool and implementation thereof
US20050022157A1 (en) * 2003-07-22 2005-01-27 Rainer Brendle Application management
US20050027757A1 (en) * 2002-12-19 2005-02-03 Rick Kiessig System and method for managing versions
US6857057B2 (en) * 2002-10-03 2005-02-15 Hewlett-Packard Development Company, L.P. Virtual storage systems and virtual storage system operational methods
US20050044340A1 (en) * 2003-08-18 2005-02-24 Kitrick Sheets Remote translation mechanism for a multinode system
US6862608B2 (en) * 2001-07-17 2005-03-01 Storage Technology Corporation System and method for a distributed shared memory
US20050081155A1 (en) * 2003-10-02 2005-04-14 Geoffrey Martin Virtual player capable of handling dissimilar content
US6895491B2 (en) * 2002-09-26 2005-05-17 Hewlett-Packard Development Company, L.P. Memory addressing for a virtual machine implementation on a computer processor supporting virtual hash-page-table searching
US6898670B2 (en) * 2000-04-18 2005-05-24 Storeage Networking Technologies Storage virtualization in a storage area network
US20050144360A1 (en) * 2003-12-30 2005-06-30 Bennett Alan D. Non-volatile memory and method with block management system
US6931623B2 (en) * 1999-08-30 2005-08-16 Touchnet Information Systems, Inc. Method of accessing data and logic on existing systems through dynamic construction of software components
US20050216552A1 (en) * 2004-03-24 2005-09-29 Samuel Fineberg Communication-link-attached persistent memory system
US6968398B2 (en) * 2001-08-15 2005-11-22 International Business Machines Corporation Method of virtualizing I/O resources in a computer system
US7000150B1 (en) * 2002-06-12 2006-02-14 Microsoft Corporation Platform for computer process monitoring
US20060067318A1 (en) * 2004-09-28 2006-03-30 Cray Canada Inc. Low latency communication via memory windows
US20070055960A1 (en) * 2004-08-10 2007-03-08 Sun Microsystems, Inc. System and method for supporting multiple alternative methods for executing transactions
US20070169065A1 (en) * 2005-10-31 2007-07-19 Janson Philippe A Computer program with metadata management function
US20070300238A1 (en) * 2006-06-21 2007-12-27 Leonidas Kontothanassis Adapting software programs to operate in software transactional memory environments
US7360204B2 (en) * 2003-05-08 2008-04-15 International Business Machines Corporation Grouping breakpoints by a criteria
US20080098378A1 (en) * 2006-10-20 2008-04-24 Kilbane Stephen M File attributes for flexible linking
US20080120590A1 (en) * 2006-11-22 2008-05-22 Cheng Wang Automatic function call in multithreaded application
US20080288834A1 (en) * 2007-05-18 2008-11-20 Chaiyasit Manovit Verification of memory consistency and transactional memory

Patent Citations (83)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6393545B1 (en) * 1919-04-30 2002-05-21 Canon Kabushiki Kaisha Method apparatus and system for managing virtual memory with virtual-physical mapping
US4707781A (en) * 1979-01-09 1987-11-17 Chopp Computer Corp. Shared memory computer method and apparatus
US4455602A (en) * 1981-05-22 1984-06-19 Data General Corporation Digital data processing system having an I/O means using unique address providing and access priority control techniques
US4821184A (en) * 1981-05-22 1989-04-11 Data General Corporation Universal addressing system for a digital data processing system
US4853842A (en) * 1985-09-11 1989-08-01 Texas Instruments Incorporated Computer memory system having persistent objects
US4989132A (en) * 1988-10-24 1991-01-29 Eastman Kodak Company Object-oriented, logic, and database programming tool with garbage collection
US5247679A (en) * 1990-02-20 1993-09-21 Prime Computer, Inc. Method for sequentially registering executable program formats with unresolved pointers by assigning linkage state and invocation state thereof
US5317708A (en) * 1990-06-29 1994-05-31 Digital Equipment Corporation Apparatus and method for an improved content addressable memory
US5649139A (en) * 1991-03-22 1997-07-15 Object Design, Inc. Method and apparatus for virtual memory mapping and transaction management in an object-oriented database system
US5592625A (en) * 1992-03-27 1997-01-07 Panasonic Technologies, Inc. Apparatus for providing shared virtual memory among interconnected computer nodes with minimal processor involvement
US6647474B2 (en) * 1993-04-23 2003-11-11 Emc Corporation Remote data mirroring system using local and remote write pending indicators
US5325533A (en) * 1993-06-28 1994-06-28 Taligent, Inc. Engineering system for modeling computer programs
US5581697A (en) * 1994-01-28 1996-12-03 Sun Microsystems, Inc. Method and apparatus for run-time error checking using dynamic patching
US5829041A (en) * 1994-09-14 1998-10-27 Kabushiki Kaisha Toshiba Method and apparatus for managing single virtual space suitable for distributed processing
US5729748A (en) * 1995-04-03 1998-03-17 Microsoft Corporation Call template builder and method
US5752031A (en) * 1995-04-24 1998-05-12 Microsoft Corporation Queue object for controlling concurrency in a computer system
US5835764A (en) * 1995-06-30 1998-11-10 International Business Machines Corporation Transaction processing system and method having a transactional subsystem integrated within a reduced kernel operating system
US6081833A (en) * 1995-07-06 2000-06-27 Kabushiki Kaisha Toshiba Memory space management method, data transfer method, and computer device for distributed computer system
US5850554A (en) * 1995-12-29 1998-12-15 Intel Corporation Compiler tool set for efficiently generating and easily managing multiple program versions of different types
US6067413A (en) * 1996-06-13 2000-05-23 Instantations, Inc. Data representation for mixed-language program development
US5873123A (en) * 1996-06-25 1999-02-16 International Business Machines Corporation Processor and method for translating a nonphysical address into a physical address utilizing a selectively nonsequential search of page table entries
US5918229A (en) * 1996-11-22 1999-06-29 Mangosoft Corporation Structured data storage using globally addressable memory
US6026474A (en) * 1996-11-22 2000-02-15 Mangosoft Corporation Shared client-side web caching using globally addressable memory
US6148377A (en) * 1996-11-22 2000-11-14 Mangosoft Corporation Shared memory computer networks
US5873102A (en) * 1997-04-29 1999-02-16 Oracle Corporation Pluggable tablespaces on a transportable medium
US5897634A (en) * 1997-05-09 1999-04-27 International Business Machines Corporation Optimized caching of SQL data in an object server system
US6014710A (en) * 1997-06-30 2000-01-11 Sun Microsystems, Inc. System and method for message transmission between network nodes using remote wires
US6335742B1 (en) * 1997-07-24 2002-01-01 Ricoh Company, Ltd. Apparatus for file management and manipulation using graphical displays and textual descriptions
US6295584B1 (en) * 1997-08-29 2001-09-25 International Business Machines Corporation Multiprocessor computer system with memory map translation
US6272612B1 (en) * 1997-09-04 2001-08-07 Bull S.A. Process for allocating memory in a multiprocessor data processing system
US6336177B1 (en) * 1997-09-19 2002-01-01 Silicon Graphics, Inc. Method, system and computer program product for managing memory in a non-uniform memory access system
US6289424B1 (en) * 1997-09-19 2001-09-11 Silicon Graphics, Inc. Method, system and computer program product for managing memory in a non-uniform memory access system
US6009442A (en) * 1997-10-08 1999-12-28 Caere Corporation Computer-based document management system
US6006307A (en) * 1997-11-13 1999-12-21 Advanced Micro Devices, Inc. Computer system employing a mirrored memory system for providing prefetch bandwidth
US5943283A (en) * 1997-12-05 1999-08-24 Invox Technology Address scrambling in a semiconductor memory
US6615383B1 (en) * 1998-05-29 2003-09-02 Sun Microsystems, Inc. System and method for message transmission between network nodes connected by parallel links
US6578129B1 (en) * 1998-07-24 2003-06-10 Imec Vzw Optimized virtual memory management for dynamic data types
US6591355B2 (en) * 1998-09-28 2003-07-08 Technion Research And Development Foundation Ltd. Distributed shared memory system with variable granularity
US6298481B1 (en) * 1998-10-30 2001-10-02 Segasoft, Inc. System for modifying the functionality of compiled computer code at run-time
US6178519B1 (en) * 1998-12-10 2001-01-23 Mci Worldcom, Inc. Cluster-wide database system
US6272597B1 (en) * 1998-12-31 2001-08-07 Intel Corporation Dual-ported, pipelined, two level cache system
US6584507B1 (en) * 1999-03-02 2003-06-24 Cisco Technology, Inc. Linking external applications to a network management system
US6611955B1 (en) * 1999-06-03 2003-08-26 Swisscom Ag Monitoring and testing middleware based application software
US6549996B1 (en) * 1999-07-02 2003-04-15 Oracle Corporation Scalable multiple address space server
US20020046224A1 (en) * 1999-08-23 2002-04-18 Bendik Mary M. Document management systems and methods
US6931623B2 (en) * 1999-08-30 2005-08-16 Touchnet Information Systems, Inc. Method of accessing data and logic on existing systems through dynamic construction of software components
US6718485B1 (en) * 1999-11-16 2004-04-06 Parasoft Corporation Software emulating hardware for analyzing memory references of a computer program
US6898670B2 (en) * 2000-04-18 2005-05-24 Storeage Networking Technologies Storage virtualization in a storage area network
US6775680B2 (en) * 2000-08-08 2004-08-10 International Business Machines Corporation High level assembler metamodel
US20020026572A1 (en) * 2000-08-31 2002-02-28 Rafael Joory Reconfiguration incident to enabling an application access to setup information therefor
US20020095663A1 (en) * 2000-08-31 2002-07-18 Rafael Joory Enabling an application access to setup information therefor
US20020026436A1 (en) * 2000-08-31 2002-02-28 Rafael Joory Supplanting application setup data and preserving the application setup data that has been supplanted
US6671791B1 (en) * 2001-06-15 2003-12-30 Advanced Micro Devices, Inc. Processor including a translation unit for selectively translating virtual addresses of different sizes using a plurality of paging tables and mapping mechanisms
US6862608B2 (en) * 2001-07-17 2005-03-01 Storage Technology Corporation System and method for a distributed shared memory
US6968398B2 (en) * 2001-08-15 2005-11-22 International Business Machines Corporation Method of virtualizing I/O resources in a computer system
US20030074650A1 (en) * 2001-10-17 2003-04-17 Tankut Akgul Debugger operating system for embedded systems
US6667930B1 (en) * 2002-01-08 2003-12-23 3Dlabs, Inc., Ltd. System and method for optimizing performance in a four-bank SDRAM
US20030167422A1 (en) * 2002-01-09 2003-09-04 Microsoft Corporation Methods and systems for managing an application's relationship to its run-time environment
US7000150B1 (en) * 2002-06-12 2006-02-14 Microsoft Corporation Platform for computer process monitoring
US6895491B2 (en) * 2002-09-26 2005-05-17 Hewlett-Packard Development Company, L.P. Memory addressing for a virtual machine implementation on a computer processor supporting virtual hash-page-table searching
US6857057B2 (en) * 2002-10-03 2005-02-15 Hewlett-Packard Development Company, L.P. Virtual storage systems and virtual storage system operational methods
US20040083465A1 (en) * 2002-10-28 2004-04-29 Weijia Zhang Method and system for connecting to an application programming interface
US7600096B2 (en) * 2002-11-19 2009-10-06 Stmicroelectronics, Inc. Coprocessor extension architecture built using a novel split-instruction transaction model
US20040098563A1 (en) * 2002-11-19 2004-05-20 Stmicroelectronics, Inc. Coprocessor extension architecture built using a novel split-instruction transaction model
US20050027757A1 (en) * 2002-12-19 2005-02-03 Rick Kiessig System and method for managing versions
US20040151018A1 (en) * 2003-01-22 2004-08-05 Tianlong Chen Network attached memory and implementation thereof
US20040187115A1 (en) * 2003-02-13 2004-09-23 Marc Tremblay Selectively monitoring stores to support transactional program execution
US20040163082A1 (en) * 2003-02-13 2004-08-19 Marc Tremblay Commit instruction to support transactional program execution
US20040189695A1 (en) * 2003-03-24 2004-09-30 James Brian Kurtz Extensible object previewer in a shell browser
US20040221134A1 (en) * 2003-04-30 2004-11-04 Tianlong Chen Invariant memory page pool and implementation thereof
US7360204B2 (en) * 2003-05-08 2008-04-15 International Business Machines Corporation Grouping breakpoints by a criteria
US20050022157A1 (en) * 2003-07-22 2005-01-27 Rainer Brendle Application management
US20050044340A1 (en) * 2003-08-18 2005-02-24 Kitrick Sheets Remote translation mechanism for a multinode system
US20050081155A1 (en) * 2003-10-02 2005-04-14 Geoffrey Martin Virtual player capable of handling dissimilar content
US20050144360A1 (en) * 2003-12-30 2005-06-30 Bennett Alan D. Non-volatile memory and method with block management system
US20050216552A1 (en) * 2004-03-24 2005-09-29 Samuel Fineberg Communication-link-attached persistent memory system
US20070055960A1 (en) * 2004-08-10 2007-03-08 Sun Microsystems, Inc. System and method for supporting multiple alternative methods for executing transactions
US20060067318A1 (en) * 2004-09-28 2006-03-30 Cray Canada Inc. Low latency communication via memory windows
US20070169065A1 (en) * 2005-10-31 2007-07-19 Janson Philippe A Computer program with metadata management function
US20070300238A1 (en) * 2006-06-21 2007-12-27 Leonidas Kontothanassis Adapting software programs to operate in software transactional memory environments
US20080098378A1 (en) * 2006-10-20 2008-04-24 Kilbane Stephen M File attributes for flexible linking
US20080120590A1 (en) * 2006-11-22 2008-05-22 Cheng Wang Automatic function call in multithreaded application
US20080288834A1 (en) * 2007-05-18 2008-11-20 Chaiyasit Manovit Verification of memory consistency and transactional memory

Cited By (61)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9235848B1 (en) * 2007-07-09 2016-01-12 Groupon, Inc. Implicitly associating metadata using user behavior
US9953342B1 (en) 2007-07-09 2018-04-24 Groupon, Inc. Implicitly associating metadata using user behavior
US10839421B2 (en) 2007-07-09 2020-11-17 Groupon, Inc. Implicitly associating metadata using user behavior
US11625753B2 (en) 2007-07-09 2023-04-11 Groupon, Inc. Implicitly associating metadata using user behavior
US9215423B2 (en) 2009-03-30 2015-12-15 Time Warner Cable Enterprises Llc Recommendation engine apparatus and methods
US9477514B2 (en) 2012-06-15 2016-10-25 International Business Machines Corporation Transaction begin/end instructions
US9811337B2 (en) 2012-06-15 2017-11-07 International Business Machines Corporation Transaction abort processing
US8688661B2 (en) 2012-06-15 2014-04-01 International Business Machines Corporation Transactional processing
US8880959B2 (en) 2012-06-15 2014-11-04 International Business Machines Corporation Transaction diagnostic block
US8887002B2 (en) 2012-06-15 2014-11-11 International Business Machines Corporation Transactional execution branch indications
US8887003B2 (en) 2012-06-15 2014-11-11 International Business Machines Corporation Transaction diagnostic block
US8966324B2 (en) 2012-06-15 2015-02-24 International Business Machines Corporation Transactional execution branch indications
US9311259B2 (en) 2012-06-15 2016-04-12 International Business Machines Corporation Program event recording within a transactional environment
US9317460B2 (en) 2012-06-15 2016-04-19 International Business Machines Corporation Program event recording within a transactional environment
US9336007B2 (en) 2012-06-15 2016-05-10 International Business Machines Corporation Processor assist facility
US9336046B2 (en) 2012-06-15 2016-05-10 International Business Machines Corporation Transaction abort processing
US9348642B2 (en) 2012-06-15 2016-05-24 International Business Machines Corporation Transaction begin/end instructions
US9354925B2 (en) 2012-06-15 2016-05-31 International Business Machines Corporation Transaction abort processing
US9361115B2 (en) 2012-06-15 2016-06-07 International Business Machines Corporation Saving/restoring selected registers in transactional processing
US9367324B2 (en) 2012-06-15 2016-06-14 International Business Machines Corporation Saving/restoring selected registers in transactional processing
US9367323B2 (en) 2012-06-15 2016-06-14 International Business Machines Corporation Processor assist facility
US9367378B2 (en) 2012-06-15 2016-06-14 International Business Machines Corporation Facilitating transaction completion subsequent to repeated aborts of the transaction
US9378024B2 (en) 2012-06-15 2016-06-28 International Business Machines Corporation Randomized testing within transactional execution
US9384004B2 (en) 2012-06-15 2016-07-05 International Business Machines Corporation Randomized testing within transactional execution
US9395998B2 (en) 2012-06-15 2016-07-19 International Business Machines Corporation Selectively controlling instruction execution in transactional processing
US9436477B2 (en) 2012-06-15 2016-09-06 International Business Machines Corporation Transaction abort instruction
US9442737B2 (en) 2012-06-15 2016-09-13 International Business Machines Corporation Restricting processing within a processor to facilitate transaction completion
US9442738B2 (en) 2012-06-15 2016-09-13 International Business Machines Corporation Restricting processing within a processor to facilitate transaction completion
US9448797B2 (en) 2012-06-15 2016-09-20 International Business Machines Corporation Restricted instructions in transactional execution
US9448796B2 (en) 2012-06-15 2016-09-20 International Business Machines Corporation Restricted instructions in transactional execution
WO2013186604A1 (en) * 2012-06-15 2013-12-19 International Business Machines Corporation Constrained transaction execution
US20160357570A1 (en) * 2012-06-15 2016-12-08 International Business Machines Corporation Restricted instructions in transactional execution
US10719415B2 (en) 2012-06-15 2020-07-21 International Business Machines Corporation Randomized testing within transactional execution
US8682877B2 (en) 2012-06-15 2014-03-25 International Business Machines Corporation Constrained transaction execution
US9740549B2 (en) 2012-06-15 2017-08-22 International Business Machines Corporation Facilitating transaction completion subsequent to repeated aborts of the transaction
US9740521B2 (en) 2012-06-15 2017-08-22 International Business Machines Corporation Constrained transaction execution
US9766925B2 (en) 2012-06-15 2017-09-19 International Business Machines Corporation Transactional processing
US9772854B2 (en) 2012-06-15 2017-09-26 International Business Machines Corporation Selectively controlling instruction execution in transactional processing
US9792125B2 (en) 2012-06-15 2017-10-17 International Business Machines Corporation Saving/restoring selected registers in transactional processing
US9529598B2 (en) 2012-06-15 2016-12-27 International Business Machines Corporation Transaction abort instruction
US9851978B2 (en) * 2012-06-15 2017-12-26 International Business Machines Corporation Restricted instructions in transactional execution
US9858082B2 (en) * 2012-06-15 2018-01-02 International Business Machines Corporation Restricted instructions in transactional execution
US9983882B2 (en) 2012-06-15 2018-05-29 International Business Machines Corporation Selectively controlling instruction execution in transactional processing
US9983883B2 (en) 2012-06-15 2018-05-29 International Business Machines Corporation Transaction abort instruction specifying a reason for abort
US9983915B2 (en) 2012-06-15 2018-05-29 International Business Machines Corporation Facilitating transaction completion subsequent to repeated aborts of the transaction
US9983881B2 (en) 2012-06-15 2018-05-29 International Business Machines Corporation Selectively controlling instruction execution in transactional processing
US9996360B2 (en) 2012-06-15 2018-06-12 International Business Machines Corporation Transaction abort instruction specifying a reason for abort
US10185588B2 (en) 2012-06-15 2019-01-22 International Business Machines Corporation Transaction begin/end instructions
US10223214B2 (en) 2012-06-15 2019-03-05 International Business Machines Corporation Randomized testing within transactional execution
US10353759B2 (en) 2012-06-15 2019-07-16 International Business Machines Corporation Facilitating transaction completion subsequent to repeated aborts of the transaction
US10430199B2 (en) 2012-06-15 2019-10-01 International Business Machines Corporation Program interruption filtering in transactional execution
US10437602B2 (en) 2012-06-15 2019-10-08 International Business Machines Corporation Program interruption filtering in transactional execution
US10558465B2 (en) 2012-06-15 2020-02-11 International Business Machines Corporation Restricted instructions in transactional execution
US10599435B2 (en) 2012-06-15 2020-03-24 International Business Machines Corporation Nontransactional store instruction
US10606597B2 (en) 2012-06-15 2020-03-31 International Business Machines Corporation Nontransactional store instruction
US10684863B2 (en) 2012-06-15 2020-06-16 International Business Machines Corporation Restricted instructions in transactional execution
US20160357553A1 (en) * 2012-06-15 2016-12-08 International Business Machines Corporation Restricted instructions in transactional execution
US11080087B2 (en) 2012-06-15 2021-08-03 International Business Machines Corporation Transaction begin/end instructions
US11507412B2 (en) * 2016-06-27 2022-11-22 Intel Corporation Memory management method and apparatus
WO2018004974A1 (en) * 2016-07-01 2018-01-04 Intel Corporation Processors, methods, and systems to identify stores that cause remote transactional execution aborts
US20230029331A1 (en) * 2021-07-26 2023-01-26 Microsoft Technology Licensing, Llc Dynamically allocatable physically addressed metadata storage

Similar Documents

Publication Publication Date Title
US20080320282A1 (en) Method And Systems For Providing Transaction Support For Executable Program Components
US8612930B2 (en) Methods and apparatus for dynamic class reloading and versioning
US20170126738A1 (en) Hard Object: Lightweight Hardware Enforcement of Encapsulation, Unforgeability, and Transactionality
US20080120604A1 (en) Methods, Systems, And Computer Program Products For Providing Program Runtime Data Validation
US8180986B2 (en) Memory conflict detection via mapping of the physical heap to control access permissions to the memory
US20160154658A1 (en) Correlating class loader objects across execution environments
US7665077B2 (en) System and method for sharing objects between applications in a virtual runtime environment
BRPI0618027A2 (en) configuration of isolated extensions and device triggers
US9075634B2 (en) Minimizing overhead in resolving operating system symbols
US7512938B2 (en) Typed intermediate representation for object-oriented languages
US20080005727A1 (en) Methods, systems, and computer program products for enabling cross language access to an addressable entity
CN103999036A (en) Method and system using exceptions for code specialization in a computer architecture that supports transactions
US20090249021A1 (en) Method And Systems For Invoking An Advice Operation Associated With A Joinpoint
US7219341B2 (en) Code analysis for selective runtime data processing
US20080320459A1 (en) Method And Systems For Providing Concurrency Control For Addressable Entities
US10713025B2 (en) Metadata application constraints within a module system based on modular dependencies
US20120023307A1 (en) Methods, systems, and computer program products for excluding an addressable entity from a translation of source code
US8433729B2 (en) Method and system for automatically generating a communication interface
US8769514B2 (en) Detecting race conditions with a software transactional memory system
Steimann From well-formedness to meaning preservation: model refactoring for almost free
US20060047710A1 (en) Globalized database system and method for accessing the same
US20120023488A1 (en) Methods, systems, and computer program products for processing an excludable addressable entity
US9189297B2 (en) Managing shared memory
US8490115B2 (en) Ambient state for asynchronous methods
US7818756B2 (en) SKU determination mechanism and API

Legal Events

Date Code Title Description
AS Assignment

Owner name: OKRALABS, LLC, NEW HAMPSHIRE

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:MORRIS, ROBERT P.;REEL/FRAME:019620/0867

Effective date: 20070730

STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION

AS Assignment

Owner name: SCENERA TECHNOLOGIES, LLC, NEW HAMPSHIRE

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:OKRALABS LLC;REEL/FRAME:044358/0633

Effective date: 20171122