Search in sources :

Example 1 with JCImageSection

use of com.ibm.dtfj.image.javacore.JCImageSection in project openj9 by eclipse.

the class ImageAddressSpaceBuilder method addImageSection.

public ImageSection addImageSection(String name, long base, long size) {
    ImagePointer basePointer = fImageAddressSpace.getPointer(base);
    ImageSection section = new JCImageSection(name, basePointer, size);
    fImageAddressSpace.addImageSection(section);
    return section;
}
Also used : ImagePointer(com.ibm.dtfj.image.ImagePointer) ImageSection(com.ibm.dtfj.image.ImageSection) JCImageSection(com.ibm.dtfj.image.javacore.JCImageSection) JCImageSection(com.ibm.dtfj.image.javacore.JCImageSection)

Aggregations

ImagePointer (com.ibm.dtfj.image.ImagePointer)1 ImageSection (com.ibm.dtfj.image.ImageSection)1 JCImageSection (com.ibm.dtfj.image.javacore.JCImageSection)1