update to latest CoreDSL 2.0.2
This commit is contained in:
parent
68373e580f
commit
369678b731
|
@ -39,17 +39,13 @@
|
|||
<unit id="org.codehaus.groovy25.feature.feature.group" version="0.0.0"/>
|
||||
<unit id="org.codehaus.groovy30.feature.feature.group" version="0.0.0"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<repository location="https://minres.com/download/repository/BundlePool"/>
|
||||
<unit id="groovy-templates" version="3.0.7"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<repository location="https://download.eclipse.org/tools/orbit/downloads/drops/R20201130205003/repository"/>
|
||||
<unit id="org.json" version="1.0.0.v201011060100"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<repository location="https://artifactory.minres.com/artifactory/eclipse/CoreDSL/2.0"/>
|
||||
<unit id="com.minres.coredsl.feature.feature.group" version="2.0.1.202109261307"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<repository location="https://minres.github.io/CoreDSL/repository/2.0/2.0.2"/>
|
||||
<unit id="com.minres.coredsl.feature.feature.group" version="2.0.2.202203061202"/>
|
||||
</location>
|
||||
</locations>
|
||||
</target>
|
|
@ -31,47 +31,44 @@ class CoreDslGenerationTest{
|
|||
|
||||
val isa_rv32i = '''
|
||||
Core RV32I {
|
||||
constants {
|
||||
architectural_state {
|
||||
unsigned int XLEN, FLEN;
|
||||
unsigned CSR_SIZE = 4096;
|
||||
unsigned REG_FILE_SIZE=32;
|
||||
register unsigned<XLEN> PC [[is_pc]];
|
||||
register unsigned<XLEN> X[REG_FILE_SIZE];
|
||||
extern char MEM[1<<XLEN];
|
||||
extern unsigned CSR[CSR_SIZE];
|
||||
}
|
||||
registers {
|
||||
[[is_pc]] int PC ;
|
||||
int X[REG_FILE_SIZE];
|
||||
}
|
||||
address_spaces {
|
||||
char MEM[1<<XLEN];
|
||||
unsigned CSR[CSR_SIZE];
|
||||
}
|
||||
instructions {
|
||||
instructions [[hls]] {
|
||||
ADDI {
|
||||
encoding: imm[11:0]s :: rs1[4:0] :: b000 :: rd[4:0] :: b0010011;
|
||||
encoding: imm[11:0] :: rs1[4:0] :: 0b000 :: rd[4:0] :: 0b0010011;
|
||||
behavior: {
|
||||
X[rd] = X[rs1] + imm;
|
||||
}
|
||||
}
|
||||
SLTI {
|
||||
encoding: imm[11:0]s :: rs1[4:0] :: b010 :: rd[4:0] :: b0010011;
|
||||
encoding: imm[11:0] :: rs1[4:0] :: 0b010 :: rd[4:0] :: 0b0010011;
|
||||
behavior: {
|
||||
X[rd] = X[rs1] < imm? 1 : 0;
|
||||
}
|
||||
}
|
||||
SLTIU {
|
||||
encoding: imm[11:0]s :: rs1[4:0] :: b011 :: rd[4:0] :: b0010011;
|
||||
encoding: imm[11:0] :: rs1[4:0] :: 0b011 :: rd[4:0] :: 0b0010011;
|
||||
behavior: {
|
||||
X[rd] = X[rs1] < imm? 1 : 0;
|
||||
}
|
||||
}
|
||||
SW {
|
||||
encoding: imm[11:5]s :: rs2[4:0] :: rs1[4:0] :: b010 :: imm[4:0]s :: b0100011;
|
||||
encoding: imm[11:5] :: rs2[4:0] :: rs1[4:0] :: 0b010 :: imm[4:0] :: 0b0100011;
|
||||
assembly:"{name(rs2)}, {imm}({name(rs1)})";
|
||||
behavior: {
|
||||
int offset = X[rs1] + imm;
|
||||
MEM[offset] = X[rs2];
|
||||
}
|
||||
}
|
||||
JAL[[no_cont]] {
|
||||
encoding:imm[20:20]s :: imm[10:1]s :: imm[11:11]s :: imm[19:12]s :: rd[4:0] :: b1101111;
|
||||
encoding:imm[20:20] :: imm[10:1] :: imm[11:11] :: imm[19:12] :: rd[4:0] :: 0b1101111;
|
||||
behavior: {
|
||||
if(rd!=0) X[rd] = (unsigned)PC;
|
||||
PC = PC+imm;
|
||||
|
@ -90,7 +87,7 @@ Core RV32I {
|
|||
assertNotNull(result)
|
||||
assertEquals("RV32I", result.name)
|
||||
assertNull(result.superType)
|
||||
assertEquals(4, result.declarations.size())
|
||||
assertEquals(9, result.declarations.size())
|
||||
assertNotNull(result.instructions)
|
||||
|
||||
assertEquals(5, result.instructions.size)
|
||||
|
@ -119,21 +116,15 @@ Core RV32I {
|
|||
assertEquals(1, content.definitions.size)
|
||||
val resource = content.eResource
|
||||
EcoreUtil.resolveAll(resource);
|
||||
validator.assertNoErrors(content)
|
||||
assertEquals(0, resource.errors.size)
|
||||
assertEquals(0, resource.warnings.size)
|
||||
val fsa = new InMemoryFileSystemAccess()
|
||||
generator.doGenerate(content.eResource, fsa, new GeneratorContext => [
|
||||
cancelIndicator = CancelIndicator.NullImpl
|
||||
])
|
||||
println(fsa.textFiles)
|
||||
println(fsa.textFiles)
|
||||
assertEquals(1,fsa.textFiles.size)
|
||||
assertTrue(fsa.textFiles.containsKey("DEFAULT_OUTPUTRV32I.txt"))
|
||||
// assertEquals(
|
||||
// '''
|
||||
// public class Alice {
|
||||
//
|
||||
// }
|
||||
// '''.toString, fsa.textFiles.get(IFileSystemAccess::DEFAULT_OUTPUT+"Alice.java").toString
|
||||
// )
|
||||
assertTrue(fsa.textFiles.containsKey("DEFAULT_OUTPUTRV32I.json"))
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@ Bundle-Vendor: MINRES Technologies GmbH
|
|||
Bundle-Version: 2.0.0.qualifier
|
||||
Bundle-SymbolicName: com.minres.coredsl.json;singleton:=true
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Require-Bundle: com.minres.coredsl;bundle-version="1.0.0",
|
||||
Require-Bundle: com.minres.coredsl;bundle-version="2.0.0",
|
||||
org.eclipse.equinox.common;bundle-version="3.5.0",
|
||||
org.eclipse.emf.ecore,
|
||||
org.eclipse.emf.common,
|
||||
|
|
|
@ -15,12 +15,12 @@ import com.minres.coredsl.coreDsl.Encoding
|
|||
import com.minres.coredsl.coreDsl.BitField
|
||||
import com.minres.coredsl.coreDsl.BitValue
|
||||
import java.util.List
|
||||
import com.minres.coredsl.coreDsl.AttributeName
|
||||
import com.minres.coredsl.coreDsl.ISA
|
||||
import org.json.JSONObject
|
||||
import org.json.JSONArray
|
||||
import com.minres.coredsl.util.BigIntegerWithRadix
|
||||
import com.minres.coredsl.coreDsl.Statement
|
||||
import org.eclipse.xtext.resource.XtextResource
|
||||
|
||||
/**
|
||||
* Generates code from your model files on save.
|
||||
|
@ -35,14 +35,14 @@ class CoreDslJsonGenerator extends AbstractGenerator {
|
|||
for (e : resource.allContents.toIterable.filter(CoreDef)) {
|
||||
val root = new JSONObject()
|
||||
root.put('instructions', e.compile)
|
||||
fsa.generateFile(e.name + ".json", root.toString)
|
||||
fsa.generateFile(e.name + ".json", root.toString(2))
|
||||
}
|
||||
}
|
||||
|
||||
def Boolean isHls(Instruction inst){
|
||||
val instrSet = inst.eContainer as ISA;
|
||||
!(inst.attributes.filter[it.type==AttributeName.HLS].isEmpty &&
|
||||
instrSet.attributes.filter[it.type==AttributeName.HLS].isEmpty)
|
||||
!(inst.attributes.filter[it.type=='hls'].isEmpty &&
|
||||
instrSet.commonInstructionAttributes.filter[it.type=='hls'].isEmpty)
|
||||
}
|
||||
def JSONArray compile(CoreDef coreDef) {
|
||||
val insts = coreDef.allInstr
|
||||
|
@ -53,35 +53,15 @@ class CoreDslJsonGenerator extends AbstractGenerator {
|
|||
|
||||
def JSONObject jsonDescr(Instruction inst){
|
||||
val ret = new JSONObject();
|
||||
ret.put("decoding", inst.encoding.fields.map[it.asString].join(' '))
|
||||
ret.put("decoding", inst.encoding.fields.map[it.asString].join('|'))
|
||||
ret.put("name", inst.name);
|
||||
ret.put('disassembly', inst.disass !== null? inst.name.toLowerCase + ' ' + inst.disass.toLowerCase : inst.name)
|
||||
ret.put('disassembly', inst.assembly !== null? inst.name.toLowerCase + ' ' + inst.assembly.toLowerCase : inst.name)
|
||||
ret.put('execution', inst.behavior.source)
|
||||
ret.put('restrictions', '')
|
||||
}
|
||||
|
||||
def String getSource(Statement stmt){
|
||||
// val c = CoreDslFactory.eINSTANCE.createDescriptionContent => [
|
||||
// definitions += CoreDslFactory.eINSTANCE.createISA => [
|
||||
// name = 'dummy'
|
||||
// instructions += CoreDslFactory.eINSTANCE.createInstruction => [
|
||||
// name = 'dummy'
|
||||
// encoding = CoreDslFactory.eINSTANCE.createEncoding => [
|
||||
// fields += CoreDslFactory.eINSTANCE.createBitField => [
|
||||
// name = 'dummy'
|
||||
// left = CoreDslFactory.eINSTANCE.createIntegerConstant => [ value= BigInteger.valueOf(32) ]
|
||||
// right = CoreDslFactory.eINSTANCE.createIntegerConstant => [ value= BigInteger.ZERO ]
|
||||
// ]
|
||||
// ]
|
||||
// behavior = stmt
|
||||
// ]
|
||||
// ]
|
||||
// ]
|
||||
// val rs = rsp.get
|
||||
// val r = rs.createResource(URI.createURI("dummy.core_desc"))
|
||||
// r.contents+=c
|
||||
// c.serialize
|
||||
stmt.toString
|
||||
(stmt.eResource as XtextResource).serializer.serialize(stmt)
|
||||
}
|
||||
|
||||
def Iterable<Instruction> allInstr(CoreDef core) {
|
||||
|
|
Loading…
Reference in New Issue