/Renode-v1.15.3-c57714d/tools/PeakRDL-renode/src/peakrdl_renode/csharp/ |
D | op_null.py | 28 def visit_OR(self, node: op.OR) -> None: 29 self.iterate_children_dfs(node) 31 match (node.lhs, node.rhs): 34 node.replace(expr.detach()) 37 node.replace(lit1.detach()) 39 def visit_AND(self, node: op.AND) -> None: 40 self.iterate_children_dfs(node) 42 match (node.lhs, node.rhs): 45 node.replace(lit.detach()) 47 node.replace(expr.detach()) [all …]
|
D | process.py | 27 def visit_VariableDecl(self, node: ast.VariableDecl) -> None: 28 node.access = ast.AccessibilityMod.PUBLIC 30 def visit_InvokableDefinition(self, node: ast.InvokableDefinition) -> None: 32 if not (isinstance(node, ast.MethodDefinition) and '.' in node.name) \ 33 and not node.partial: 34 node.access = ast.AccessibilityMod.PUBLIC 36 def visit_Class(self, node: ast.Class) -> None: 37 node.access = ast.AccessibilityMod.PUBLIC 39 self.iterate_children_dfs(node)
|
D | op_order.py | 64 def m_process_Op(node: Expr) -> None: 65 for child in node.children(): 66 if OrderOperators.get_precedence(node) > OrderOperators.get_precedence(child): 69 def visit_Cast(self, node: Cast) -> None: 70 if isinstance(node.expr, (BinaryOp, op.Cond)): 71 OrderOperators.m_parenthesize(node.expr) 73 self.iterate_children_dfs(node) 75 def visit_BinaryOp(self, node: BinaryOp) -> None: 76 OrderOperators.m_process_Op(node) 77 self.iterate_children_dfs(node) [all …]
|
D | helper.py | 74 def iterate_children_dfs(self, node: ast.Node) -> None: 75 for child in node.children(): 78 def visit_Node(self, node: ast.Node) -> None: 79 self.iterate_children_dfs(node) 81 def visit(self, node: ast.Node) -> None: 82 if node.null: return 89 for c in Visitor.m_iterate_class_hierarchy(type(node)): 92 visitor(node) 112 def visit_TemplateHole(self, node: TemplateHole): 113 setattr(self.obj, node.name, node)
|
D | ast.py | 152 def previous(self, node: 'Node') -> None: 159 self.m_previous = node 172 def next(self, node: 'Node') -> None: 177 self.m_next = node 199 def replace(self, node: 'Node') -> None: 205 prev.next = node 209 node.parent = (parent, field) 210 setattr(parent, field, node) 214 node.last().append(tail) 216 def append(self, node: 'Node', insert: bool = False) -> None: [all …]
|
/Renode-v1.15.3-c57714d/tools/PeakRDL-renode/src/peakrdl_renode/ |
D | scanner.py | 20 from systemrdl.node import FieldNode, MemNode, RegNode, AddrmapNode 58 def enter_Reg(self, node: RegNode) -> WalkerAction | None: 61 self.regs.append(node) 63 if node.is_array: 64 if len(node.array_dimensions) != 1: 66 reg_array = RegArray(mem_name, node, addr) 69 self.resets[node.inst_name] = 0 72 def enter_Field(self, node: FieldNode) -> WalkerAction | None: 73 reset = node.get_property('reset') 74 self.add_field_reset_value(node, reset if reset is not None else 0) [all …]
|
/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/ |
D | UsingsGraph.cs | 60 … GraphNode node = GetOrCreateGraphNode(creationDriver, filePath, "", prefix, currentFile); in TraverseDepthFirst() 62 if(!graphNodeFinished.ContainsKey(node)) in TraverseDepthFirst() 64 graphNodeFinished[node] = false; in TraverseDepthFirst() 67 if(!fileCurrentlyProcessed.ContainsKey(node.FileId)) in TraverseDepthFirst() 69 fileCurrentlyProcessed[node.FileId] = false; in TraverseDepthFirst() 73 if(fileCurrentlyProcessed[node.FileId] || node.Path == currentFile.Path) in TraverseDepthFirst() 80 if(graphNodeFinished[node]) in TraverseDepthFirst() 85 fileCurrentlyProcessed[node.FileId] = true; in TraverseDepthFirst() 86 nodesToProcess.Push(node); in TraverseDepthFirst() 102 …singsMap.TryGetValue(GraphNode.MakeGraphId(parent?.GraphId ?? "", prefix, filePath), out var node)) in GetOrCreateGraphNode() [all …]
|
D | AccessConditionParser.cs | 281 private static void GatherDnfTerms(AstNode node, List<DnfTerm> terms) in GatherDnfTerms() argument 283 if(node is OrNode orNode) in GatherDnfTerms() 288 else if(node is AndNode || node is ConditionNode || node is NotNode) in GatherDnfTerms() 291 GatherConditions(node, conditions); in GatherDnfTerms() 300 private static void GatherConditions(AstNode node, List<ConditionNode> conditions) in GatherConditions() argument 302 if(node is ConditionNode conditionNode) in GatherConditions() 306 else if(node is NotNode notNode) in GatherConditions() 310 else if(node is AndNode andNode) in GatherConditions()
|
/Renode-v1.15.3-c57714d/tests/unit-tests/ |
D | symbols.robot | 3 Execute Command include @scripts/single-node/miv.resc 8 Execute Command include @scripts/single-node/miv.resc 13 Execute Command include @scripts/single-node/miv.resc 20 Execute Command include @scripts/single-node/miv.resc 24 Execute Command include @scripts/single-node/miv.resc 28 Execute Command include @scripts/single-node/miv.resc 33 Execute Command include @scripts/single-node/miv.resc 38 Execute Command include @scripts/single-node/miv.resc 45 Execute Command include @scripts/single-node/miv.resc 49 Execute Command include @scripts/single-node/miv.resc
|
D | emulation-mode.robot | 4 Execute Command include @scripts/single-node/miv.resc 16 Execute Command include @scripts/single-node/miv.resc
|
D | monitor-tests.robot | 5 ${AUTOCOMPLETION_RESC} scripts/single-node/sam4s.resc 17 Execute Command i @scripts/single-node/miv.resc 33 Execute Command i @scripts/single-node/miv.resc 79 Execute Command i @scripts/single-node/nrf52840.resc
|
/Renode-v1.15.3-c57714d/scripts/multi-node/quark-c1000-zephyr/ |
D | demo.resc | 5 # Sample script creating 1 server node and 1 client node using a 24 # This creates a server node, connects it to the wireless medium and sets the node's position. 31 # Load the script for a single generic node: 32 i @scripts/multi-node/quark-c1000-zephyr/quark_c1000.resc 50 # This creates a client node. 55 i @scripts/multi-node/quark-c1000-zephyr/quark_c1000.resc 58 # The node is placed 10 units from the server. With the maximum range set to 11, all packets will b…
|
/Renode-v1.15.3-c57714d/scripts/multi-node/cc2538/ |
D | rpl-udp.resc | 5 # Sample script creating 1 server node and 2 client nodes using a 21 i @scripts/single-node/cc2538.resc 30 i @scripts/single-node/cc2538.resc 38 i @scripts/single-node/cc2538.resc
|
/Renode-v1.15.3-c57714d/tests/platforms/ |
D | X86.robot | 3 ${SCRIPT_UBOOT} @scripts/single-node/i386.resc 4 ${SCRIPT_ZEPHYR} @scripts/single-node/i386_zephyr.resc
|
D | STM32F7.robot | 8 Execute Command include @scripts/single-node/stm32f746_mbed.resc 29 Execute Command include @scripts/single-node/stm32f746.resc 48 Execute Command include @scripts/single-node/stm32f746.resc 58 Execute Command include @scripts/single-node/stm32f746_modem.resc 70 Execute Command include @scripts/single-node/stm32f746_modem.resc
|
D | STM32L072.robot | 52 Execute Command include @scripts/single-node/stm32l072.resc 61 Execute Command include @scripts/single-node/stm32l072.resc 71 Execute Command include @scripts/single-node/stm32l072.resc 84 Execute Command include @scripts/single-node/stm32l072.resc 118 Execute Command include @scripts/single-node/stm32l072.resc 140 Execute Command include @scripts/single-node/stm32l072.resc 171 Execute Command include @scripts/single-node/stm32l072.resc 188 Execute Command include @scripts/single-node/stm32l072.resc 203 Execute Command include @scripts/single-node/stm32l072.resc 226 Execute Command include @scripts/single-node/stm32l072.resc [all …]
|
D | SiFive-FU740.robot | 2 ${SCRIPT} ${CURDIR}/../../scripts/single-node/hifive_unmatched.resc 3 ${SCRIPT_SD_CARD} ${CURDIR}/../../scripts/single-node/hifive_unmatched_sdcard.resc
|
D | Renesas_RA4M1.robot | 10 Execute Command include @scripts/single-node/arduino_uno_r4_minima.resc 17 Execute Command include @scripts/single-node/segger-rtt.py
|
D | ACRN.robot | 3 ${SCRIPT_ZEPHYR} @scripts/single-node/acrn_x86_64_zephyr.resc
|
D | UP_Squared.robot | 3 ${SCRIPT_ZEPHYR} @scripts/single-node/up_squared_x86_64_zephyr.resc
|
D | fsl_lx2160ardb.robot | 3 ${SCRIPT_UBOOT} @scripts/single-node/fsl_lx2160ardb_uboot.resc
|
D | Veer_EL2.robot | 3 ${SCRIPT_ROT13} @scripts/single-node/veer_el2-tock.resc
|
/Renode-v1.15.3-c57714d/tools/analyzers/ |
D | RenodeClassMembersOrderAnalyzer.cs | 37 .Where(node => node.IsKind(SyntaxKind.ClassDeclaration)); in CheckClassMembersOrder() 66 …private static bool TryGetClassMemberOrder(MemberDeclarationSyntax node, out ClassMemberOrder clas… in TryGetClassMemberOrder() argument 68 var modifiers = node in TryGetClassMemberOrder()
|
D | RenodeCopyrightAnalyzer.cs | 37 .Where(node => node.IsKind(SyntaxKind.SingleLineCommentTrivia)) in CheckCopyrights()
|
/Renode-v1.15.3-c57714d/scripts/multi-node/ |
D | sam_e70.resc | 8 i @scripts/single-node/sam_e70.resc 15 i @scripts/single-node/sam_e70.resc
|