summaryrefslogtreecommitdiff
path: root/tools/checker/file_format/c1visualizer/struct.py
diff options
context:
space:
mode:
authorDaniil Riazanovskiy <riazanovskiy@google.com>2020-10-15 00:46:06 +0000
committerRoland Levillain <rpl@google.com>2020-10-22 17:22:18 +0000
commit4a128a1d33758b5c7b7179dd6779ae120453a94c (patch)
tree07e8c8c823b7f6dc7a49fb0408984612b50d0d46 /tools/checker/file_format/c1visualizer/struct.py
parent463d03e93071be1efe6c5b65dbf7cbbe1b793eee (diff)
Reformat Checker according to recent Google styleguide
Test: art/tools/checker/run_unit_tests.py Test: Run any Checker test with atest or mts Change-Id: I0452429fa43356d93ca748879bad14ef23609f40
Diffstat (limited to 'tools/checker/file_format/c1visualizer/struct.py')
-rw-r--r--tools/checker/file_format/c1visualizer/struct.py49
1 files changed, 24 insertions, 25 deletions
diff --git a/tools/checker/file_format/c1visualizer/struct.py b/tools/checker/file_format/c1visualizer/struct.py
index 5925da96c5..9428a0e5f6 100644
--- a/tools/checker/file_format/c1visualizer/struct.py
+++ b/tools/checker/file_format/c1visualizer/struct.py
@@ -15,55 +15,54 @@
import os
from common.immutables import ImmutableDict
-from common.logger import Logger
-from common.mixins import PrintableMixin
+from common.logger import Logger
+from common.mixins import PrintableMixin
-class C1visualizerFile(PrintableMixin):
- def __init__(self, fileName):
- self.baseFileName = os.path.basename(fileName)
- self.fullFileName = fileName
+class C1visualizerFile(PrintableMixin):
+ def __init__(self, filename):
+ self.base_file_name = os.path.basename(filename)
+ self.full_file_name = filename
self.passes = []
- self.instructionSetFeatures = ImmutableDict()
+ self.instruction_set_features = ImmutableDict()
- def setISAFeatures(self, features):
- self.instructionSetFeatures = ImmutableDict(features)
+ def set_isa_features(self, features):
+ self.instruction_set_features = ImmutableDict(features)
- def addPass(self, new_pass):
+ def add_pass(self, new_pass):
self.passes.append(new_pass)
- def findPass(self, name):
+ def find_pass(self, name):
for entry in self.passes:
if entry.name == name:
return entry
return None
def __eq__(self, other):
- return isinstance(other, self.__class__) \
- and self.passes == other.passes \
- and self.instructionSetFeatures == other.instructionSetFeatures
+ return (isinstance(other, self.__class__)
+ and self.passes == other.passes
+ and self.instruction_set_features == other.instruction_set_features)
class C1visualizerPass(PrintableMixin):
-
- def __init__(self, parent, name, body, startLineNo):
+ def __init__(self, parent, name, body, start_line_no):
self.parent = parent
self.name = name
self.body = body
- self.startLineNo = startLineNo
+ self.start_line_no = start_line_no
if not self.name:
- Logger.fail("C1visualizer pass does not have a name", self.fileName, self.startLineNo)
+ Logger.fail("C1visualizer pass does not have a name", self.filename, self.start_line_no)
if not self.body:
- Logger.fail("C1visualizer pass does not have a body", self.fileName, self.startLineNo)
+ Logger.fail("C1visualizer pass does not have a body", self.filename, self.start_line_no)
- self.parent.addPass(self)
+ self.parent.add_pass(self)
@property
- def fileName(self):
- return self.parent.baseFileName
+ def filename(self):
+ return self.parent.base_file_name
def __eq__(self, other):
- return isinstance(other, self.__class__) \
- and self.name == other.name \
- and self.body == other.body
+ return (isinstance(other, self.__class__)
+ and self.name == other.name
+ and self.body == other.body)