xschem/src/spice.awk

313 lines
7.4 KiB
Awk
Raw Normal View History

2020-08-08 15:47:34 +02:00
#!/usr/bin/awk -f
#
# File: spice.awk
#
# This file is part of XSCHEM,
# a schematic capture and Spice/Vhdl/Verilog netlisting tool for circuit
# simulation.
# Copyright (C) 1998-2020 Stefan Frederik Schippers
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
BEGIN{
lines = 0;
first=1
user_code=0 #20180129
# 20081209 hspice syntax variants
if( ARGV[1] == "-hspice" ) {
hspice=1
for(i=2; i<= ARGC;i++) {
ARGV[i-1] = ARGV[i]
}
ARGC--
}
}
# join split lines
{
if($0 ~ /^[+]/) {
yy = yy " " substr($0,2)
next
}
else {
zz = yy
yy = $0
$0 = zz
if(first) {
first=0
next
}
line[lines++] = $0
}
}
END{
$0=yy
line[lines++] = $0
## place to insert processing awk hooks
## resolve parametric instance name vector multiplicity
substitute_instance_param()
## /place to insert processing awk hooks
for(i=0; i<lines; i++) {
$0 = line[i]
process()
}
}
## if .param m=10 n=5 is defined and R1[m:n] instance name is present in netlist --> R1[10],R1[9],...,R1[5]
## before further processing netlist.
function substitute_instance_param( i, j, name, first, last)
{
IGNORECASE=1
for(i = 0;i < lines; i++) {
$0 = line[i]
if($0 ~/^\.param/) {
gsub(/ *= */, "=")
for(j = 2; j <= NF; j++) {
param = value = $j
sub(/=.*/, "", param)
sub(/.*=/,"", value)
par[param] = value
# print "*** " param " = " value
}
}
}
for(i = 0;i < lines; i++) {
$0 = line[i]
if($1 ~ /^[a-zA-Z][^\[\]:]+\[[a-zA-Z_][a-zA-Z0-9_]*:[a-zA-Z_][a-zA-Z0-9_]*\]$/) {
name = first = last = $1
sub(/\[.*/, "", name)
sub(/^.*\[/, "", first)
sub(/:.*/,"", first)
sub(/^.*:/,"", last)
sub(/\]/,"", last)
if(first in par) first = par[first]
if(last in par) last = par[last]
n=""
for(j= first;;) {
if(j!=first) n = n ","
n = n name "[" j "]"
if(j == last) break
j+= sign(last - first)
}
# print "*** " n
$1 = n
line[i] = $0
}
}
IGNORECASE=0
}
function sign(x)
{
return x<0 ? -1 : x>0 ? 1 : 0
}
function process( i, iprefix)
{
if($0 ~/\*\*\*\* begin user architecture code/){ #20180129
user_code=1
print
return
}
if($0 ~/\*\*\*\* end user architecture code/){ #20180129
user_code=0
print
return
}
if(user_code) { #20180129
print
return
}
# 20181208 do not process commented lines
if($1 ~/^\*/) {
print
return
}
#20150922 handle the case of pmos elements that netlist also a diode
# format="@name @pinlist @model w=@w l=@l geomod=0 m=@m
# #dx#name 0 @@b dnwell area=... pj=..."
# replace #dx#name with dx prefix added on all @name elements
# example:
# m6[3] GWL WLDECF[3] WL[3] HDD phv w=50u l=10u geomod=0 m=1
# m6[2] GWL WLDECF[2] WL[2] HDD phv w=50u l=10u geomod=0 m=1
# m6[1] GWL WLDECF[1] WL[1] HDD phv w=50u l=10u geomod=0 m=1
# m6[0] GWL WLDECF[0] WL[0] HDD phv w=50u l=10u geomod=0 m=1
# dxm6[3] 0 HDD dnwell area='(50u + 73u)*(10u + 32u)' pj='2*(50u +73u)+2*(10u +32u)'
# dxm6[2] 0 HDD dnwell area='(50u + 73u)*(10u + 32u)' pj='2*(50u +73u)+2*(10u +32u)'
# dxm6[1] 0 HDD dnwell area='(50u + 73u)*(10u + 32u)' pj='2*(50u +73u)+2*(10u +32u)'
# dxm6[0] 0 HDD dnwell area='(50u + 73u)*(10u + 32u)' pj='2*(50u +73u)+2*(10u +32u)'
#20151027 do this for all fields
for(i=1; i<=NF;i++) {
if($i ~/^#[a-zA-Z_0-9]+#[a-zA-Z_]+/) {
iprefix=$i
sub(/^#/,"",iprefix)
sub(/#.*/,"",iprefix)
sub("#" iprefix "#", iprefix,$i)
gsub(/,/, "," iprefix,$i)
## 20160301 add '?1' if missing in format string
if(i>1 && ( $(i-1) !~/^?/) ) {
2020-08-08 15:47:34 +02:00
$i = "@1 " $i
}
$0 = $0 # reparse input line
}
}
if(hspice) {
## 20140506 do not transform {} of variation groups
## nmos N {
## ...
## }
if($0 ~ /=/) gsub(/[{}]/,"'")
gsub(/PARAM:/,"") # stefan 20110627
if($0 ~/^[gG]/) {
IGNORECASE=1
sub(/ value=/," cur=")
IGNORECASE=0
}
if($0 ~/^[eE]/) {
IGNORECASE=1
sub(/ value=/," vol=")
IGNORECASE=0
}
if($0 ~/^[rR]/) {
IGNORECASE=1
sub(/ value=/," r=")
IGNORECASE=0
}
if($0 ~/^[cC]/) {
IGNORECASE=1
sub(/ value=/," c=")
IGNORECASE=0
}
gsub(/ value=/," ")
gsub(/ VALUE=/," ")
if($0 ~ /^D/ ) sub(/PERI[ \t]*=/,"PJ=")
}
# .probe tran v( ?1 DL[3],DL[2],DL[1],DL[0] , ?1 WL[3],WL{2],WL[1],WL[0] )
if($1 ==".probe" && $4 ~/^?/ && $7 ~/^?/ && NF==9) {
2020-08-08 15:47:34 +02:00
num1=split($5,name,",")
num2=split($8,name2,",")
num = num1>num2? num1: num2
for(i=1;i<=num;i++) {
print $1 " " $2 " " $3 " " name[(i-1)%num1+1] " , " name2[(i-1)%num2+1] " " $9
}
# .save v( ?1 DL[3],DL[2],DL[1],DL[0] , ?1 WL[3],WL{2],WL[1],WL[0] )
} else if($1 ==".save" && $3 ~/^?/ && $6 ~/^?/ && NF==8) {
2020-08-08 15:47:34 +02:00
num1=split($4,name,",")
num2=split($7,name2,",")
num = num1>num2? num1: num2
for(i=1;i<=num;i++) {
print $1 " " $2 " " name[(i-1)%num1+1] " , " name2[(i-1)%num2+1] " " $8
}
# .probe tran v( ?1 LDY1_B[1],LDY1_B[0] )
} else if($1 ==".probe" && $4 ~/^?/ && NF==6) {
2020-08-08 15:47:34 +02:00
num=split($5,name,",")
for(i=1;i<=num;i++) {
print $1 " " $2 " " $3 " " name[i] " " $6
}
# .save v( ?1 LDY1_B[1],LDY1_B[0] )
} else if($1 ==".save" && $3 ~/^?/ && NF==5) {
2020-08-08 15:47:34 +02:00
num=split($4,name,",")
for(i=1;i<=num;i++) {
print $1 " " $2 " " name[i] " " $5
}
# .probe i( v1[15],v1[14],v1[13],v1[12],v1[11],v1[10],v1[9],v1[8],v1[7],v1[6],v1[5],v1[4],v1[3],v1[2],v1[1],v1[0] )
} else if($0 ~ /^\.(probe|save) +[iIvVxX] *\(.*\)/) {
num=$0
sub(/.*\( */,"",num)
sub(/ *\).*/,"",num)
num=split(num,name,",")
num1 = $0
sub(/^.*probe */,"",num1)
sub(/^.*save */,"",num1)
sub(/\(.*/,"(",num1)
for(i=1;i<=num;i++) {
if($0 ~ /^\.probe/)
print ".probe " num1 name[i] ")"
else
print ".save " num1 name[i] ")"
}
} else if( $1 ~ /^\*\.(ipin|opin|iopin)/ ) {
num=split($2,name,",")
for(i=1;i<=num;i++) print $1 " " name[i]
} else if( $1 ~ /\.subckt/) {
# remove m=.. from subcircuit definition since m= is a multiplier not a param
sub(/ m=[0-9]+/," ",$0)
gsub(","," ",$0)
print $0
} else {
num=split($1,name,",")
if(num==0) print ""
for(j=2;j<=NF;j+=1) # start from 2 not from 3 20070221
{
if($j ~/^?/) continue # handle the case that $2 not pinlist 20070221
2020-08-08 15:47:34 +02:00
arg_num[j]=split($j,tmp,",")
for(k=1;k<=arg_num[j]; k++) {
arg_name[j,k]=tmp[k]
}
}
for(i=1;i<=num;i++)
{
printf "%s ", name[i]
for(j=2;j<=NF;j++)
{
if($j !~ /^?/)
2020-08-08 15:47:34 +02:00
{
printf "%s ", $j # if not a node just print it
}
else
{
nmult=$(j++)
sub(/?/,"",nmult)
2020-08-08 15:47:34 +02:00
if(nmult+0==-1) nmult=arg_num[j]
for(l=0;l<nmult+0;l++)
{
ii=(l+nmult*(i-1))%arg_num[j]+1
printf "%s ", arg_name[j,ii]
}
}
}
printf "\n"
}
}
}