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;
}
Aggregations