mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	smtbmc: Avoid unnecessary string copies when parsing solver output
This commit is contained in:
		
							parent
							
								
									6e907acf86
								
							
						
					
					
						commit
						1d40f5e8fa
					
				
					 1 changed files with 9 additions and 12 deletions
				
			
		| 
						 | 
				
			
			@ -847,31 +847,28 @@ class SmtIo:
 | 
			
		|||
        return result
 | 
			
		||||
 | 
			
		||||
    def parse(self, stmt):
 | 
			
		||||
        def worker(stmt):
 | 
			
		||||
            if stmt[0] == '(':
 | 
			
		||||
        def worker(stmt, cursor=0):
 | 
			
		||||
            while stmt[cursor] in [" ", "\t", "\r", "\n"]:
 | 
			
		||||
                cursor += 1
 | 
			
		||||
 | 
			
		||||
            if stmt[cursor] == '(':
 | 
			
		||||
                expr = []
 | 
			
		||||
                cursor = 1
 | 
			
		||||
                cursor += 1
 | 
			
		||||
                while stmt[cursor] != ')':
 | 
			
		||||
                    el, le = worker(stmt[cursor:])
 | 
			
		||||
                    el, cursor = worker(stmt, cursor)
 | 
			
		||||
                    expr.append(el)
 | 
			
		||||
                    cursor += le
 | 
			
		||||
                return expr, cursor+1
 | 
			
		||||
 | 
			
		||||
            if stmt[0] == '|':
 | 
			
		||||
            if stmt[cursor] == '|':
 | 
			
		||||
                expr = "|"
 | 
			
		||||
                cursor = 1
 | 
			
		||||
                cursor += 1
 | 
			
		||||
                while stmt[cursor] != '|':
 | 
			
		||||
                    expr += stmt[cursor]
 | 
			
		||||
                    cursor += 1
 | 
			
		||||
                expr += "|"
 | 
			
		||||
                return expr, cursor+1
 | 
			
		||||
 | 
			
		||||
            if stmt[0] in [" ", "\t", "\r", "\n"]:
 | 
			
		||||
                el, le = worker(stmt[1:])
 | 
			
		||||
                return el, le+1
 | 
			
		||||
 | 
			
		||||
            expr = ""
 | 
			
		||||
            cursor = 0
 | 
			
		||||
            while stmt[cursor] not in ["(", ")", "|", " ", "\t", "\r", "\n"]:
 | 
			
		||||
                expr += stmt[cursor]
 | 
			
		||||
                cursor += 1
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue