コード例 #1
0
ファイル: ast.py プロジェクト: sorinasandu/ixcode
    def toBB(self, BBlist, cBB):
        firstBB = Expression('if (%s)' % self._cond).toBB(BBlist, cBB)
        lastBB = BB()
        ignore = False

        if self._true:
            newBB = self._true.toBB(BBlist, firstBB)
            if newBB.is_ignored():
                ignore = True
            else:
                newBB.add_link(lastBB)

        if self._false:
            newBB = self._false.toBB(BBlist, firstBB)
            if newBB.is_ignored() and ignore:
                lastBB.set_ignore()
            else:
                newBB.add_link(lastBB)
        else:
            if ignore:
                lastBB.set_ignore()
            firstBB.add_link(lastBB)

        BBlist.append(lastBB)
        return lastBB
コード例 #2
0
ファイル: ast.py プロジェクト: sorinasandu/ixcode
 def toBB(self, BBlist, cBB):
     if cBB.instrs():
         newBB = BB()
         newBB.add_instruction(self)
         cBB.add_link(newBB)
         BBlist.append(newBB)
         return newBB
     cBB.add_instruction(self)
     return cBB
コード例 #3
0
ファイル: ast.py プロジェクト: sorinasandu/ixcode
    def toBB(self, BBlist, cBB):
        if not self.is_leader() or not cBB.instrs():
            cBB.add_instruction(self._text);
            return cBB

        newBB = BB();
        newBB.add_instruction(self._text);
        cBB.add_link(newBB)
        BBlist.append(newBB)
        return newBB
コード例 #4
0
ファイル: ast.py プロジェクト: tiriplicamihai/ixcode
 def toBB(self, Labellist, cBB):
     if not cBB:
         cBB = BB()
     if cBB.instrs():
         newBB = BB()
         newBB.add_instruction(self)
         cBB.add_link(newBB)
         return newBB
     cBB.add_instruction(self)
     return cBB
コード例 #5
0
ファイル: ast.py プロジェクト: tiriplicamihai/ixcode
    def toBB(self, Labellist, cBB):
        if not cBB:
            cBB = BB()

        if not self.is_leader() or not cBB.instrs():
            cBB.add_instruction(self)
            return cBB

        newBB = BB();
        newBB.add_instruction(self)
        cBB.add_link(newBB)
        return newBB
コード例 #6
0
    def toBB(self, Labellist, cBB):
        firstBB = Instruction.toBB(self, Labellist, cBB)
        lastBB = BB()

        if self._true:
            newBB = self._true.toBB(Labellist, firstBB)
            newBB.add_link(lastBB)

        if self._false:
            newBB = self._false.toBB(Labellist, firstBB)
            newBB.add_link(lastBB)
        else:
            firstBB.add_link(lastBB)

        return lastBB
コード例 #7
0
 def toBB(self, Labellist, cBB):
     cBB = Instruction.toBB(self, Labellist, cBB)
     lastBB = BB()
     cBB.add_link(lastBB)
     Labellist['%s' % self._label] = cBB
     return lastBB
コード例 #8
0
 def toBB(self, Labellist, cBB):
     cBB = Instruction.toBB(self, Labellist, cBB)
     lastBB = BB()
     cBB.add_link(lastBB)
     return lastBB
コード例 #9
0
    def toBB(self, Labellist, cBB):
        if not cBB:
            cBB = BB()

        if not self.is_leader() or not cBB.instrs():
            cBB.add_instruction(self)
            return cBB

        newBB = BB()
        newBB.add_instruction(self)
        cBB.add_link(newBB)
        return newBB
コード例 #10
0
 def toBB(self, Labellist, cBB):
     if not cBB:
         cBB = BB()
     if cBB.instrs():
         newBB = BB()
         newBB.add_instruction(self)
         cBB.add_link(newBB)
         return newBB
     cBB.add_instruction(self)
     return cBB