Welcome to jctrans.net , Join Free |  Sign In
GMT+8 TUESDAY  13:40 2013/01/29 中文站
Exhibitions

Executive Talks

1of5

Interview with Milad M Istefanous, Executive Director of Philomina Global Services Co. Ltd.

Interview with Milad M Istefanous, Executive Director of Philomina Global Services Co. Ltd.

Philomina Global Head office located at Khartoum City that is well known, and having branches @ Port Sudan (Seaport City), and our modern office systems and all staff to give excellent services to our potential customers and worldwide associates.

Interview with Filipe Garcia, Branch Manager of Inicio transitarios Lda

Interview with Filipe Garcia, Branch Manager of Inicio transitarios Lda

Since the year 2000 INÍCIO TRANSITÁRIOS has been dedicated with total commitment to the creation of door-to-door transport solutions, regarding maritime and air logistics, on an international basis.

Interview with Ken Zhu,of Coeffort (Shanghai) Logistics & SCM Co., Ltd

Interview with Ken Zhu,of Coeffort (Shanghai) Logistics & SCM Co., Ltd

Coeffort was established in January 2015, core business of Coeffort is supply chain management and provide professional solutions, including supply chain financing, supply chain design, procurement and distribution, international customs clearance agent, executive stock trusteeship, Department of outsourcing, outsourcing processing and distribution management, supply chain services. I hope our business can do for customers "time Save", "money Save", "way touching One".

Interview with Arturo Chavez, Commercial Manager  of Smart Logistics Group

Interview with Arturo Chavez, Commercial Manager of Smart Logistics Group

SMART LOGISTICS GROUP is a premier transportation and logistics company, with coverage in SPAIN/EUROPE. Our value-added services portfolio includes import and export freight management, truck brokerage, intermodal, load/mode and network optimization, and global visibility. We provide freight forwarding, customs brokerage, warehousing and all other logistics services.

Interview with Ordan Cargo, Managing Director of Ordan Cargo Ltd

Interview with Ordan Cargo, Managing Director of Ordan Cargo Ltd

We are " ORDAN CARGO LTD" a freight forwarding & logistics company based in Tel Aviv, Israel since 2001 having presences at all main ports ASHDOD/HAIFA/TLV for Import/Export/Cross SEA/AIR. We provide excellent and creative logistics solutions as well as quality service with competitive prices.

International Business Machines Corp. : Patent Issued for Facilitating Memory Analysis

Source:4-traders    2014-1-3 9:37:00

By a News Reporter-Staff News Editor at Computer Weekly News -- A patent by the inventors Luo, Zhi Da (Beijing, CN); Qi, Yao (Beijing, CN), filed on September 21, 2010, was published online on December 24, 2013, according to news reporting originating from Alexandria, Virginia, by VerticalNews correspondents.

Patent number 8615760 is assigned to International Business Machines Corporation (Armonk, NY).

The following quote was obtained by the news editors from the background information supplied by the inventors: "The present invention relates to the computer field, particularly to runtime memory analysis, and more particularly, to a method and system for facilitating runtime memory analysis.

"To check potential runtime memory problems in a program, the program will usually be instrumented to track memory access events when the program runs. That is to say, some extra statements or instructions are inserted into the program, such that when the program is running, these extra statements or instructions are executed along with the original program instructions. The inserted statements or instructions will invoke a routine in a 'memory access tracking' module, and the routine in the 'memory access tracking' module will record memory access events in storage (e.g., a list and database in a memory).

"Program instrumentation has been widely used in analysis tools (e.g., dynamic memory analysis tools), optimization tools and testing tools. These tools use program instrumentation to modify binary code or byte code, to achieve such goals as performance analysis, code optimization and coverage testing analysis.

"FIG. 1 depicts a schematic diagram of program instrumentation for memory access tracking. As shown, the program runs in a runtime environment after being instrumented, and invokes a memory access tracking module via the inserted extra code during the running. The memory access tracking module stores memory access events into a storage, and loads the stored memory access events from the storage to perform relevant analysis.

"For example, as to the following simple Java program:

"TABLE-US-00001 class Simple { int i; public void set (int i) { this.i = i } },

"some of the statements therein are instrumented so as to record memory access operations. The instrumented program is shown as follows (actually, all instrumentations are performed on binary code or byte code, instead of source code, and the program is shown only to illustrate how code is modified in instrumentation):

"TABLE-US-00002 class Simple { int i; public void set (int i) { this.i = i; runtimeRecorder.addMemAccess(this, 'i', Constants.WRITE, Thread.getId( )); } }

"Thus during the running of the program, when the program writes a new value to field i of class Simple, the method addMemAccess will be invoked. The method addMemAccess has 4 parameters, including the memory access object reference, field name, access type and current thread ID. In this way, the method will record a memory access event including the above information in the memory, and can perform dynamic memory analysis on the memory access events that have been recorded.

"A thread is a kind of independent, schedulable flow of instructions, and is a logical flow that runs in the context of a process. Threads are an increasingly important programming model because of the requirement for concurrent software by multi-core processors today. Although a thread is a much more lightweight execution unit than a process, frequent creation and termination of threads is still expensive. To reduce thread creations and terminations, modern system allows a thread to fetch and execute tasks continuously in its lifetime.

"A task is a stand-alone job that represents an instruction sequence and is completely independent of other jobs. A thread can actually contain multiple tasks, each running in the context of the thread. After one task finishes its execution in the thread, the thread fetches another task ready to be executed. Tasks are usually executed sequentially in a thread without interleaving. A typical model of thread/task is a thread pool and working queue, which are widely used in industrial software to improve system throughput and performance.

"Since dynamic memory analysis tools should record every memory access event, and as program runs, more and more memory access events are recorded in storage (e.g., memory), the memory overhead will become larger and larger, and in the meantime, dynamic memory analysis will become slower and slower.

"FIG. 2 shows a comparison of memory usages of two exemplary applications before and after using program instrumentation to perform dynamic memory analysis. As shown, for the WAS Trade application, the memory overhead of dynamic memory analysis is 3.3.times.; while for the Tomcat application, the memory overhead of dynamic memory analysis varies from 3.times. to 5.times.. It can be seen that tracking memory access in dynamic memory analysis will bring about huge/tremendous extra memory consumption.

"Therefore, a method for reducing memory overhead in runtime memory analysis so as to make the runtime memory analysis more efficient is needed in the art."

In addition to the background information obtained for this patent, VerticalNews journalists also obtained the inventors' summary information for this patent: "In one aspect of the present invention, there is provided a method for facilitating memory analysis, comprising: assigning a unique ID (identifier) for each task in a running program; recording memory access events occurring during the running program, including the IDs of the tasks performing the memory accesses; issuing a task termination notification in response to a task terminating, the task termination notification including the ID of the terminating task; and releasing all the memory access events having the ID of the terminating task in the memory, in response to the task termination notification.

"In another aspect of the present invention, there is provided a system for facilitating memory analysis, comprising: a task ID assigning module for assigning a unique ID for each task in a running program; a memory access tracking module for recording memory access events occurring during the running program, including the IDs of the tasks performing the memory accesses; a task termination notification module for issuing a task termination notification in response to a task terminating, the task termination notification including the ID of the terminating task; and a task tracking process module for releasing all the memory access events having the ID of the terminating task in the memory, in response to the task termination notification."