Deleted Added
sdiff udiff text old ( 9431:8bb372a49e1b ) new ( 9818:ebd7d3e04b5f )
full compact
1#!/usr/bin/env python
2
3# Copyright (c) 2012 ARM Limited
4# All rights reserved
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

--- 179 unchanged lines hidden (view full) ---

188 import re
189 # Search for all ISA sections
190 if re.search('.*sys.*\.cpu.*\.isa', sec):
191 mr = cpt.get(sec, 'miscRegs').split()
192 # Remove MISCREG_CPSR_MODE
193 del mr[137]
194 cpt.set(sec, 'miscRegs', ' '.join(str(x) for x in mr))
195
196
197
198migrations = []
199migrations.append(from_0)
200migrations.append(from_1)
201migrations.append(from_2)
202migrations.append(from_3)
203migrations.append(from_4)
204
205verbose_print = False
206
207def verboseprint(*args):
208 if not verbose_print:
209 return
210 for arg in args:
211 print arg,

--- 96 unchanged lines hidden ---