VirtualBox

source: vbox/trunk/include/iprt/asmdefs.mac@ 41709

Last change on this file since 41709 was 41648, checked in by vboxsync, 13 years ago

asmdefs.mac: Make _EndProc hidden.

  • Property eol-style set to native
File size: 17.7 KB
Line 
1;; @file
2; IPRT - Global YASM/NASM macros
3;
4
5;
6; Copyright (C) 2006-2007 Oracle Corporation
7;
8; This file is part of VirtualBox Open Source Edition (OSE), as
9; available from http://www.virtualbox.org. This file is free software;
10; you can redistribute it and/or modify it under the terms of the GNU
11; General Public License (GPL) as published by the Free Software
12; Foundation, in version 2 as it comes in the "COPYING" file of the
13; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15;
16; The contents of this file may alternatively be used under the terms
17; of the Common Development and Distribution License Version 1.0
18; (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19; VirtualBox OSE distribution, in which case the provisions of the
20; CDDL are applicable instead of those of the GPL.
21;
22; You may elect to license modified versions of this file under the
23; terms and conditions of either the GPL or the CDDL or both.
24;
25
26%ifndef ___iprt_asmdefs_mac
27%define ___iprt_asmdefs_mac
28
29
30;; @defgroup grp_rt_cdefs_size Size Constants
31; (Of course, these are binary computer terms, not SI.)
32; @{
33;; 1 K (Kilo) (1 024).
34%define _1K 000000400h
35;; 4 K (Kilo) (4 096).
36%define _4K 000001000h
37;; 32 K (Kilo) (32 678).
38%define _32K 000008000h
39;; 64 K (Kilo) (65 536).
40%define _64K 000010000h
41;; 128 K (Kilo) (131 072).
42%define _128K 000020000h
43;; 256 K (Kilo) (262 144).
44%define _256K 000040000h
45;; 512 K (Kilo) (524 288).
46%define _512K 000080000h
47;; 1 M (Mega) (1 048 576).
48%define _1M 000100000h
49;; 2 M (Mega) (2 097 152).
50%define _2M 000200000h
51;; 4 M (Mega) (4 194 304).
52%define _4M 000400000h
53;; 1 G (Giga) (1 073 741 824).
54%define _1G 040000000h
55;; 2 G (Giga) (2 147 483 648).
56%define _2G 00000000080000000h
57;; 4 G (Giga) (4 294 967 296).
58%define _4G 00000000100000000h
59;; 1 T (Tera) (1 099 511 627 776).
60%define _1T 00000010000000000h
61;; 1 P (Peta) (1 125 899 906 842 624).
62%define _1P 00004000000000000h
63;; 1 E (Exa) (1 152 921 504 606 846 976).
64%define _1E 01000000000000000h
65;; 2 E (Exa) (2 305 843 009 213 693 952).
66%define _2E 02000000000000000h
67;; @}
68
69
70;;
71; Make the mask for the given bit.
72%define RT_BIT(bit) (1 << bit)
73
74;;
75; Align code, pad with INT3.
76%define ALIGNCODE(alignment) align alignment, db 0cch
77
78;;
79; Align data, pad with ZEROs.
80%define ALIGNDATA(alignment) align alignment, db 0
81
82;;
83; Align BSS, pad with ZEROs.
84%define ALIGNBSS(alignment) align alignment, resb 1
85
86;;
87; NAME_OVERLOAD can be defined by a .asm module to modify all the
88; names created using the name macros in this files.
89; This is handy when you've got some kind of template code.
90%ifndef NAME_OVERLOAD
91 %define NAME_OVERLOAD(name) name
92%endif
93
94;;
95; Mangles the given name so it can be referenced using DECLASM() in the
96; C/C++ world.
97%ifdef RT_ARCH_X86
98 %ifdef RT_OS_OS2
99 %define NAME(name) _ %+ NAME_OVERLOAD(name)
100 %endif
101 %ifdef RT_OS_WINDOWS
102 %define NAME(name) _ %+ NAME_OVERLOAD(name)
103 %endif
104%endif
105%ifdef RT_OS_DARWIN
106 %define NAME(name) _ %+ NAME_OVERLOAD(name)
107%endif
108%ifndef NAME
109 %define NAME(name) NAME_OVERLOAD(name)
110%endif
111
112;;
113; Mangles the given C name so it will _import_ the right symbol.
114%ifdef ASM_FORMAT_PE
115%define IMPNAME(name) __imp_ %+ NAME(name)
116%else
117%define IMPNAME(name) NAME(name)
118%endif
119
120;;
121; Gets the pointer to an imported object.
122%ifdef ASM_FORMAT_PE
123 %ifdef RT_ARCH_AMD64
124 %define IMP(name) qword [IMPNAME(name) wrt rip]
125 %else
126 %define IMP(name) dword [IMPNAME(name)]
127 %endif
128%else
129 %define IMP(name) IMPNAME(name)
130%endif
131
132;;
133; Gets the pointer to an imported object, version 2.
134%ifdef ASM_FORMAT_PE
135 %ifdef RT_ARCH_AMD64
136 %define IMP2(name) qword [IMPNAME(name) wrt rip]
137 %else
138 %define IMP2(name) dword [IMPNAME(name)]
139 %endif
140%else
141 %ifdef RT_ARCH_AMD64
142 %define IMP2(name) IMPNAME(name) wrt rip
143 %else
144 %define IMP2(name) IMPNAME(name)
145 %endif
146%endif
147
148
149
150;;
151; Global marker which is DECLASM() compatible.
152%macro GLOBALNAME 1,
153%ifndef ASM_FORMAT_BIN
154global NAME(%1)
155%endif
156NAME(%1):
157%endmacro
158
159;;
160; Global exported marker which is DECLASM() compatible.
161%macro EXPORTEDNAME 1,
162 %ifdef ASM_FORMAT_PE
163 export %1=NAME(%1)
164 %endif
165 %ifdef __NASM__
166 %ifdef ASM_FORMAT_OMF
167 export NAME(%1) NAME(%1)
168 %endif
169%endif
170GLOBALNAME %1
171%endmacro
172
173;;
174; Global marker which is DECLASM() compatible.
175%macro GLOBALNAME_EX 2,
176%ifndef ASM_FORMAT_BIN
177 %ifdef ASM_FORMAT_ELF
178global NAME(%1):%2
179 %else
180global NAME(%1)
181 %endif
182%endif
183NAME(%1):
184%endmacro
185
186;;
187; Global exported marker which is DECLASM() compatible.
188%macro EXPORTEDNAME_EX 2,
189 %ifdef ASM_FORMAT_PE
190 export %1=NAME(%1)
191 %endif
192 %ifdef __NASM__
193 %ifdef ASM_FORMAT_OMF
194 export NAME(%1) NAME(%1)
195 %endif
196%endif
197GLOBALNAME_EX %1, %2
198%endmacro
199
200;;
201; Begins a C callable procedure.
202%macro BEGINPROC 1
203GLOBALNAME_EX %1, function hidden
204%endmacro
205
206;;
207; Begins a C callable exported procedure.
208%macro BEGINPROC_EXPORTED 1
209EXPORTEDNAME_EX %1, function
210%endmacro
211
212;;
213; Ends a C callable procedure.
214%macro ENDPROC 1
215GLOBALNAME_EX %1_EndProc, hidden
216%ifdef ASM_FORMAT_ELF
217size NAME(%1) NAME(%1_EndProc) - NAME(%1)
218%endif
219 db 0xCC, 0xCC, 0xCC, 0xCC
220%endmacro
221
222
223;
224; Do OMF and Mach-O/Yasm segment definitions
225;
226; Both format requires this to get the segment order right, in the Mach-O/Yasm case
227; it's only to make sure the .bss section ends up last (it's not declared here).
228;
229%ifdef ASM_FORMAT_OMF
230
231 ; 16-bit segments first (OMF / OS/2 specific).
232 %ifdef RT_INCL_16BIT_SEGMENTS
233 segment DATA16 public CLASS=FAR_DATA align=16 use16
234 segment DATA16_INIT public CLASS=FAR_DATA align=16 use16
235 group DGROUP16 DATA16 DATA16_INIT
236
237 ;;
238 ; Begins 16-bit data
239 %macro BEGINDATA16 0
240 segment DATA16
241 %endmacro
242
243 ;;
244 ; Begins 16-bit init data
245 %macro BEGINDATA16INIT 0
246 segment DATA16_INIT
247 %endmacro
248
249 segment CODE16 public CLASS=FAR_CODE align=16 use16
250 segment CODE16_INIT public CLASS=FAR_CODE align=16 use16
251 group CGROUP16 CODE16 CODE16_INIT
252
253 ;;
254 ; Begins 16-bit code
255 %macro BEGINCODE16 0
256 segment CODE16
257 %endmacro
258
259 ;;
260 ; Begins 16-bit init code
261 %macro BEGINCODE16INIT 0
262 segment CODE16_INIT
263 %endmacro
264
265 %endif
266
267 ; 32-bit segments.
268 segment TEXT32 public CLASS=CODE align=16 use32 flat
269 segment DATA32 public CLASS=DATA align=16 use32 flat
270 segment BSS32 public CLASS=BSS align=16 use32 flat
271
272 ; Make the TEXT32 segment default.
273 segment TEXT32
274%endif
275
276%ifdef ASM_FORMAT_MACHO
277 %ifdef __YASM__
278 [section .text]
279 [section .data]
280 %endif
281%endif
282
283
284;;
285; Begins code
286%ifdef ASM_FORMAT_OMF
287 %macro BEGINCODE 0
288 segment TEXT32
289 %endmacro
290%else
291%macro BEGINCODE 0
292[section .text]
293%endmacro
294%endif
295
296;;
297; Begins constant (read-only) data
298;
299; @remarks This is mapped to the CODE section/segment when there isn't
300; any dedicated const section/segment. (There is code that
301; assumes this, so don't try change it.)
302%ifdef ASM_FORMAT_OMF
303 %macro BEGINCONST 0
304 segment TEXT32
305 %endmacro
306%else
307 %macro BEGINCONST 0
308 %ifdef ASM_FORMAT_MACHO ;; @todo check the other guys too.
309 [section .rodata]
310 %else
311 [section .text]
312 %endif
313 %endmacro
314%endif
315
316;;
317; Begins initialized data
318%ifdef ASM_FORMAT_OMF
319 %macro BEGINDATA 0
320 segment DATA32
321 %endmacro
322%else
323%macro BEGINDATA 0
324[section .data]
325%endmacro
326%endif
327
328;;
329; Begins uninitialized data
330%ifdef ASM_FORMAT_OMF
331 %macro BEGINBSS 0
332 segment BSS32
333 %endmacro
334%else
335%macro BEGINBSS 0
336[section .bss]
337%endmacro
338%endif
339
340
341
342;; @def ARCH_BITS
343; Defines the bit count of the current context.
344%ifndef ARCH_BITS
345 %ifdef RT_ARCH_AMD64
346 %define ARCH_BITS 64
347 %else
348 %define ARCH_BITS 32
349 %endif
350%endif
351
352;; @def HC_ARCH_BITS
353; Defines the host architechture bit count.
354%ifndef HC_ARCH_BITS
355 %ifndef IN_RC
356 %define HC_ARCH_BITS ARCH_BITS
357 %else
358 %define HC_ARCH_BITS 32
359 %endif
360%endif
361
362;; @def R3_ARCH_BITS
363; Defines the host ring-3 architechture bit count.
364%ifndef R3_ARCH_BITS
365 %ifdef IN_RING3
366 %define R3_ARCH_BITS ARCH_BITS
367 %else
368 %define R3_ARCH_BITS HC_ARCH_BITS
369 %endif
370%endif
371
372;; @def R0_ARCH_BITS
373; Defines the host ring-0 architechture bit count.
374%ifndef R0_ARCH_BITS
375 %ifdef IN_RING0
376 %define R0_ARCH_BITS ARCH_BITS
377 %else
378 %define R0_ARCH_BITS HC_ARCH_BITS
379 %endif
380%endif
381
382;; @def GC_ARCH_BITS
383; Defines the guest architechture bit count.
384%ifndef GC_ARCH_BITS
385 %ifdef IN_RC
386 %define GC_ARCH_BITS ARCH_BITS
387 %else
388 %define GC_ARCH_BITS 32
389 %endif
390%endif
391
392
393
394;; @def RTHCPTR_DEF
395; The pesudo-instruction used to declare an initialized pointer variable in the host context.
396%if HC_ARCH_BITS == 64
397 %define RTHCPTR_DEF dq
398%else
399 %define RTHCPTR_DEF dd
400%endif
401
402;; @def RTHCPTR_RES
403; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
404; variable of the host context.
405%if HC_ARCH_BITS == 64
406 %define RTHCPTR_RES resq
407%else
408 %define RTHCPTR_RES resd
409%endif
410
411;; @def RTHCPTR_PRE
412; The memory operand prefix used for a pointer in the host context.
413%if HC_ARCH_BITS == 64
414 %define RTHCPTR_PRE qword
415%else
416 %define RTHCPTR_PRE dword
417%endif
418
419;; @def RTHCPTR_CB
420; The size in bytes of a pointer in the host context.
421%if HC_ARCH_BITS == 64
422 %define RTHCPTR_CB 8
423%else
424 %define RTHCPTR_CB 4
425%endif
426
427
428
429;; @def RTR0PTR_DEF
430; The pesudo-instruction used to declare an initialized pointer variable in the ring-0 host context.
431%if R0_ARCH_BITS == 64
432 %define RTR0PTR_DEF dq
433%else
434 %define RTR0PTR_DEF dd
435%endif
436
437;; @def RTR0PTR_RES
438; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
439; variable of the ring-0 host context.
440%if R0_ARCH_BITS == 64
441 %define RTR0PTR_RES resq
442%else
443 %define RTR0PTR_RES resd
444%endif
445
446;; @def RTR0PTR_PRE
447; The memory operand prefix used for a pointer in the ring-0 host context.
448%if R0_ARCH_BITS == 64
449 %define RTR0PTR_PRE qword
450%else
451 %define RTR0PTR_PRE dword
452%endif
453
454;; @def RTR0PTR_CB
455; The size in bytes of a pointer in the ring-0 host context.
456%if R0_ARCH_BITS == 64
457 %define RTR0PTR_CB 8
458%else
459 %define RTR0PTR_CB 4
460%endif
461
462
463
464;; @def RTR3PTR_DEF
465; The pesudo-instruction used to declare an initialized pointer variable in the ring-3 host context.
466%if R3_ARCH_BITS == 64
467 %define RTR3PTR_DEF dq
468%else
469 %define RTR3PTR_DEF dd
470%endif
471
472;; @def RTR3PTR_RES
473; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
474; variable of the ring-3 host context.
475%if R3_ARCH_BITS == 64
476 %define RTR3PTR_RES resq
477%else
478 %define RTR3PTR_RES resd
479%endif
480
481;; @def RTR3PTR_PRE
482; The memory operand prefix used for a pointer in the ring-3 host context.
483%if R3_ARCH_BITS == 64
484 %define RTR3PTR_PRE qword
485%else
486 %define RTR3PTR_PRE dword
487%endif
488
489;; @def RTR3PTR_CB
490; The size in bytes of a pointer in the ring-3 host context.
491%if R3_ARCH_BITS == 64
492 %define RTR3PTR_CB 8
493%else
494 %define RTR3PTR_CB 4
495%endif
496
497
498
499;; @def RTGCPTR_DEF
500; The pesudo-instruction used to declare an initialized pointer variable in the guest context.
501%if GC_ARCH_BITS == 64
502 %define RTGCPTR_DEF dq
503%else
504 %define RTGCPTR_DEF dd
505%endif
506
507;; @def RTGCPTR_RES
508; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
509; variable of the guest context.
510%if GC_ARCH_BITS == 64
511 %define RTGCPTR_RES resq
512%else
513 %define RTGCPTR_RES resd
514%endif
515
516%define RTGCPTR32_RES resd
517%define RTGCPTR64_RES resq
518
519;; @def RTGCPTR_PRE
520; The memory operand prefix used for a pointer in the guest context.
521%if GC_ARCH_BITS == 64
522 %define RTGCPTR_PRE qword
523%else
524 %define RTGCPTR_PRE dword
525%endif
526
527;; @def RTGCPTR_CB
528; The size in bytes of a pointer in the guest context.
529%if GC_ARCH_BITS == 64
530 %define RTGCPTR_CB 8
531%else
532 %define RTGCPTR_CB 4
533%endif
534
535
536;; @def RTRCPTR_DEF
537; The pesudo-instruction used to declare an initialized pointer variable in the raw mode context.
538%define RTRCPTR_DEF dd
539
540;; @def RTRCPTR_RES
541; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
542; variable of the raw mode context.
543%define RTRCPTR_RES resd
544
545;; @def RTRCPTR_PRE
546; The memory operand prefix used for a pointer in the raw mode context.
547%define RTRCPTR_PRE dword
548
549;; @def RTRCPTR_CB
550; The size in bytes of a pointer in the raw mode context.
551%define RTRCPTR_CB 4
552
553
554;; @def RT_CCPTR_DEF
555; The pesudo-instruction used to declare an initialized pointer variable in the current context.
556
557;; @def RT_CCPTR_RES
558; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
559; variable of the current context.
560
561;; @def RT_CCPTR_PRE
562; The memory operand prefix used for a pointer in the current context.
563
564;; @def RT_CCPTR_CB
565; The size in bytes of a pointer in the current context.
566
567%ifdef IN_RC
568 %define RTCCPTR_DEF RTRCPTR_DEF
569 %define RTCCPTR_RES RTRCPTR_RES
570 %define RTCCPTR_PRE RTRCPTR_PRE
571 %define RTCCPTR_CB RTRCPTR_CB
572%else
573 %ifdef IN_RING0
574 %define RTCCPTR_DEF RTR0PTR_DEF
575 %define RTCCPTR_RES RTR0PTR_RES
576 %define RTCCPTR_PRE RTR0PTR_PRE
577 %define RTCCPTR_CB RTR0PTR_CB
578 %else
579 %define RTCCPTR_DEF RTR3PTR_DEF
580 %define RTCCPTR_RES RTR3PTR_RES
581 %define RTCCPTR_PRE RTR3PTR_PRE
582 %define RTCCPTR_CB RTR3PTR_CB
583 %endif
584%endif
585
586
587
588;; @def RTHCPHYS_DEF
589; The pesudo-instruction used to declare an initialized host physical address.
590%define RTHCPHYS_DEF dq
591
592;; @def RTHCPTR_RES
593; The pesudo-instruction used to declare (=reserve space for) an uninitialized
594; host physical address variable
595%define RTHCPHYS_RES resq
596
597;; @def RTHCPTR_PRE
598; The memory operand prefix used for a host physical address.
599%define RTHCPHYS_PRE qword
600
601;; @def RTHCPHYS_CB
602; The size in bytes of a host physical address.
603%define RTHCPHYS_CB 8
604
605
606
607;; @def RTGCPHYS_DEF
608; The pesudo-instruction used to declare an initialized guest physical address.
609%define RTGCPHYS_DEF dq
610
611;; @def RTGCPHYS_RES
612; The pesudo-instruction used to declare (=reserve space for) an uninitialized
613; guest physical address variable
614%define RTGCPHYS_RES resq
615
616;; @def RTGCPTR_PRE
617; The memory operand prefix used for a guest physical address.
618%define RTGCPHYS_PRE qword
619
620;; @def RTGCPHYS_CB
621; The size in bytes of a guest physical address.
622%define RTGCPHYS_CB 8
623
624
625
626;;
627; The size of the long double C/C++ type.
628; On 32-bit Darwin this is 16 bytes, on L4, Linux, OS/2 and Windows
629; it's 12 bytes.
630; @todo figure out what 64-bit Windows does (I don't recall right now).
631%ifdef RT_ARCH_X86
632 %ifdef RT_OS_DARWIN
633 %define RTLRD_CB 16
634 %else
635 %define RTLRD_CB 12
636 %endif
637%else
638 %define RTLRD_CB 16
639%endif
640
641
642
643;; @def ASM_CALL64_GCC
644; Indicates that we're using the GCC 64-bit calling convention.
645; @see @ref sec_vboxrem_amd64_compare (in VBoxREMWrapper.cpp) for an ABI description.
646
647;; @def ASM_CALL64_MSC
648; Indicates that we're using the Microsoft 64-bit calling convention (fastcall on steroids).
649; @see @ref sec_vboxrem_amd64_compare (in VBoxREMWrapper.cpp) for an ABI description.
650
651; Note: On X86 we're using cdecl unconditionally. There is not yet any common
652; calling convention on AMD64, that's why we need to support two different ones.)
653
654%ifdef RT_ARCH_AMD64
655 %ifndef ASM_CALL64_GCC
656 %ifndef ASM_CALL64_MSC
657 ; define it based on the object format.
658 %ifdef ASM_FORMAT_PE
659 %define ASM_CALL64_MSC
660 %else
661 %define ASM_CALL64_GCC
662 %endif
663 %endif
664 %else
665 ; sanity check.
666 %ifdef ASM_CALL64_MSC
667 %error "Only one of the ASM_CALL64_* defines should be defined!"
668 %endif
669 %endif
670%endif
671
672
673;; @def RT_NOCRT
674; Symbol name wrapper for the No-CRT bits.
675;
676; In order to coexist in the same process as other CRTs, we need to
677; decorate the symbols such that they don't conflict the ones in the
678; other CRTs. The result of such conflicts / duplicate symbols can
679; confuse the dynamic loader on unix like systems.
680;
681; @remark Always feed the name to this macro first and then pass the result
682; on to the next *NAME* macro.
683;
684%ifndef RT_WITHOUT_NOCRT_WRAPPERS
685 %define RT_NOCRT(name) nocrt_ %+ name
686%else
687 %define RT_NOCRT(name) name
688%endif
689
690;; @def RT_NOCRT_BEGINPROC
691; Starts a NOCRT procedure, taking care of name wrapping and aliasing.
692;
693; Aliasing (weak ones, if supported) will be created when RT_WITH_NOCRT_ALIASES
694; is defined and RT_WITHOUT_NOCRT_WRAPPERS isn't.
695;
696%macro RT_NOCRT_BEGINPROC 1
697%ifdef RT_WITH_NOCRT_ALIASES
698BEGINPROC RT_NOCRT(%1)
699%ifdef ASM_FORMAT_ELF
700global NAME(%1)
701weak NAME(%1)
702NAME(%1):
703%else
704GLOBALNAME %1
705%endif
706%else ; !RT_WITH_NOCRT_ALIASES
707BEGINPROC RT_NOCRT(%1)
708%endif ; !RT_WITH_NOCRT_ALIASES
709%endmacro ; RT_NOCRT_BEGINPROC
710
711%ifdef RT_WITH_NOCRT_ALIASES
712 %ifdef RT_WITHOUT_NOCRT_WRAPPERS
713 %error "RT_WITH_NOCRT_ALIASES and RT_WITHOUT_NOCRT_WRAPPERS doesn't mix."
714 %endif
715%endif
716
717
718
719;; @def xS
720; The stack unit size / The register unit size.
721
722;; @def xSP
723; The stack pointer register (RSP or ESP).
724
725;; @def xBP
726; The base pointer register (RBP or ESP).
727
728;; @def xAX
729; RAX or EAX depending on context.
730
731;; @def xBX
732; RBX or EBX depending on context.
733
734;; @def xCX
735; RCX or ECX depending on context.
736
737;; @def xDX
738; RDX or EDX depending on context.
739
740;; @def xDI
741; RDI or EDI depending on context.
742
743;; @def xSI
744; RSI or ESI depending on context.
745
746;; @def xWrtRIP
747; 'wrt rip' for AMD64 targets, nothing for x86 ones.
748
749%ifdef RT_ARCH_AMD64
750 %define xS 8
751 %define xSP rsp
752 %define xBP rbp
753 %define xAX rax
754 %define xBX rbx
755 %define xCX rcx
756 %define xDX rdx
757 %define xDI rdi
758 %define xSI rsi
759 %define xWrtRIP wrt rip
760%else
761 %define xS 4
762 %define xSP esp
763 %define xBP ebp
764 %define xAX eax
765 %define xBX ebx
766 %define xCX ecx
767 %define xDX edx
768 %define xDI edi
769 %define xSI esi
770 %define xWrtRIP
771%endif
772
773%endif
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette