SlideShare a Scribd company logo
1 of 35
Linking and AcceleratingLinking and Accelerating
Module 3
eld Basic Operationeld Basic Operation
Inputs
◦ Code 800 files
◦ Linkfiles
Outputs
◦ Code 800 files
◦ Linkfiles
◦ Loadfile
◦ Dynamic-link library (DLL)
3 - Linking and Accelerating 2
Linking a Multi-Module C programLinking a Multi-Module C program
◦ C program
 Guardian environment:
 eld –o outfile $system.system.ccplmain
inmod1 inmod2 -lcrtl –lcre
 OSS from Guardian environment:
 eld –o outfile –set systype oss $system.system.ccplmain
inmod1 inmod2 -l crtl –l cre
◦ C++
 Version 3
 eld –o outfile inmod1 inmod2 $system.system.ccplmain
-lzcppcdll –lzcpp3dll
3 - Linking and Accelerating 3
Linking a Multi-Module COBOL ProgramLinking a Multi-Module COBOL Program
3 - Linking and Accelerating 4
1> ecobol /in callprog/callo;symbols
2> ecobol /in mainprog/maino;symbols
3> eld -o myexe callo maino -l cob
ecobol
ecobol
eld
mainprog
callprog callo
maino
myexe
1
2
3
zcobdll
eld and Symbolseld and Symbols
Missing Symbols
◦ Unlike nld, eld knows which procedures exist in
system library
◦ By default, eld considers it an error if you refer to
a symbol and the symbol does not exist
 You can change this with the
-unres_symbols option: error, warn, ignore
◦ By default, your program cannot run if it refers to
a symbol that does not exist.
 You can change this with the
–set rld_unresolved option: error, warn, ignore
3 - Linking and Accelerating 5
Unresolved References — Default BehaviorUnresolved References — Default Behavior
 60> eld -o myexe maino -l cob
 eld - TNS/E Native Mode Linker - T0608H01^AAG - 26JAN2007
 **** INFORMATIONAL MESSAGE **** [1019]:
 Using DLL RUBY.$SYSTEM.zdll002a.zcobdll.
 **** INFORMATIONAL MESSAGE **** [1530]:
 Using the zimpimp file RUBY.$SYSTEM.SYS00.ZIMPIMP.
 **** ERROR **** [1210]:
 maino: In function `CONCEPTS-REQ':
maino(.text_1+0x1202):
unresolved reference to GET-SECOND-NUMBER.
 No output file created.
 1 error reported.
 No warnings reported.
 2 informational messages reported.
3 - Linking and Accelerating 6
Unresolved References — Optional BehaviorUnresolved References — Optional Behavior
 61> eld -o myexe maino -l cob -unres_symbols warn
 eld - TNS/E Native Mode Linker - T0608H01^AAG - 26JAN2007
 **** INFORMATIONAL MESSAGE **** [1019]:
 Using DLL RUBY.$SYSTEM.zdll002a.zcobdll.
 **** INFORMATIONAL MESSAGE **** [1530]:
 Using the zimpimp file RUBY.$SYSTEM.SYS00.ZIMPIMP.
 **** WARNING **** [1254]:
 maino: In function `CONCEPTS-REQ':
maino(.text_1+0x1202):
unresolved reference to GET-SECOND-NUMBER.
 Output file: myexe (program file)
 Output file timestamp: Aug 5 12:57:03 2008
 No errors reported.
 1 warning reported.
 2 informational messages reported.
3 - Linking and Accelerating 7
Unresolved References — Optional BehaviorUnresolved References — Optional Behavior
 62> run myexe
 *** RLD ERROR ***: Unresolved Text Symbol GET-SECOND-NUMBER in
file RUBY.$FC1.TERRYG.MYEXE.
 *ERROR* PROCESS_CREATE_ Error: 74
 63>
3 - Linking and Accelerating 8
Unresolved References — Additional OptionUnresolved References — Additional Option
 63> eld -o myexe maino -l cob -unres_symbols warn -set rld_unresolved
warn
 eld - TNS/E Native Mode Linker - T0608H01^AAG - 26JAN2007
 **** INFORMATIONAL MESSAGE **** [1019]:
 Using DLL RUBY.$SYSTEM.zdll002a.zcobdll.
 **** INFORMATIONAL MESSAGE **** [1530]:
 Using the zimpimp file RUBY.$SYSTEM.SYS00.ZIMPIMP.
 **** WARNING **** [1254]:
 maino: In function `CONCEPTS-REQ':
maino(.text_1+0x1202):
unresolved reference to GET-SECOND-NUMBER.
 Output file: myexe (program file)
 Output file timestamp: Aug 5 12:57:50 2008
 No errors reported.
 1 warning reported.
 2 informational messages reported.
3 - Linking and Accelerating 9
Unresolved References — Additional OptionUnresolved References — Additional Option
 64> run myexe
 *** RLD WARNING ***: Unresolved Text Symbol GET-SECOND-NUMBER in
file RUBY.$FC1.TERRYG.MYEXE.
 Undefined externals
 YOU HAVE JUST STARTED THE PROCESS.
 ENTER FIRST NUMBER (max. 3 digits) [or 0 to stop]:
 ?12
 RUBY.$:1:956:4925776 - *** Run-time Error 003 ***
 RUBY.$:1:956:4925776 - Instruction failure
 RUBY.$:1:956:4925776 - From ---
 RUBY.$:1:956:4925776 - UNRESOLVED_PROCEDURE_CALLED_ + 0x2 (SLr)
 RUBY.$:1:956:4925776 - CONCEPTS-REQ + 0x1210 (UCr)
 ABENDED: 1,956
 CPU time: 0:00:00.004
 3: Premature process termination with fatal errors or diagnostics
 65>
3 - Linking and Accelerating 10
Creating a DLLCreating a DLL
 eld inmod1 inmod2 -dll
 -dllname dllfilename [–set floattype neutral]
 [-set cppdialect cppneutral] –export_all
3 - Linking and Accelerating 11
Changing Object AttributesChanging Object Attributes
Updates existing code 800 file:
 eld –change <attribute> <value> <filename>
◦ Example:
 eld –change inspect off myprog
3 - Linking and Accelerating 12
PublicPublic Libraries (from SRL to DLL)Libraries (from SRL to DLL)
◦ All NonStop H-series libraries are packaged as DLLs rather
than SRLs - SRLs are not supported onTNS/E systems
◦ TheTNS/E libraries have different names - Change build
procedures that specifically refer to the libraries
Library TNS/R TNS/E*
COBOL run-time library COBSRL ZCOBDLL
Common Run-time Environment (CRE) ZCRESRL ZCREDLL
C run-time library ZCRTSRL ZCREDLL
C++ VERSION1 ZCPLGSRL Not supported
C++ VERSION2 ZCPLSRL +
ZRWSLSRL
ZCPPCDLL +
ZCPP2DLL
Tools.H++ 7.0 ZTLHSRL ZTLH7DLL
C++ VERSION3
(ANSI/ISO Standard)
ZSTDSRL ZCPPCDLL +
ZCPP3DLL
133 - Linking and Accelerating
Examining an Object FileExamining an Object File
◦ New tool — enoft
◦ Many commands identical to noft
 listproc, listsource, listcompilers, listattribute,
listoptimize, listunresolved, dumpproc, and so forth
◦ Some commands changed
 listsrlinfo -> liblist
 set out -> log
3 - Linking and Accelerating 14
enoft Examplesenoft Examples
 34> enoft
 TNS/E Native Object File Tool [T2823 - Jul 9 2008]
 enoft> file cobex
 Object File: RUBY.$FC1.TGTNSE.cobex
 Format Type: ELF64-bit, Big_Endian, IA64, PIC_Program (loadfile)
 enoft> listproc *
 ******** List of Procedures
 UwNdx Proc_Addr Proc_Name
 -----------------------------------------------------------------
 0 0x700008c0 #import_stubs
 1 0x70000a40 CALCULATOR
 2 0x700027c0 __INIT__0_CALCULATOR_
 3 0x70002900 __INIT__1_CALCULATOR_
 4 0x70002a40 GET-SECOND-NUMBER
 5 0x700035c0 __INIT__0_GET-SECOND-NUMBER_
 6 0x70003700 #end_of_code
3 - Linking and Accelerating 15
enoft Examplesenoft Examples
 enoft> la
 ******** List of Common File Attributes
 Name: RUBY.$FC1.TGTNSE.cobex
 File Format: ELF64-bit, Big_Endian, IA64
 Type: PIC_Program (loadfile)
 Debugging Symbols: Yes
 Float-Point Type: NEUTRAL_FLOAT
 -----------------------------------------------------------------
 Float-overrule: No
 System Type: Guardian
 Creation Timestamp: 2008-11-11 08:57:35
 Process Subtype: 0
 Highrequestors: Yes
 Runnamed: No
 Highpin: Yes
 Saveabend: No
 PRIV or CALLABLE Main: No
 CALLABLE Procs: No
 Default Debugger: Visual Inspect
 Languages and Dialects: Asm Cobol Ptal C
 Instrumented File: No
3 - Linking and Accelerating 16
enoft Examplesenoft Examples
 enoft> ls * detail
 ******** List of Source Files (Compilation Units)
 Source: 0 RUBY.$FC1.TGTNSE.MAINCOB
 Compiler: Cobol85
 Descript: HP TNS/E COBOL T0356H01_01AUG2008_20JUL2008_AAU +
T1246H01_01AUG2008_1
 8JUL2008_PRODUCT_AAM_GRD_E_10_1
 Compiled: 2008-11-11 08:57:29 (TimeStamp at Compile site)
 File: 1 RUBY.$FC1.TGTNSE.MAINCOB
 Time: 2008-11-11 08:56:50
 Size: 1718
 Source: 1 RUBY.$FC1.TGTNSE.CALLCOB
 Compiler: Cobol85
 Descript: HP TNS/E COBOL T0356H01_01AUG2008_20JUL2008_AAU +
T1246H01_01AUG2008_1
 8JUL2008_PRODUCT_AAM_GRD_E_10_1
 Compiled: 2008-11-11 08:57:19 (TimeStamp at Compile site)
 File: 1 RUBY.$FC1.TGTNSE.CALLCOB
 Time: 2008-11-11 08:57:11
 Size: 1154
3 - Linking and Accelerating 17
enoft Examplesenoft Examples
 enoft> lu *
 ******** List of Unresolved (undefined) Symbols
 SymNdx Symbol_Name
 -----------------------------------------------------------------
 30 COBLIB_ACCEPT_
 31 _SharedMilli_MOVB_FWD_NOOVERLAP
 32 COBLIB_INITIALIZER_
 35 COBLIB_ABEND_
 37 COBLIB_DISPLAY_
 38 COBLIB_INITIALIZATION_COMPLETE_
 43 COBLIB_ERROR_
 48 _SharedMilli_CQA
 49 COBLIB_INIT_PROG_
 51 COBLIB_STOP_
 52 COBLIB_COMP_ALL_1_
 Number of symbols matching scope: 11
3 - Linking and Accelerating 18
Object Code Accelerator (OCA)Object Code Accelerator (OCA)
◦ Operates on Guardian-based code 100 files
 May already be TNS/R accelerated
◦ Adds Itanium Processor Family (IPF) instructions
 Adds calls to millicode routines
◦ Uses symbols region, if present
 Produces more efficient code
 Can strip after acceleration
◦ Controllable by Binder options
◦ Use SQLCOMP after acceleration
3 - Linking and Accelerating 19
OCA Items to Watch forOCA Items to Watch for
◦ Disabled overflow traps
 Should test for overflow using $OVERFLOW or ONSIZE
◦ Trap handlers
 Register contents are not precise
◦ P-relative addresses
 Cannot be passed as parameters in UC
◦ References to system global data
 Instruction Failure exception
◦ Odd-byte references
 Various behaviors
◦ Single-word shift statements with dynamic shift count
 Shift count > 31 gives undefined result
◦ May affect debugging ability
3 - Linking and Accelerating 20
Object Code Accelerator — ExampleObject Code Accelerator — Example
3 - Linking and Accelerating 21
6> oca
OCA - T0448H01 - 01MAY05 - (May 28 2008 15:55:33)
Copyright Hewlett-Packard, 1988-2005
OCA Syntax Summary
oca [/run-options/] input-file [; option-list ]
input-file is the name of a fully bound, runnable,
type-100 TNS code file.
option-list
is one or more command line options:
[ { SL }
{ UL }
Object Code Accelerator — ExampleObject Code Accelerator — Example
 TALEX 100 15496 11NOV2008 7:57 34,26 OOOO 14 14
 26> oca talex
 OCA - T0448H01 - 01MAY05 - (May 28 2008 15:55:33)
 Copyright Hewlett-Packard, 1988-2005
 Option summary: No options
 262 TNS instruction words; 524 bytes
 445 Itanium bundles; 7120 bytes
 13.59 inline code expansion factor
 1.70 Itanium bundles per TNS instruction
 TNS file name: talex
 Binder region present
 Symbols region present
 Mips region not present
 Accelerated as User Code segment 0 through 0
 0 Errors were detected
 0 Warnings were issued
 Accelerated file name: talex
 Accelerated for TNS/E on Nov 11 2008 07:58:15
 Acceleration completed on Nov 11 2008 07:58:15
 CPU Time 0:00:00.050
 TALEX 100 30720 11NOV2008 7:58 34,26 OOOO 56 56
3 - Linking and Accelerating 22
Determining If Program AcceleratedDetermining If Program Accelerated
 23> fileinfo obj*
 $FC1.TERRYG
 CODE EOF LAST MODIFIED OWNER RWEP
 OBJC 100 12282 08AUG2008 12:32 34,26 OOOO
 OBJCE 100 28672 08AUG2008 12:34 34,26 OOOO
 OBJCR 100 24576 08AUG2008 12:33 34,26 OOOO
 OBJCRE 100 40960 08AUG2008 12:35 34,26 OOOO
 24> vproc objc
 VPROC - T9617H01 - (01 OCT 2004) SYSTEM RUBY Date 08 AUG 2008, 12:37:03
 $FC1.TERRYG.OBJC
 Binder timestamp: 08AUG2008 12:32:44
 Version procedure: >> NO T9xxx PROC <<
 Target CPU: UNSPECIFIED
3 - Linking and Accelerating 23
Not accelerated
Determining If Program AcceleratedDetermining If Program Accelerated
 25> vproc objce
 VPROC - T9617H01 - (01 OCT 2004) SYSTEM RUBY Date 08 AUG 2008, 12:37:27
 $FC1.TERRYG.OBJCE
 Binder timestamp: 08AUG2008 12:32:44
 Version procedure: >> NO T9xxx PROC <<
 Target CPU: UNSPECIFIED
 OCA timestamp: 08AUG2008 12:34:51
 26> vproc objcre
 VPROC - T9617H01 - (01 OCT 2004) SYSTEM RUBY Date 08 AUG 2008, 12:38:10
 $FC1.TERRYG.OBJCRE
 Binder timestamp: 08AUG2008 12:32:44
 Version procedure: >> NO T9xxx PROC <<
 Target CPU: UNSPECIFIED
 AXCEL timestamp: 08AUG2008 12:33:28
 OCA timestamp: 08AUG2008 12:35:15
3 - Linking and Accelerating 24
TNS/R accelerated
TNS/E accelerated
TNS/E accelerated
BINDER – Disabling AccelerationBINDER – Disabling Acceleration
◦ Display current setting:
 SHOW OCA ENABLE FROM <file-name>
◦ Control whether program can be accelerated:
 CHANGE OCA ENABLE ON|OFF IN <file-name>
 6> bind
 BINDER - OBJECT FILE BINDER - T9621H01 SYSTEM
RUBY
 @change oca enable off in objc
 @exit
 7> oca objc output_file objce
 OCA - T0448H01 - 01MAY05 - (Mar 19 2007 14:40:27)
 *** Error 9:Translation of file objc is inhibited.
◦ Strip accelerated region:
 STRIP <file-name>, IPF
3 - Linking and Accelerating 25
TNSVUTNSVU ——
Accelerated Object ExaminerAccelerated Object Examiner
3 - Linking and Accelerating 26
28> tnsvu talex
TNSVU - May 28 2008 16:13:21
Copyright Hewlett-Packard, 2000-2005
Viewing on Tue Nov 11 08:01:05 2008
Opened file talex
talex>
TNSVU HelpTNSVU Help
3 - Linking and Accelerating 27
talex> help
TNSVU Command Summary
Commands are not case-sensitive; file and procedure names are.
More information is available using "HELP command-name".
LOG - Opens a text file in which TNSVU records all text
LOGAPPEND written to the screen (including typed commands).
ENDLOG - Closes a log file.
OPEN - Opens a type-100 TNS object file for viewing.
FILEINFO - Displays general information about the open file.
PROCINFO - Displays general information about a procedure.
PROCS - Displays the names of procedures in the object file
LOCAL - Displays the names of local millicode routines
MILLICODE - Displays the names of emulation and shared millicode
routines.
EXTERNALS - Displays the names of external (system or user)
library routines.
ICODE - Displays Itanium and TNS instructions.
HISTORY - Displays previously-issued commands.
TNSVU HelpTNSVU Help
 TNSHEADER - Displays the TNS file header.
 OCAHEADER - Displays the Itanium region header.
 AXCELHEADER - Displays the Axcel region header.
 DUMPPMAPS - Displays Pmaps.
 OPTIONS - Displays translation options.
 TNStoIPF - Converts TNS address to Itanium.
 IPFtoTNS - Converts Itanium address to TNS.
 XEP - Displays proc targets of XEP entries.
 VERSION - Displays the OCAVersion field of the OCAHeader.
 EXACTPTS - Displays the exact points in the given procedure.
 OBEY - Reads TNSVU commands from the given text file.
 LIMIT - Overrides limit on # of TNS instrs printed by
'ICODE procname'.
 COMPARE - Compare IPF code from the current file
with the given file.
 LINENUMTOTNS - Converts a source line number to a TNS code location.
 TNSTOLINENUM - Converts a TNS code location to a source line number.
 SOURCESUBVOL - Display source from files in the given subvol.
 SOURCE OFF - Turn off source code display.
 SOURCE ON - Turn on source code display (on by default).
3 - Linking and Accelerating 28
TNSVU Example — FILEINFOTNSVU Example — FILEINFO
3 - Linking and Accelerating 29
talex> fileinfo
Examining file talex
Occupies code segment 0 through 0 in User Code
space 0x1bd Itanium bundles
Translated on Nov 11 2008 07:58:15
using an OCA built on May 28 2008 15:55:33
Accelerator region: 0x0 for 0x0 bytes
Itanium region: 0x4000 for 0x3008 bytes
Symbols region: 0x2000 for 0xb12 bytes
Binder region: 0x2c00 for 0x1088 bytes
talex>
TNSVU Example — PROCSTNSVU Example — PROCS
3 - Linking and Accelerating 30
talex> procs
Procedures:
DISPLAY_INITIAL_REQ_MESSAGE
CSEG 0 PEP# 02 TNS Base: 05 TNS Size: 071 TNS Entry: 05
Itanium code: 0x70420480 Itanium bundles: 0x3a Itanium entry:
0x70420480
Implemented in TAL in source file RUBY.$FC1.TGTNSE.MAINP
line 36.0 to 44.0
GET_SECOND_NUMBER
CSEG 0 PEP# 04 TNS Base: 0345 TNS Size: 0154 TNS Entry: 0345
Itanium code: 0x70421500 Itanium bundles: 0x6d Itanium entry:
0x70421500
Implemented in TAL in source file RUBY.$FC1.TGTNSE.CALLP
line 10.0 to 27.0
MAIN_PROG
CSEG 0 PEP# 03 TNS Base: 076 TNS Size: 0247 TNS Entry: 076
Itanium code: 0x70420820 Itanium bundles: 0xce Itanium entry:
0x70420820
Implemented in TAL in source file RUBY.$FC1.TGTNSE.MAINP
line 46.0 to 84.0
talex>
TNSVU Example — LOCALTNSVU Example — LOCAL
3 - Linking and Accelerating 31
talex> local
Local millicode routines:
Entry: 0x70420090 NumBundles: 0x4 0 _LocalMilli_RPMispredicted
Entry: 0x704200d0 NumBundles: 0x4 0 _LocalMilli_ToOCI
Entry: 0x70420110 NumBundles: 0xe 0 _LocalMilli_EXIT
Entry: 0x704201f0 NumBundles: 0x6 0 _LocalMilli_MapTNStoIPF_Calc
Entry: 0x70420250 NumBundles: 0x8 0 _LocalMilli_MapTNStoIPF
Entry: 0x704202d0 NumBundles: 0x4 0 _LocalMilli_BTST
Entry: 0x70420310 NumBundles: 0x2 0 _LocalMilli_TNSArithOverflow
Entry: 0x70420330 NumBundles: 0x4 0 _LocalMilli_64bitAddArithOv
Entry: 0x70420370 NumBundles: 0x8 0 _LocalMilli_QMPY
Entry: 0x70420000 NumBundles: 0x3 0 _LocalMilli_OCATraceEnter
Entry: 0x70420030 NumBundles: 0x3 0 _LocalMilli_OCATraceExit
Entry: 0x70420060 NumBundles: 0x3 0 _LocalMilli_OCATracePmapJump
Entry: 0x704203f0 NumBundles: 0x9 0 _LocalMilli_CallSharedMilli
talex>
TNSVU Example — EXTERNALSTNSVU Example — EXTERNALS
3 - Linking and Accelerating 32
talex> externals
Library procedures external to this code space
WRITEREAD
WRITE
STOP
PROCESS_GETINFO_
PROCESS_DEBUG_
NUMOUT
NUMIN
INITIALIZER
FILE_OPEN_
FILE_GETINFO_
FILE_CLOSE_
talex>
TNSVU Example — ICODETNSVU Example — ICODE
3 - Linking and Accelerating 33
icode DISPLAY_INITIAL_REQ_MESSAGE
FC>
Procedure DISPLAY_INITIAL_REQ_MESSAGE (from source file RUBY.
$FC1.TGTNSE.MAINP)
Itanium virtual address 0x70420480 for 0x3a Itanium bundles
CSEG 0 TNS offset 05 for 071 TNS instructions
...
37.0 write_count := @p '-' @s;
016: 0x70420570:
LADR G+0106,I {
LADR G+0105,I + ld2 r46 = [r35]
LSUB ld2 r45 = [r34]
STOR G+0102 nop.i 00h ;;
}
{
sub r45 = r45, r46
adds r46 = 01ah, r0
nop.i 00h ;;
}
{
nop.m 00h
zxt2 r45 = r45 ;;
nop.i 00h
}
Questions ?Questions ?
34
3 - Linking and Accelerating 35

More Related Content

What's hot

Demystifying cost based optimization
Demystifying cost based optimizationDemystifying cost based optimization
Demystifying cost based optimizationRiyaj Shamsudeen
 
Windows persistence presentation
Windows persistence presentationWindows persistence presentation
Windows persistence presentationOlehLevytskyi1
 
My old security advisories on HMI/SCADA and industrial software released betw...
My old security advisories on HMI/SCADA and industrial software released betw...My old security advisories on HMI/SCADA and industrial software released betw...
My old security advisories on HMI/SCADA and industrial software released betw...Luigi Auriemma
 
Performance tuning a quick intoduction
Performance tuning   a quick intoductionPerformance tuning   a quick intoduction
Performance tuning a quick intoductionRiyaj Shamsudeen
 
Riyaj real world performance issues rac focus
Riyaj real world performance issues rac focusRiyaj real world performance issues rac focus
Riyaj real world performance issues rac focusRiyaj Shamsudeen
 
Advanced RAC troubleshooting: Network
Advanced RAC troubleshooting: NetworkAdvanced RAC troubleshooting: Network
Advanced RAC troubleshooting: NetworkRiyaj Shamsudeen
 
Deep review of LMS process
Deep review of LMS processDeep review of LMS process
Deep review of LMS processRiyaj Shamsudeen
 
All on Adaptive and Extended Cursor Sharing
All on Adaptive and Extended Cursor SharingAll on Adaptive and Extended Cursor Sharing
All on Adaptive and Extended Cursor SharingMohamed Houri
 
Oracle 10g Performance: chapter 00 sampling
Oracle 10g Performance: chapter 00 samplingOracle 10g Performance: chapter 00 sampling
Oracle 10g Performance: chapter 00 samplingKyle Hailey
 
Debunking myths about_redo_ppt
Debunking myths about_redo_pptDebunking myths about_redo_ppt
Debunking myths about_redo_pptRiyaj Shamsudeen
 
11 Things About11g
11 Things About11g11 Things About11g
11 Things About11gfcamachob
 
Linux PCI device driver
Linux PCI device driverLinux PCI device driver
Linux PCI device driver艾鍗科技
 
SANS Holiday Hack 2013 – Investigation Timeline
SANS Holiday Hack 2013 – Investigation TimelineSANS Holiday Hack 2013 – Investigation Timeline
SANS Holiday Hack 2013 – Investigation Timelinegiacomo83m
 
A close encounter_with_real_world_and_odd_perf_issues
A close encounter_with_real_world_and_odd_perf_issuesA close encounter_with_real_world_and_odd_perf_issues
A close encounter_with_real_world_and_odd_perf_issuesRiyaj Shamsudeen
 
Oracle goldengate 11g schema replication from standby database
Oracle goldengate 11g schema replication from standby databaseOracle goldengate 11g schema replication from standby database
Oracle goldengate 11g schema replication from standby databaseuzzal basak
 
(SAS) UNIX X Command Tips and Tricks
(SAS) UNIX X Command Tips and Tricks(SAS) UNIX X Command Tips and Tricks
(SAS) UNIX X Command Tips and TricksDavid Horvath
 

What's hot (20)

Demystifying cost based optimization
Demystifying cost based optimizationDemystifying cost based optimization
Demystifying cost based optimization
 
Windows persistence presentation
Windows persistence presentationWindows persistence presentation
Windows persistence presentation
 
Sql
SqlSql
Sql
 
My old security advisories on HMI/SCADA and industrial software released betw...
My old security advisories on HMI/SCADA and industrial software released betw...My old security advisories on HMI/SCADA and industrial software released betw...
My old security advisories on HMI/SCADA and industrial software released betw...
 
Performance tuning a quick intoduction
Performance tuning   a quick intoductionPerformance tuning   a quick intoduction
Performance tuning a quick intoduction
 
Riyaj real world performance issues rac focus
Riyaj real world performance issues rac focusRiyaj real world performance issues rac focus
Riyaj real world performance issues rac focus
 
Advanced RAC troubleshooting: Network
Advanced RAC troubleshooting: NetworkAdvanced RAC troubleshooting: Network
Advanced RAC troubleshooting: Network
 
Deep review of LMS process
Deep review of LMS processDeep review of LMS process
Deep review of LMS process
 
All on Adaptive and Extended Cursor Sharing
All on Adaptive and Extended Cursor SharingAll on Adaptive and Extended Cursor Sharing
All on Adaptive and Extended Cursor Sharing
 
Oracle 10g Performance: chapter 00 sampling
Oracle 10g Performance: chapter 00 samplingOracle 10g Performance: chapter 00 sampling
Oracle 10g Performance: chapter 00 sampling
 
Debunking myths about_redo_ppt
Debunking myths about_redo_pptDebunking myths about_redo_ppt
Debunking myths about_redo_ppt
 
11 Things About11g
11 Things About11g11 Things About11g
11 Things About11g
 
Linux PCI device driver
Linux PCI device driverLinux PCI device driver
Linux PCI device driver
 
Rac introduction
Rac introductionRac introduction
Rac introduction
 
Px execution in rac
Px execution in racPx execution in rac
Px execution in rac
 
Redo internals ppt
Redo internals pptRedo internals ppt
Redo internals ppt
 
SANS Holiday Hack 2013 – Investigation Timeline
SANS Holiday Hack 2013 – Investigation TimelineSANS Holiday Hack 2013 – Investigation Timeline
SANS Holiday Hack 2013 – Investigation Timeline
 
A close encounter_with_real_world_and_odd_perf_issues
A close encounter_with_real_world_and_odd_perf_issuesA close encounter_with_real_world_and_odd_perf_issues
A close encounter_with_real_world_and_odd_perf_issues
 
Oracle goldengate 11g schema replication from standby database
Oracle goldengate 11g schema replication from standby databaseOracle goldengate 11g schema replication from standby database
Oracle goldengate 11g schema replication from standby database
 
(SAS) UNIX X Command Tips and Tricks
(SAS) UNIX X Command Tips and Tricks(SAS) UNIX X Command Tips and Tricks
(SAS) UNIX X Command Tips and Tricks
 

Viewers also liked

The common core state standards 4 5
The common core state standards 4 5The common core state standards 4 5
The common core state standards 4 5jiwase
 
Senator mazie hirono’s visit to hale kula elementary
Senator mazie hirono’s visit to hale kula elementarySenator mazie hirono’s visit to hale kula elementary
Senator mazie hirono’s visit to hale kula elementaryjiwase
 
Update on facilities grant
Update on facilities grantUpdate on facilities grant
Update on facilities grantjiwase
 
Turkey trot – a community service activity
Turkey trot – a community service activityTurkey trot – a community service activity
Turkey trot – a community service activityjiwase
 
Mod00 introduction
Mod00 introductionMod00 introduction
Mod00 introductionPeter Haase
 
The hour of code
The hour of codeThe hour of code
The hour of codejiwase
 
Cardboard challenge
Cardboard challengeCardboard challenge
Cardboard challengejiwase
 
Sara Vanegas versus Galante Group Corporation & Jeffery Galante & David Connell
Sara Vanegas versus Galante Group Corporation & Jeffery Galante & David ConnellSara Vanegas versus Galante Group Corporation & Jeffery Galante & David Connell
Sara Vanegas versus Galante Group Corporation & Jeffery Galante & David Connellmichaelf437
 

Viewers also liked (8)

The common core state standards 4 5
The common core state standards 4 5The common core state standards 4 5
The common core state standards 4 5
 
Senator mazie hirono’s visit to hale kula elementary
Senator mazie hirono’s visit to hale kula elementarySenator mazie hirono’s visit to hale kula elementary
Senator mazie hirono’s visit to hale kula elementary
 
Update on facilities grant
Update on facilities grantUpdate on facilities grant
Update on facilities grant
 
Turkey trot – a community service activity
Turkey trot – a community service activityTurkey trot – a community service activity
Turkey trot – a community service activity
 
Mod00 introduction
Mod00 introductionMod00 introduction
Mod00 introduction
 
The hour of code
The hour of codeThe hour of code
The hour of code
 
Cardboard challenge
Cardboard challengeCardboard challenge
Cardboard challenge
 
Sara Vanegas versus Galante Group Corporation & Jeffery Galante & David Connell
Sara Vanegas versus Galante Group Corporation & Jeffery Galante & David ConnellSara Vanegas versus Galante Group Corporation & Jeffery Galante & David Connell
Sara Vanegas versus Galante Group Corporation & Jeffery Galante & David Connell
 

Similar to Linking and Accelerating Module 3

Lightweight Transactions at Lightning Speed
Lightweight Transactions at Lightning SpeedLightweight Transactions at Lightning Speed
Lightweight Transactions at Lightning SpeedScyllaDB
 
Severalnines Training: MySQL Cluster - Part X
Severalnines Training: MySQL Cluster - Part XSeveralnines Training: MySQL Cluster - Part X
Severalnines Training: MySQL Cluster - Part XSeveralnines
 
11thingsabout11g 12659705398222 Phpapp01
11thingsabout11g 12659705398222 Phpapp0111thingsabout11g 12659705398222 Phpapp01
11thingsabout11g 12659705398222 Phpapp01Karam Abuataya
 
Labs_BT_20221017.pptx
Labs_BT_20221017.pptxLabs_BT_20221017.pptx
Labs_BT_20221017.pptxssuserb4d806
 
Oracle Basics and Architecture
Oracle Basics and ArchitectureOracle Basics and Architecture
Oracle Basics and ArchitectureSidney Chen
 
Nagios Conference 2013 - Troy Lea - Leveraging and Understanding Performance ...
Nagios Conference 2013 - Troy Lea - Leveraging and Understanding Performance ...Nagios Conference 2013 - Troy Lea - Leveraging and Understanding Performance ...
Nagios Conference 2013 - Troy Lea - Leveraging and Understanding Performance ...Nagios
 
Schema replication using oracle golden gate 12c
Schema replication using oracle golden gate 12cSchema replication using oracle golden gate 12c
Schema replication using oracle golden gate 12cuzzal basak
 
Reverse engineering Swisscom's Centro Grande Modem
Reverse engineering Swisscom's Centro Grande ModemReverse engineering Swisscom's Centro Grande Modem
Reverse engineering Swisscom's Centro Grande ModemCyber Security Alliance
 
Tick Stack - Listen your infrastructure and please sleep
Tick Stack - Listen your infrastructure and please sleepTick Stack - Listen your infrastructure and please sleep
Tick Stack - Listen your infrastructure and please sleepGianluca Arbezzano
 
Keep Them out of the Database
Keep Them out of the DatabaseKeep Them out of the Database
Keep Them out of the DatabaseMartin Berger
 
DPDK & Layer 4 Packet Processing
DPDK & Layer 4 Packet ProcessingDPDK & Layer 4 Packet Processing
DPDK & Layer 4 Packet ProcessingMichelle Holley
 
Oracle Client Failover - Under The Hood
Oracle Client Failover - Under The HoodOracle Client Failover - Under The Hood
Oracle Client Failover - Under The HoodLudovico Caldara
 
Automated reduction of attack surface using call graph enumeration
Automated reduction of attack surface using call graph enumerationAutomated reduction of attack surface using call graph enumeration
Automated reduction of attack surface using call graph enumerationRuo Ando
 
HandlerSocket plugin for MySQL (English)
HandlerSocket plugin for MySQL (English)HandlerSocket plugin for MySQL (English)
HandlerSocket plugin for MySQL (English)akirahiguchi
 
Percona Live UK 2014 Part III
Percona Live UK 2014  Part IIIPercona Live UK 2014  Part III
Percona Live UK 2014 Part IIIAlkin Tezuysal
 
SCADA Strangelove: взлом во имя
SCADA Strangelove: взлом во имяSCADA Strangelove: взлом во имя
SCADA Strangelove: взлом во имяEkaterina Melnik
 
SCADA Strangelove: Hacking in the Name
SCADA Strangelove: Hacking in the NameSCADA Strangelove: Hacking in the Name
SCADA Strangelove: Hacking in the NamePositive Hack Days
 
Troubleshooting Complex Performance issues - Oracle SEG$ contention
Troubleshooting Complex Performance issues - Oracle SEG$ contentionTroubleshooting Complex Performance issues - Oracle SEG$ contention
Troubleshooting Complex Performance issues - Oracle SEG$ contentionTanel Poder
 

Similar to Linking and Accelerating Module 3 (20)

Lightweight Transactions at Lightning Speed
Lightweight Transactions at Lightning SpeedLightweight Transactions at Lightning Speed
Lightweight Transactions at Lightning Speed
 
Severalnines Training: MySQL Cluster - Part X
Severalnines Training: MySQL Cluster - Part XSeveralnines Training: MySQL Cluster - Part X
Severalnines Training: MySQL Cluster - Part X
 
11thingsabout11g 12659705398222 Phpapp01
11thingsabout11g 12659705398222 Phpapp0111thingsabout11g 12659705398222 Phpapp01
11thingsabout11g 12659705398222 Phpapp01
 
Labs_BT_20221017.pptx
Labs_BT_20221017.pptxLabs_BT_20221017.pptx
Labs_BT_20221017.pptx
 
Oracle Basics and Architecture
Oracle Basics and ArchitectureOracle Basics and Architecture
Oracle Basics and Architecture
 
Nagios Conference 2013 - Troy Lea - Leveraging and Understanding Performance ...
Nagios Conference 2013 - Troy Lea - Leveraging and Understanding Performance ...Nagios Conference 2013 - Troy Lea - Leveraging and Understanding Performance ...
Nagios Conference 2013 - Troy Lea - Leveraging and Understanding Performance ...
 
Schema replication using oracle golden gate 12c
Schema replication using oracle golden gate 12cSchema replication using oracle golden gate 12c
Schema replication using oracle golden gate 12c
 
Reverse engineering Swisscom's Centro Grande Modem
Reverse engineering Swisscom's Centro Grande ModemReverse engineering Swisscom's Centro Grande Modem
Reverse engineering Swisscom's Centro Grande Modem
 
Tick Stack - Listen your infrastructure and please sleep
Tick Stack - Listen your infrastructure and please sleepTick Stack - Listen your infrastructure and please sleep
Tick Stack - Listen your infrastructure and please sleep
 
Rac 12c optimization
Rac 12c optimizationRac 12c optimization
Rac 12c optimization
 
Keep Them out of the Database
Keep Them out of the DatabaseKeep Them out of the Database
Keep Them out of the Database
 
audit_blog.ppt
audit_blog.pptaudit_blog.ppt
audit_blog.ppt
 
DPDK & Layer 4 Packet Processing
DPDK & Layer 4 Packet ProcessingDPDK & Layer 4 Packet Processing
DPDK & Layer 4 Packet Processing
 
Oracle Client Failover - Under The Hood
Oracle Client Failover - Under The HoodOracle Client Failover - Under The Hood
Oracle Client Failover - Under The Hood
 
Automated reduction of attack surface using call graph enumeration
Automated reduction of attack surface using call graph enumerationAutomated reduction of attack surface using call graph enumeration
Automated reduction of attack surface using call graph enumeration
 
HandlerSocket plugin for MySQL (English)
HandlerSocket plugin for MySQL (English)HandlerSocket plugin for MySQL (English)
HandlerSocket plugin for MySQL (English)
 
Percona Live UK 2014 Part III
Percona Live UK 2014  Part IIIPercona Live UK 2014  Part III
Percona Live UK 2014 Part III
 
SCADA Strangelove: взлом во имя
SCADA Strangelove: взлом во имяSCADA Strangelove: взлом во имя
SCADA Strangelove: взлом во имя
 
SCADA Strangelove: Hacking in the Name
SCADA Strangelove: Hacking in the NameSCADA Strangelove: Hacking in the Name
SCADA Strangelove: Hacking in the Name
 
Troubleshooting Complex Performance issues - Oracle SEG$ contention
Troubleshooting Complex Performance issues - Oracle SEG$ contentionTroubleshooting Complex Performance issues - Oracle SEG$ contention
Troubleshooting Complex Performance issues - Oracle SEG$ contention
 

More from Peter Haase

Digitalisierung - Datenschutz - IT-Sicherheit
Digitalisierung - Datenschutz - IT-SicherheitDigitalisierung - Datenschutz - IT-Sicherheit
Digitalisierung - Datenschutz - IT-SicherheitPeter Haase
 
EU General Data Protection Regulation
EU General Data Protection RegulationEU General Data Protection Regulation
EU General Data Protection RegulationPeter Haase
 
Sicherheitsprüfung für HP NonStop Systeme
Sicherheitsprüfung für HP NonStop SystemeSicherheitsprüfung für HP NonStop Systeme
Sicherheitsprüfung für HP NonStop SystemePeter Haase
 
Mod06 new development tools
Mod06 new development toolsMod06 new development tools
Mod06 new development toolsPeter Haase
 
Mod05 application migration
Mod05 application migrationMod05 application migration
Mod05 application migrationPeter Haase
 
Mod01 tns e overview
Mod01 tns e overviewMod01 tns e overview
Mod01 tns e overviewPeter Haase
 

More from Peter Haase (8)

Digitalisierung - Datenschutz - IT-Sicherheit
Digitalisierung - Datenschutz - IT-SicherheitDigitalisierung - Datenschutz - IT-Sicherheit
Digitalisierung - Datenschutz - IT-Sicherheit
 
EU General Data Protection Regulation
EU General Data Protection RegulationEU General Data Protection Regulation
EU General Data Protection Regulation
 
Sicherheitsprüfung für HP NonStop Systeme
Sicherheitsprüfung für HP NonStop SystemeSicherheitsprüfung für HP NonStop Systeme
Sicherheitsprüfung für HP NonStop Systeme
 
Mod06 new development tools
Mod06 new development toolsMod06 new development tools
Mod06 new development tools
 
Mod05 application migration
Mod05 application migrationMod05 application migration
Mod05 application migration
 
Mod04 debuggers
Mod04 debuggersMod04 debuggers
Mod04 debuggers
 
Mod02 compilers
Mod02 compilersMod02 compilers
Mod02 compilers
 
Mod01 tns e overview
Mod01 tns e overviewMod01 tns e overview
Mod01 tns e overview
 

Recently uploaded

Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 

Recently uploaded (20)

Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 

Linking and Accelerating Module 3

  • 1. Linking and AcceleratingLinking and Accelerating Module 3
  • 2. eld Basic Operationeld Basic Operation Inputs ◦ Code 800 files ◦ Linkfiles Outputs ◦ Code 800 files ◦ Linkfiles ◦ Loadfile ◦ Dynamic-link library (DLL) 3 - Linking and Accelerating 2
  • 3. Linking a Multi-Module C programLinking a Multi-Module C program ◦ C program  Guardian environment:  eld –o outfile $system.system.ccplmain inmod1 inmod2 -lcrtl –lcre  OSS from Guardian environment:  eld –o outfile –set systype oss $system.system.ccplmain inmod1 inmod2 -l crtl –l cre ◦ C++  Version 3  eld –o outfile inmod1 inmod2 $system.system.ccplmain -lzcppcdll –lzcpp3dll 3 - Linking and Accelerating 3
  • 4. Linking a Multi-Module COBOL ProgramLinking a Multi-Module COBOL Program 3 - Linking and Accelerating 4 1> ecobol /in callprog/callo;symbols 2> ecobol /in mainprog/maino;symbols 3> eld -o myexe callo maino -l cob ecobol ecobol eld mainprog callprog callo maino myexe 1 2 3 zcobdll
  • 5. eld and Symbolseld and Symbols Missing Symbols ◦ Unlike nld, eld knows which procedures exist in system library ◦ By default, eld considers it an error if you refer to a symbol and the symbol does not exist  You can change this with the -unres_symbols option: error, warn, ignore ◦ By default, your program cannot run if it refers to a symbol that does not exist.  You can change this with the –set rld_unresolved option: error, warn, ignore 3 - Linking and Accelerating 5
  • 6. Unresolved References — Default BehaviorUnresolved References — Default Behavior  60> eld -o myexe maino -l cob  eld - TNS/E Native Mode Linker - T0608H01^AAG - 26JAN2007  **** INFORMATIONAL MESSAGE **** [1019]:  Using DLL RUBY.$SYSTEM.zdll002a.zcobdll.  **** INFORMATIONAL MESSAGE **** [1530]:  Using the zimpimp file RUBY.$SYSTEM.SYS00.ZIMPIMP.  **** ERROR **** [1210]:  maino: In function `CONCEPTS-REQ': maino(.text_1+0x1202): unresolved reference to GET-SECOND-NUMBER.  No output file created.  1 error reported.  No warnings reported.  2 informational messages reported. 3 - Linking and Accelerating 6
  • 7. Unresolved References — Optional BehaviorUnresolved References — Optional Behavior  61> eld -o myexe maino -l cob -unres_symbols warn  eld - TNS/E Native Mode Linker - T0608H01^AAG - 26JAN2007  **** INFORMATIONAL MESSAGE **** [1019]:  Using DLL RUBY.$SYSTEM.zdll002a.zcobdll.  **** INFORMATIONAL MESSAGE **** [1530]:  Using the zimpimp file RUBY.$SYSTEM.SYS00.ZIMPIMP.  **** WARNING **** [1254]:  maino: In function `CONCEPTS-REQ': maino(.text_1+0x1202): unresolved reference to GET-SECOND-NUMBER.  Output file: myexe (program file)  Output file timestamp: Aug 5 12:57:03 2008  No errors reported.  1 warning reported.  2 informational messages reported. 3 - Linking and Accelerating 7
  • 8. Unresolved References — Optional BehaviorUnresolved References — Optional Behavior  62> run myexe  *** RLD ERROR ***: Unresolved Text Symbol GET-SECOND-NUMBER in file RUBY.$FC1.TERRYG.MYEXE.  *ERROR* PROCESS_CREATE_ Error: 74  63> 3 - Linking and Accelerating 8
  • 9. Unresolved References — Additional OptionUnresolved References — Additional Option  63> eld -o myexe maino -l cob -unres_symbols warn -set rld_unresolved warn  eld - TNS/E Native Mode Linker - T0608H01^AAG - 26JAN2007  **** INFORMATIONAL MESSAGE **** [1019]:  Using DLL RUBY.$SYSTEM.zdll002a.zcobdll.  **** INFORMATIONAL MESSAGE **** [1530]:  Using the zimpimp file RUBY.$SYSTEM.SYS00.ZIMPIMP.  **** WARNING **** [1254]:  maino: In function `CONCEPTS-REQ': maino(.text_1+0x1202): unresolved reference to GET-SECOND-NUMBER.  Output file: myexe (program file)  Output file timestamp: Aug 5 12:57:50 2008  No errors reported.  1 warning reported.  2 informational messages reported. 3 - Linking and Accelerating 9
  • 10. Unresolved References — Additional OptionUnresolved References — Additional Option  64> run myexe  *** RLD WARNING ***: Unresolved Text Symbol GET-SECOND-NUMBER in file RUBY.$FC1.TERRYG.MYEXE.  Undefined externals  YOU HAVE JUST STARTED THE PROCESS.  ENTER FIRST NUMBER (max. 3 digits) [or 0 to stop]:  ?12  RUBY.$:1:956:4925776 - *** Run-time Error 003 ***  RUBY.$:1:956:4925776 - Instruction failure  RUBY.$:1:956:4925776 - From ---  RUBY.$:1:956:4925776 - UNRESOLVED_PROCEDURE_CALLED_ + 0x2 (SLr)  RUBY.$:1:956:4925776 - CONCEPTS-REQ + 0x1210 (UCr)  ABENDED: 1,956  CPU time: 0:00:00.004  3: Premature process termination with fatal errors or diagnostics  65> 3 - Linking and Accelerating 10
  • 11. Creating a DLLCreating a DLL  eld inmod1 inmod2 -dll  -dllname dllfilename [–set floattype neutral]  [-set cppdialect cppneutral] –export_all 3 - Linking and Accelerating 11
  • 12. Changing Object AttributesChanging Object Attributes Updates existing code 800 file:  eld –change <attribute> <value> <filename> ◦ Example:  eld –change inspect off myprog 3 - Linking and Accelerating 12
  • 13. PublicPublic Libraries (from SRL to DLL)Libraries (from SRL to DLL) ◦ All NonStop H-series libraries are packaged as DLLs rather than SRLs - SRLs are not supported onTNS/E systems ◦ TheTNS/E libraries have different names - Change build procedures that specifically refer to the libraries Library TNS/R TNS/E* COBOL run-time library COBSRL ZCOBDLL Common Run-time Environment (CRE) ZCRESRL ZCREDLL C run-time library ZCRTSRL ZCREDLL C++ VERSION1 ZCPLGSRL Not supported C++ VERSION2 ZCPLSRL + ZRWSLSRL ZCPPCDLL + ZCPP2DLL Tools.H++ 7.0 ZTLHSRL ZTLH7DLL C++ VERSION3 (ANSI/ISO Standard) ZSTDSRL ZCPPCDLL + ZCPP3DLL 133 - Linking and Accelerating
  • 14. Examining an Object FileExamining an Object File ◦ New tool — enoft ◦ Many commands identical to noft  listproc, listsource, listcompilers, listattribute, listoptimize, listunresolved, dumpproc, and so forth ◦ Some commands changed  listsrlinfo -> liblist  set out -> log 3 - Linking and Accelerating 14
  • 15. enoft Examplesenoft Examples  34> enoft  TNS/E Native Object File Tool [T2823 - Jul 9 2008]  enoft> file cobex  Object File: RUBY.$FC1.TGTNSE.cobex  Format Type: ELF64-bit, Big_Endian, IA64, PIC_Program (loadfile)  enoft> listproc *  ******** List of Procedures  UwNdx Proc_Addr Proc_Name  -----------------------------------------------------------------  0 0x700008c0 #import_stubs  1 0x70000a40 CALCULATOR  2 0x700027c0 __INIT__0_CALCULATOR_  3 0x70002900 __INIT__1_CALCULATOR_  4 0x70002a40 GET-SECOND-NUMBER  5 0x700035c0 __INIT__0_GET-SECOND-NUMBER_  6 0x70003700 #end_of_code 3 - Linking and Accelerating 15
  • 16. enoft Examplesenoft Examples  enoft> la  ******** List of Common File Attributes  Name: RUBY.$FC1.TGTNSE.cobex  File Format: ELF64-bit, Big_Endian, IA64  Type: PIC_Program (loadfile)  Debugging Symbols: Yes  Float-Point Type: NEUTRAL_FLOAT  -----------------------------------------------------------------  Float-overrule: No  System Type: Guardian  Creation Timestamp: 2008-11-11 08:57:35  Process Subtype: 0  Highrequestors: Yes  Runnamed: No  Highpin: Yes  Saveabend: No  PRIV or CALLABLE Main: No  CALLABLE Procs: No  Default Debugger: Visual Inspect  Languages and Dialects: Asm Cobol Ptal C  Instrumented File: No 3 - Linking and Accelerating 16
  • 17. enoft Examplesenoft Examples  enoft> ls * detail  ******** List of Source Files (Compilation Units)  Source: 0 RUBY.$FC1.TGTNSE.MAINCOB  Compiler: Cobol85  Descript: HP TNS/E COBOL T0356H01_01AUG2008_20JUL2008_AAU + T1246H01_01AUG2008_1  8JUL2008_PRODUCT_AAM_GRD_E_10_1  Compiled: 2008-11-11 08:57:29 (TimeStamp at Compile site)  File: 1 RUBY.$FC1.TGTNSE.MAINCOB  Time: 2008-11-11 08:56:50  Size: 1718  Source: 1 RUBY.$FC1.TGTNSE.CALLCOB  Compiler: Cobol85  Descript: HP TNS/E COBOL T0356H01_01AUG2008_20JUL2008_AAU + T1246H01_01AUG2008_1  8JUL2008_PRODUCT_AAM_GRD_E_10_1  Compiled: 2008-11-11 08:57:19 (TimeStamp at Compile site)  File: 1 RUBY.$FC1.TGTNSE.CALLCOB  Time: 2008-11-11 08:57:11  Size: 1154 3 - Linking and Accelerating 17
  • 18. enoft Examplesenoft Examples  enoft> lu *  ******** List of Unresolved (undefined) Symbols  SymNdx Symbol_Name  -----------------------------------------------------------------  30 COBLIB_ACCEPT_  31 _SharedMilli_MOVB_FWD_NOOVERLAP  32 COBLIB_INITIALIZER_  35 COBLIB_ABEND_  37 COBLIB_DISPLAY_  38 COBLIB_INITIALIZATION_COMPLETE_  43 COBLIB_ERROR_  48 _SharedMilli_CQA  49 COBLIB_INIT_PROG_  51 COBLIB_STOP_  52 COBLIB_COMP_ALL_1_  Number of symbols matching scope: 11 3 - Linking and Accelerating 18
  • 19. Object Code Accelerator (OCA)Object Code Accelerator (OCA) ◦ Operates on Guardian-based code 100 files  May already be TNS/R accelerated ◦ Adds Itanium Processor Family (IPF) instructions  Adds calls to millicode routines ◦ Uses symbols region, if present  Produces more efficient code  Can strip after acceleration ◦ Controllable by Binder options ◦ Use SQLCOMP after acceleration 3 - Linking and Accelerating 19
  • 20. OCA Items to Watch forOCA Items to Watch for ◦ Disabled overflow traps  Should test for overflow using $OVERFLOW or ONSIZE ◦ Trap handlers  Register contents are not precise ◦ P-relative addresses  Cannot be passed as parameters in UC ◦ References to system global data  Instruction Failure exception ◦ Odd-byte references  Various behaviors ◦ Single-word shift statements with dynamic shift count  Shift count > 31 gives undefined result ◦ May affect debugging ability 3 - Linking and Accelerating 20
  • 21. Object Code Accelerator — ExampleObject Code Accelerator — Example 3 - Linking and Accelerating 21 6> oca OCA - T0448H01 - 01MAY05 - (May 28 2008 15:55:33) Copyright Hewlett-Packard, 1988-2005 OCA Syntax Summary oca [/run-options/] input-file [; option-list ] input-file is the name of a fully bound, runnable, type-100 TNS code file. option-list is one or more command line options: [ { SL } { UL }
  • 22. Object Code Accelerator — ExampleObject Code Accelerator — Example  TALEX 100 15496 11NOV2008 7:57 34,26 OOOO 14 14  26> oca talex  OCA - T0448H01 - 01MAY05 - (May 28 2008 15:55:33)  Copyright Hewlett-Packard, 1988-2005  Option summary: No options  262 TNS instruction words; 524 bytes  445 Itanium bundles; 7120 bytes  13.59 inline code expansion factor  1.70 Itanium bundles per TNS instruction  TNS file name: talex  Binder region present  Symbols region present  Mips region not present  Accelerated as User Code segment 0 through 0  0 Errors were detected  0 Warnings were issued  Accelerated file name: talex  Accelerated for TNS/E on Nov 11 2008 07:58:15  Acceleration completed on Nov 11 2008 07:58:15  CPU Time 0:00:00.050  TALEX 100 30720 11NOV2008 7:58 34,26 OOOO 56 56 3 - Linking and Accelerating 22
  • 23. Determining If Program AcceleratedDetermining If Program Accelerated  23> fileinfo obj*  $FC1.TERRYG  CODE EOF LAST MODIFIED OWNER RWEP  OBJC 100 12282 08AUG2008 12:32 34,26 OOOO  OBJCE 100 28672 08AUG2008 12:34 34,26 OOOO  OBJCR 100 24576 08AUG2008 12:33 34,26 OOOO  OBJCRE 100 40960 08AUG2008 12:35 34,26 OOOO  24> vproc objc  VPROC - T9617H01 - (01 OCT 2004) SYSTEM RUBY Date 08 AUG 2008, 12:37:03  $FC1.TERRYG.OBJC  Binder timestamp: 08AUG2008 12:32:44  Version procedure: >> NO T9xxx PROC <<  Target CPU: UNSPECIFIED 3 - Linking and Accelerating 23 Not accelerated
  • 24. Determining If Program AcceleratedDetermining If Program Accelerated  25> vproc objce  VPROC - T9617H01 - (01 OCT 2004) SYSTEM RUBY Date 08 AUG 2008, 12:37:27  $FC1.TERRYG.OBJCE  Binder timestamp: 08AUG2008 12:32:44  Version procedure: >> NO T9xxx PROC <<  Target CPU: UNSPECIFIED  OCA timestamp: 08AUG2008 12:34:51  26> vproc objcre  VPROC - T9617H01 - (01 OCT 2004) SYSTEM RUBY Date 08 AUG 2008, 12:38:10  $FC1.TERRYG.OBJCRE  Binder timestamp: 08AUG2008 12:32:44  Version procedure: >> NO T9xxx PROC <<  Target CPU: UNSPECIFIED  AXCEL timestamp: 08AUG2008 12:33:28  OCA timestamp: 08AUG2008 12:35:15 3 - Linking and Accelerating 24 TNS/R accelerated TNS/E accelerated TNS/E accelerated
  • 25. BINDER – Disabling AccelerationBINDER – Disabling Acceleration ◦ Display current setting:  SHOW OCA ENABLE FROM <file-name> ◦ Control whether program can be accelerated:  CHANGE OCA ENABLE ON|OFF IN <file-name>  6> bind  BINDER - OBJECT FILE BINDER - T9621H01 SYSTEM RUBY  @change oca enable off in objc  @exit  7> oca objc output_file objce  OCA - T0448H01 - 01MAY05 - (Mar 19 2007 14:40:27)  *** Error 9:Translation of file objc is inhibited. ◦ Strip accelerated region:  STRIP <file-name>, IPF 3 - Linking and Accelerating 25
  • 26. TNSVUTNSVU —— Accelerated Object ExaminerAccelerated Object Examiner 3 - Linking and Accelerating 26 28> tnsvu talex TNSVU - May 28 2008 16:13:21 Copyright Hewlett-Packard, 2000-2005 Viewing on Tue Nov 11 08:01:05 2008 Opened file talex talex>
  • 27. TNSVU HelpTNSVU Help 3 - Linking and Accelerating 27 talex> help TNSVU Command Summary Commands are not case-sensitive; file and procedure names are. More information is available using "HELP command-name". LOG - Opens a text file in which TNSVU records all text LOGAPPEND written to the screen (including typed commands). ENDLOG - Closes a log file. OPEN - Opens a type-100 TNS object file for viewing. FILEINFO - Displays general information about the open file. PROCINFO - Displays general information about a procedure. PROCS - Displays the names of procedures in the object file LOCAL - Displays the names of local millicode routines MILLICODE - Displays the names of emulation and shared millicode routines. EXTERNALS - Displays the names of external (system or user) library routines. ICODE - Displays Itanium and TNS instructions. HISTORY - Displays previously-issued commands.
  • 28. TNSVU HelpTNSVU Help  TNSHEADER - Displays the TNS file header.  OCAHEADER - Displays the Itanium region header.  AXCELHEADER - Displays the Axcel region header.  DUMPPMAPS - Displays Pmaps.  OPTIONS - Displays translation options.  TNStoIPF - Converts TNS address to Itanium.  IPFtoTNS - Converts Itanium address to TNS.  XEP - Displays proc targets of XEP entries.  VERSION - Displays the OCAVersion field of the OCAHeader.  EXACTPTS - Displays the exact points in the given procedure.  OBEY - Reads TNSVU commands from the given text file.  LIMIT - Overrides limit on # of TNS instrs printed by 'ICODE procname'.  COMPARE - Compare IPF code from the current file with the given file.  LINENUMTOTNS - Converts a source line number to a TNS code location.  TNSTOLINENUM - Converts a TNS code location to a source line number.  SOURCESUBVOL - Display source from files in the given subvol.  SOURCE OFF - Turn off source code display.  SOURCE ON - Turn on source code display (on by default). 3 - Linking and Accelerating 28
  • 29. TNSVU Example — FILEINFOTNSVU Example — FILEINFO 3 - Linking and Accelerating 29 talex> fileinfo Examining file talex Occupies code segment 0 through 0 in User Code space 0x1bd Itanium bundles Translated on Nov 11 2008 07:58:15 using an OCA built on May 28 2008 15:55:33 Accelerator region: 0x0 for 0x0 bytes Itanium region: 0x4000 for 0x3008 bytes Symbols region: 0x2000 for 0xb12 bytes Binder region: 0x2c00 for 0x1088 bytes talex>
  • 30. TNSVU Example — PROCSTNSVU Example — PROCS 3 - Linking and Accelerating 30 talex> procs Procedures: DISPLAY_INITIAL_REQ_MESSAGE CSEG 0 PEP# 02 TNS Base: 05 TNS Size: 071 TNS Entry: 05 Itanium code: 0x70420480 Itanium bundles: 0x3a Itanium entry: 0x70420480 Implemented in TAL in source file RUBY.$FC1.TGTNSE.MAINP line 36.0 to 44.0 GET_SECOND_NUMBER CSEG 0 PEP# 04 TNS Base: 0345 TNS Size: 0154 TNS Entry: 0345 Itanium code: 0x70421500 Itanium bundles: 0x6d Itanium entry: 0x70421500 Implemented in TAL in source file RUBY.$FC1.TGTNSE.CALLP line 10.0 to 27.0 MAIN_PROG CSEG 0 PEP# 03 TNS Base: 076 TNS Size: 0247 TNS Entry: 076 Itanium code: 0x70420820 Itanium bundles: 0xce Itanium entry: 0x70420820 Implemented in TAL in source file RUBY.$FC1.TGTNSE.MAINP line 46.0 to 84.0 talex>
  • 31. TNSVU Example — LOCALTNSVU Example — LOCAL 3 - Linking and Accelerating 31 talex> local Local millicode routines: Entry: 0x70420090 NumBundles: 0x4 0 _LocalMilli_RPMispredicted Entry: 0x704200d0 NumBundles: 0x4 0 _LocalMilli_ToOCI Entry: 0x70420110 NumBundles: 0xe 0 _LocalMilli_EXIT Entry: 0x704201f0 NumBundles: 0x6 0 _LocalMilli_MapTNStoIPF_Calc Entry: 0x70420250 NumBundles: 0x8 0 _LocalMilli_MapTNStoIPF Entry: 0x704202d0 NumBundles: 0x4 0 _LocalMilli_BTST Entry: 0x70420310 NumBundles: 0x2 0 _LocalMilli_TNSArithOverflow Entry: 0x70420330 NumBundles: 0x4 0 _LocalMilli_64bitAddArithOv Entry: 0x70420370 NumBundles: 0x8 0 _LocalMilli_QMPY Entry: 0x70420000 NumBundles: 0x3 0 _LocalMilli_OCATraceEnter Entry: 0x70420030 NumBundles: 0x3 0 _LocalMilli_OCATraceExit Entry: 0x70420060 NumBundles: 0x3 0 _LocalMilli_OCATracePmapJump Entry: 0x704203f0 NumBundles: 0x9 0 _LocalMilli_CallSharedMilli talex>
  • 32. TNSVU Example — EXTERNALSTNSVU Example — EXTERNALS 3 - Linking and Accelerating 32 talex> externals Library procedures external to this code space WRITEREAD WRITE STOP PROCESS_GETINFO_ PROCESS_DEBUG_ NUMOUT NUMIN INITIALIZER FILE_OPEN_ FILE_GETINFO_ FILE_CLOSE_ talex>
  • 33. TNSVU Example — ICODETNSVU Example — ICODE 3 - Linking and Accelerating 33 icode DISPLAY_INITIAL_REQ_MESSAGE FC> Procedure DISPLAY_INITIAL_REQ_MESSAGE (from source file RUBY. $FC1.TGTNSE.MAINP) Itanium virtual address 0x70420480 for 0x3a Itanium bundles CSEG 0 TNS offset 05 for 071 TNS instructions ... 37.0 write_count := @p '-' @s; 016: 0x70420570: LADR G+0106,I { LADR G+0105,I + ld2 r46 = [r35] LSUB ld2 r45 = [r34] STOR G+0102 nop.i 00h ;; } { sub r45 = r45, r46 adds r46 = 01ah, r0 nop.i 00h ;; } { nop.m 00h zxt2 r45 = r45 ;; nop.i 00h }
  • 35. 3 - Linking and Accelerating 35

Editor's Notes

  1. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  2. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  3. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  4. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  5. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  6. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  7. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  8. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  9. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  10. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  11. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  12. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  13. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  14. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  15. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  16. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  17. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  18. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  19. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  20. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  21. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  22. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  23. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  24. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  25. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  26. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  27. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  28. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  29. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  30. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  31. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  32. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  33. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  34. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating
  35. NonStop H-Series and J-Series Operating Systems Application Migration Linking and Accelerating Applications 3 - Linking and Accelerating