CompiledCodeObjectSectionFormat.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 19 Jan 2016 16:46:20 +0000
changeset 9 40f9438e9de3
parent 5 CompiledCodeObjectSectionType.st@7b9132bf8295
child 12 6e775bad5027
permissions -rw-r--r--
Updated after rename of section type to section format. Implemented section allocation routines.

"
 COPYRIGHT (c) 2006 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
"{ Package: 'jv:dragonfly' }"

"{ NameSpace: Smalltalk }"

SharedPool subclass:#CompiledCodeObjectSectionFormat
	instanceVariableNames:''
	classVariableNames:'SectionFormatBytes SectionFormatText SectionFormatOBJVector SectionFormatILCVector SectionFormatINTVector'
	poolDictionaries:''
	category:'System-Compiler-Interface'
!

!CompiledCodeObjectSectionFormat class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 2006 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
! !

!CompiledCodeObjectSectionFormat class methodsFor:'initialization'!

initialize
    "Invoked at system start or when the class is dynamically loaded."

    "/ please change as required (and remove this comment)

    SectionFormatBytes := 0.
    SectionFormatText := 1.
    SectionFormatOBJVector := 2.
    SectionFormatILCVector := 4.
    SectionFormatINTVector := 5.

    "Modified: / 07-12-2015 / 21:43:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !


CompiledCodeObjectSectionFormat initialize!