From 904b44e229dacae45649764d2a529dac823b4ed0 Mon Sep 17 00:00:00 2001 From: Carlos Galindo Date: Sun, 8 Dec 2019 14:49:52 +0000 Subject: [PATCH] solution for try-catch problem and graphs --- Makefile | 2 +- Secciones/problem_solution.tex | 326 +++++++++++++++++++++++---------- img/catch-no-dep.dot | 51 ++++++ img/catch-no-dep.pdf | Bin 0 -> 20424 bytes img/catch-order.dot | 16 ++ img/catch-order.pdf | Bin 0 -> 12745 bytes img/incorrect-try-catch.dot | 40 ++++ img/incorrect-try-catch.pdf | Bin 0 -> 17310 bytes paper.tex | 1 + 9 files changed, 341 insertions(+), 95 deletions(-) create mode 100644 img/catch-no-dep.dot create mode 100644 img/catch-no-dep.pdf create mode 100644 img/catch-order.dot create mode 100644 img/catch-order.pdf create mode 100644 img/incorrect-try-catch.dot create mode 100644 img/incorrect-try-catch.pdf diff --git a/Makefile b/Makefile index 02762e8..0b2e1ef 100644 --- a/Makefile +++ b/Makefile @@ -14,4 +14,4 @@ paper.pdf: paper.tex images clean: rm -f Secciones/*.aux rm -f *.toc *.aux *.bbl *.blg *.fls *.out *.log *.synctex.gz - $(MAKE) -C img clean + # $(MAKE) -C img clean diff --git a/Secciones/problem_solution.tex b/Secciones/problem_solution.tex index 695e0cd..1bfc7d4 100644 --- a/Secciones/problem_solution.tex +++ b/Secciones/problem_solution.tex @@ -191,116 +191,254 @@ This problem cannot be easily solved, as it is a ``dynamic'' one, requiring info \section{The \texttt{try-catch} statement} -\subsection{The problem with the control dependency's definition} +In this section we present an example where the current approximation for the \texttt{try-catch} statement fails to capture all the correct dependencies and excludes from the slice some statements which are necessary for a complete slice (both weak and strong). After that, we generalize the set of cases where that is a problem and its possible appearances in real-life development. Finally, we propose a solution which properly represent all the dependencies introduced by the \texttt{try-catch}, focusing on producing complete strong slices. -\section{Previous text} -\carlos{Here begins the old text.} -\hrulefill +\subsubsection*{The types of control dependence} -This solution is an extension of Allen's \cite{AllH03}, with some modifications to solve the problem found \josep{el problem found no ha quedado claro. Se ha diluido entre la maraña abrumadora de casos. debes formular y dejar nitido cristalino cual es el problema y por qué no lo solucinan las dsemás aproximaciones, y poner un ejempllo concreto.}. Before starting, we need to split all instructions in three categories: +\carlos{this subsection snippet could go in another place} -\begin{description} - \item[statement] non-branching instruction, e.g. an assignment or method call. - \item[predicate] conditional branch, e.g. if statements and loops. - \item[pseudo-predicate] unconditional jump, e.g. break, continue, return, goto and throw instructions. -\end{description} +Even though it continues to be used for control dependence, definition~\ref{def:ctrl-dep} does not have the same meaning when applied to conditional instructions and loops as it has when applied to unconditional jumps and other complex structures, such as the \texttt{switch} and \texttt{try-catch} statements. -Pseudo-predicates have been previously use to model unconditional jumps with a counter-intuitive reasoning: the next statement that would be executed were the pseudo-predicate not there would be executed, therefore it is control dependent on it. Going back to the definition of control dependency, one could argue that the real control dependency is on the conditional branch that lead to the \josep{???} +Originally, the definition of control dependence signified that the execution of a statement affected whether or not another one executed (or kept executing). In contrast, unconditional jumps, and \texttt{try-catch} statements' execution do not affect the following instructions; its presence or absence is what generates the control dependency. For those instructions, control dependencies are still generated with the same edges, but require the addition of extra edges to the CFG \cite{BalH93,AllH03}. -\begin{figure} -\centering -\begin{lstlisting} -if (a) { - return a; +\subsection{The control dependencies of a \texttt{catch} block} + +In the current approximation for exception handling \cite{AllH03}, \texttt{catch} blocks do not have any outgoing dependence leading anywhere except the instructions it contains. This means that, as showcased in chapter~\ref{cha:introduction}, the only way a \texttt{catch} statement may appear in a slice is if there is a data dependency or one of the statements inside it is needed. + +The only occasion in which \texttt{catch} blocks generate any kind of control dependency is when there is an exception thrown that is not covered by any of the \texttt{catch} blocks, and the function may exit with an exception. In that case, the instructions after the \texttt{try-catch} block are dependent on an uncaught exception not being thrown. + +But, compared to the treatment of unconditional exceptions does not match the treatment of \texttt{try-catch} statement: unconditional jumps have a non-executable edge to the instruction that would be executed in their absence; \texttt{catch} statements do not. + +\begin{example}[\texttt{catch} statements' outgoing dependencies] + Consider the code shown in figure~\ref{fig:catch-no-dep-code}, which depicts a \texttt{try-catch} where method \texttt{f}, which may throw an exception, is called. The function may throw either a \texttt{ExceptionA}, \texttt{ExceptionB} or \texttt{Exception}-typed exception; and the \texttt{try-catch} considers all three cases, logging the type of exception caught. Additionally, \texttt{f} accesses and modifies a global variable \texttt{x}. + + \begin{figure}[h] + \begin{lstlisting} +try { + f(); +} catch (ExceptionA e) { + log("Type A"); +} catch (ExceptionB e) { + log("Type B"); +} catch (Exception e) { + log("Exception"); } -print(a); -\end{lstlisting} -\begin{lstlisting} -if (a) { +next; + \end{lstlisting} + \caption{A snippet of code of a call to a method that throws exceptions and \texttt{catch} statements to capture and log them.} + \label{fig:catch-no-dep-code} + \end{figure} + The CFG and PDG associated to that code is depicted in figure~\ref{fig:catch-no-dep-graphs}. As can be seen, the only two elements that are dependent on any \texttt{catch} are the log statement and the unpacking of \texttt{x}. If the following statement used \texttt{x} in any way, all \texttt{catch} statements would be selected, otherwise they are ignored, and not deemed necessary. It is true that they are normally not necessary; i.e., if the slicing criterion was placed on \texttt{next} (line 10), the whole \texttt{try-catch} would be rightfully ignored; but there exist cases where \texttt{f()} (line 2) would be part of the slice, and the absence of \texttt{catch} statements would result in an incomplete slice. + + \begin{figure}[h] + \includegraphics[width=\linewidth]{img/catch-no-dep} + \caption{CFG (left) and PDG (right) of the code shown in figure~\ref{fig:catch-no-dep-code}.} + \label{fig:catch-no-dep-graphs} + \end{figure} +\end{example} + +\begin{example}[Incorrectly ignored \texttt{catch} statements] + Consider the code in figure~\ref{fig:incorrect-try-catch-code}, in which a method is called twice: once inside a \texttt{try-catch} statement, and a second time, outside. \texttt{f} also accesses and modifies variable \texttt{x}, which is redefined before the second call to \texttt{f}. Exploring this example, we demonstrate how line 3 will be necessary but not included in the slice. + + \begin{figure}[h] + \begin{minipage}{0.5\linewidth} + \begin{lstlisting} +try { + f(); +} catch (Exception e) { + log("error"); } -print(a); -\end{lstlisting} -\caption{Example of pseudo-predicates control dependencies \josep{no se referencia a esta figura desde ningún sitio}} -\end{figure} +x = 0; +f(); + \end{lstlisting} + \end{minipage} + \begin{minipage}{0.49\linewidth} + \begin{lstlisting} +void f() throws Exception { + if (x % 2 != 0) + throw new Exception(); + x++; +} + \end{lstlisting} + \end{minipage} + \caption{A method that may throw exceptions (\texttt{f}), called twice, once surrounded by a \texttt{try-catch} statement, and another time after it. On the right, the definition of \texttt{f}.} + \label{fig:incorrect-try-catch-code} + \end{figure} -This is the process used to build the Program Dependence Graph. \josep{Todo lo que sigue es demasiado verbose. No hay definiciones concretas. Es todo muy informal, y no hay un ongoing example que permita ver como las fases van evolucionando paso a paso. Nos reunimos para hablar de esta sección antes de reescribirla...} + Figure~\ref{fig:incorrect-try-catch-graph} displays the program dependence graph for the snippet of code on the left side of figure~\ref{fig:incorrect-try-catch-code}. Data dependencies are shown in red, and summary edges in blue. The set of nodes filled in grey represent the slice with respect to a slicing criterion in method \texttt{f} (line 4, \texttt{x}). In the slice, both calls to \texttt{f} and its input (\texttt{x\_in = x}) are included, but the \texttt{catch} block is not present. The execution of the slice may not be the same: if no exception is thrown, there is no change; but if \texttt{x} was odd before entering the snippet, an exception will be thrown and not caught, exiting the program prematurely. -\begin{description} - \item[Step 1 (static analysis):] Identify for each instruction the variables read and defined. Each method is annotated with the global variables that they access or modify. - \item[Step 2 (build CFGs):] Build a CFG for each method of the program. The start of all methods is a vertex labeled \textsl{enter}, which also contains the assignments for parameters and global variables used (\texttt{var = var\_in}). The \textsl{enter} node is connected to the first instruction of the method. In a similar fashion, all methods end in an \textsl{exit} vertex with the corresponding output variables. There exists one \textsl{normal exit} to which the last instruction and all return instructions are connected. If the method can throw any exceptions, there exists one \textsl{error exit} for each type of exception that may be thrown. The normal and erroneous exits are connected to the \textsl{exit} node. + \begin{figure}[h] + \centering + \includegraphics[width=0.9\linewidth]{img/incorrect-try-catch} + \caption{The system dependence graph of the left snippet of figure~\ref{fig:incorrect-try-catch-code}. \texttt{f} and the edges that connect to it are not shown for simplicity.} + \label{fig:incorrect-try-catch-graph} + \end{figure} + +\end{example} - Every normal statement is connected to the subsequent one by an unlabeled edge. Predicates have two outgoing edges, labeled \textsl{true} and \textsl{false}. Pseudo-predicates also have two outgoing edges. The \textsl{true} edge is connected to the destination of the jump (\textsl{normal exit} in the case of return, the begin or end of the loop in the case of continue and break, etc.). The \textsl{false} edge is a non-executable edge, marked with a dashed line, and it is connected to the next instruction that would be executed if the pseudo-predicate was a \textsl{nop}. - Nodes that represent a call to a method $M$ include the transfer of parameters and variables that may be read or written to, then execute the call, and finally the extraction of modified variables. Call nodes are an exception to the previous paragraph, as they can have an unlimited amount of outgoing edges. Each outgoing edge lands on a pseudo-predicate which indicates if the execution was correct or an exception was raised. The executable edge of each pseudo-predicate will lead to the next instruction to be executed, whereas the non-executable one will lead to the end of the try-catch block. All call nodes can lead to a \textsl{normal return} node, which is linked to the next instruction, and one error node for each type of exception that may be thrown. The erroneous returns are labeled \textsl{catch ExType}, and lead to the first instruction in the corresponding catch block\footnotemark. Any exception that may not be caught will lead to the erroneous exit node of the method it's in. See the example for more details. +\subsubsection*{A solution for the \texttt{catch}'s lack of control dependencies} - \footnotetext{A problem presents itself here, as some exceptions may be able to trigger different catch blocks, due to the secuential nature of catches and polymorphism in Java. A way to fix this is to make catch blocks behave as a switch.}. %TODO +\texttt{catch} statements should be handled like unconditional jumps: a non-executable edge should connect them to the instruction that would run if they were absent. For \texttt{catch} statements, the non-executable edge would connect them to the \texttt{catch} that contains the most immediate super-type (or multiple); or to the error exit, if no other \texttt{catch} could catch the same exception. This would create a tree-like structure among \texttt{catch} statements, with the root of each tree connected to the ``error exit'' of the method. This would generate dependencies between \texttt{catch} statements, and more importantly, dependencies from the \texttt{catch} statements to the instructions that follow the \texttt{try-catch} statement. - \item[Step 3 (compute dependences):] For each node in the CFG, compute the control and data dependencies. Non-executable edges are only included when computing control dependencies.\\ - \carlos{put inside definition} - A node $a$ is \textsl{control dependent} on node $b$ iff $a$ post-dominates one but not all of $b$'s successors.\\ - A node $a$ is \textsl{data dependent} on node $b$ iff $b$ defines or may define a variable $x$, $a$ uses or may use $x$, and there is an $x$-definition-free path in the CFG from $b$ to $a$.\\ - \item[Step 4 (convert each CFG into a PDG):] each node of the CFG is one node of the PDG, with two exceptions. The first are the \textsl{enter}, \textsl{exit} and method call nodes, where the variable input and output assignments are split and placed as control-dependent on their original node. The second is the \textsl{exit} node, which is to be removed (the control-dependencies from \textsl{exit} to the variable outputs is transferred to the \textsl{enter} node). Then all the dependencies computed in the previous step are drawn. - \item[Step 5 (connect PDGs to form a SDG):] each method call to $M$ must be connected to the \textsl{enter} node in $M$'s PDG, as a control dependence. Each variable input from the method call is connected to a variable input of the method definition via a data dependence. Each variable output from the method definition is connected to the variable output of the method call via a data dependence. Each method exit is connected \carlos{complete}. -\end{description} +Unfortunately, this creates the same behaviour as with unconditional jumps: all the instructions that follow a \texttt{try-catch} structure is dependent on the presence of the \texttt{catch} statements, which in turn are dependent on all the statements that may throw exceptions. In practice, the inclusion of any statement after a \texttt{try-catch} statement would require the slice to include all \texttt{catch} statements, the statements that may throw exceptions, and all the statements required by control or data dependencies. This is a huge number of instructions just for including the \texttt{catch} statements. -\begin{itemize} - \item An extra type of control dependency represented by an ``exception edge''. It will represent the need to include a \textsl{catch} clause when an exception can be thrown. It is represented with a dotted line (dashed line is for data dependency). These edges have a special characteristic: when one is traversed, only ``exception edges'' may be traversed from the new nodes included in the slice. If the same node is reached by another kind of edge, the restriction is lifted. The behavior is documented in algorithm \ref{alg:2pass}, with changes from the original algorithm are \underline{underlined}. - \item Add an extra ``exception edge'' from each ``exit with exception of type T'' node, where the type of the exception is \texttt{t} to all the corresponding ``\texttt{throw e}'', such that \texttt{e} is or inherits from \texttt{T}. - \item Add an extra ``exception edge'' from each catch statement to every statement that can throw that error. - \item The exception edges will only be placed when the method or the try-catch statement are loop-carrier\footnote{Loop-carrier, when referring to a statement, is the property that in a CFG for the complete program, the node representing the statement is part of a loop, meaning that it could be executed again once it is executed.}. -\end{itemize} +Our solution makes slices complete again, but makes them much less correct. As a solution for the incorrectness, we could insert an additional requirement when including \texttt{catch} blocks: if they are included because of their control dependencies on instructions outside the \texttt{try-catch}, they need to satisfy an additional condition before being in the slice: have a node in the slice which may throw a compatible exception. In order to achieve this, control dependencies whose source is a \texttt{catch} node and its destination is outside that same \texttt{catch} are coloured green and labelled (2). Additional edges are added between every \texttt{catch} and any statement that may throw a compatible exception; are also coloured green, and labelled (1). When traversing the graph, only include \texttt{catch} statements if they are reached through an unlabelled edge or if they are reached by at least one edge with each label (1 and 2). \carlos{Add que solo se pueda atravesar uno de los arcos verdes (una vez llegas a un nodo a traves de un arco verde, no continuas recorriendo arcos verdes)} \carlos{optimizacion 2, que los nodos catch se repitan para cada funcion tenga los suyos propios. El contenido del catch es comun a todos, pero las cabeceras y el despempaquetamiento de variables es individual para cada funcion. De este modo no se coge a todas las funciones. Tambien se podria emplear como alternativa a los arcos etiquetados, creando un set de nodos que no tienen padre, y sirven exclusivamente para que las instrucciones futuras dependan de ellas.} -\begin{algorithm} % generate slice -\caption{Two-pass algorithm to obtain a backward static slice with exceptions} -\label{alg:2pass} -\begin{algorithmic}[1] - \REQUIRE SDG $\mathcal{G}$ representing program P. $\mathcal{G} = \{\mathcal{S}, \mathcal{E}\}$, where $\mathcal{S}$ is a set of states (some are statements) connected by a set of edges $\mathcal{E}$. Each edge, is a triplet composed of the type of edge (control, data or \underline{exception} dependency, summary, param-in, param-out), the source and destination of the edge. - \REQUIRE A slicing criterion, composed of a statement $s \in \mathcal{S}$ and a variable $v$. - \ENSURE $\mathcal{S}' \subseteq \mathcal{S}$, representing the slice of P according to the criterion provided. - \medskip - \COMMENT{First pass (do not traverse output parameter edges).} - \STATE{$\mathcal{S}' \Leftarrow \emptyset$ (slice), $\mathcal{Q}\Leftarrow\{s\}$ (queue), $\mathcal{S}\Leftarrow \mathcal{S} - \{s\}$ (not visited), $\mathcal{R}\Leftarrow \emptyset$ (only visited via exception edge)} - \WHILE{$\mathcal{Q} \neq \emptyset$} - \STATE{$a \in \mathcal{Q}$} \COMMENT{Select an element from $\mathcal{Q}$} - \STATE{$\mathcal{Q} \Leftarrow \mathcal{Q} - \{a\}$} - \STATE{$\mathcal{S}' \Leftarrow \mathcal{S}' + \{a\}$} - \FORALL{$\mathcal{A}$ in $\{\{type, origin, a\} \in \mathcal{E}\}$} - \IF{$type \neq$ param-out \AND ($origin \notin \mathcal{S}'$ \OR ($origin \in \mathcal{R}$ \AND $a \notin \mathcal{R}$))} \label{line:param-out} - \IF{\underline{$a \in \mathcal{R}$}} - \IF{\underline{$type =$ exception}} - \STATE{\underline{$\mathcal{Q} \Leftarrow \mathcal{Q} + \{origin\}$}} - \STATE{\underline{$\mathcal{R} \Leftarrow \mathcal{R} + \{origin\}$}} - \ENDIF - \ELSE - \STATE{$\mathcal{Q} \Leftarrow \mathcal{Q} + \{origin\}$} - \ENDIF - \ENDIF - \ENDFOR - \ENDWHILE - \\ - \medskip - \COMMENT{Second pass (very similar, do not traverse input parameter edges).} - \STATE $\mathcal{Q} \Leftarrow \mathcal{S}'$ - \WHILE{$\mathcal{Q} \neq \emptyset$} - \STATE{$a \in \mathcal{Q}$} \COMMENT{Select an element from $\mathcal{Q}$} - \STATE{$\mathcal{Q} \Leftarrow \mathcal{Q} - \{a\}$} - \STATE{$\mathcal{S}' \Leftarrow \mathcal{S}' + \{a\}$} - \FORALL{$\mathcal{A}$ in $\{\{type, origin, a\} \in \mathcal{E}\}$} - \IF{$type \neq$ param-in \AND ($origin \notin \mathcal{S}'$ \OR ($origin \in \mathcal{R}$ \AND $a \notin \mathcal{R}$))} - \IF{\underline{$a \in \mathcal{R}$}} - \IF{\underline{$type =$ exception}} - \STATE{\underline{$\mathcal{Q} \Leftarrow \mathcal{Q} + \{origin\}$}} - \STATE{\underline{$\mathcal{R} \Leftarrow \mathcal{R} + \{origin\}$}} - \ENDIF - \ELSE - \STATE{$\mathcal{Q} \Leftarrow \mathcal{Q} + \{origin\}$} - \ENDIF - \ENDIF - \ENDFOR - \ENDWHILE -\end{algorithmic} -\end{algorithm} +% \begin{example}[Order of \texttt{catch} statements] +% Consider the following exception types declared in figure~\ref{fig:catch-order-code}, and their ordering in a simple \texttt{try-catch} statement. The \texttt{catch} blocks may be reorganized in any order if the type + +% \begin{figure}[h] +% \begin{minipage}{0.60\linewidth} +% \begin{lstlisting} +% class ExceptionA extends Exception {...}; +% class ExceptionB extends Exception {...}; +% class ExceptionB1 extends ExceptionB {...}; +% class ExceptionB2 extends ExceptionB {...}; +% \end{lstlisting} +% \end{minipage} +% \begin{minipage}{0.39\linewidth} +% \begin{lstlisting} +% try { +% [...] +% } catch (ExceptionB2 e) { +% [...] +% } catch (ExceptionA e) { +% [...] +% } catch (ExceptionB1 e) { +% [...] +% } catch (ExceptionB e) { +% [...] +% } catch (Exception e) { +% [...] +% } +% \end{lstlisting} +% \end{minipage} +% \caption{A set of type declarations that extend the class \texttt{Exception} (left) and a small \texttt{try-catch} with the exceptions sorted in one of the valid orders (right).} +% \label{fig:catch-order-code} +% \end{figure} +% \end{example} + +% \texttt{catch} blocks can be organized in two different orders: the physical order in which they are placed by the developer, which is the order in which they will be evaluated to check for type compatibility (in Java specifically); or a tree-like structure according to their types. Figure~\ref{fig:catch-order} showcases a couple of examples of each order. In Java's case, the tree structure is more correct; because though the order ``seems'' to matter, there is only one possible execution order. + +% \begin{figure} +% \centering +% \includegraphics[width=0.5\linewidth]{img/catch-order} +% \caption{Two ways of looking at \texttt{catch} block orders: user-specified (left) and type-based tree (right).} +% \label{fig:catch-order} +% \end{figure} + +% \newpage +% \section{Previous text} +% \carlos{Here begins the old text.} +% \hrulefill + +% This solution is an extension of Allen's \cite{AllH03}, with some modifications to solve the problem found \josep{el problem found no ha quedado claro. Se ha diluido entre la maraña abrumadora de casos. debes formular y dejar nitido cristalino cual es el problema y por qué no lo solucinan las dsemás aproximaciones, y poner un ejempllo concreto.}. Before starting, we need to split all instructions in three categories: + +% \begin{description} +% \item[statement] non-branching instruction, e.g. an assignment or method call. +% \item[predicate] conditional branch, e.g. if statements and loops. +% \item[pseudo-predicate] unconditional jump, e.g. break, continue, return, goto and throw instructions. +% \end{description} + +% Pseudo-predicates have been previously use to model unconditional jumps with a counter-intuitive reasoning: the next statement that would be executed were the pseudo-predicate not there would be executed, therefore it is control dependent on it. Going back to the definition of control dependency, one could argue that the real control dependency is on the conditional branch that lead to the \josep{???} + +% \begin{figure} +% \centering +% \begin{lstlisting} +% if (a) { +% return a; +% } +% print(a); +% \end{lstlisting} +% \begin{lstlisting} +% if (a) { + +% } +% print(a); +% \end{lstlisting} +% \caption{Example of pseudo-predicates control dependencies \josep{no se referencia a esta figura desde ningún sitio}} +% \end{figure} + +% This is the process used to build the Program Dependence Graph. \josep{Todo lo que sigue es demasiado verbose. No hay definiciones concretas. Es todo muy informal, y no hay un ongoing example que permita ver como las fases van evolucionando paso a paso. Nos reunimos para hablar de esta sección antes de reescribirla...} + +% \begin{description} +% \item[Step 1 (static analysis):] Identify for each instruction the variables read and defined. Each method is annotated with the global variables that they access or modify. +% \item[Step 2 (build CFGs):] Build a CFG for each method of the program. The start of all methods is a vertex labeled \textsl{enter}, which also contains the assignments for parameters and global variables used (\texttt{var = var\_in}). The \textsl{enter} node is connected to the first instruction of the method. In a similar fashion, all methods end in an \textsl{exit} vertex with the corresponding output variables. There exists one \textsl{normal exit} to which the last instruction and all return instructions are connected. If the method can throw any exceptions, there exists one \textsl{error exit} for each type of exception that may be thrown. The normal and erroneous exits are connected to the \textsl{exit} node. + +% Every normal statement is connected to the subsequent one by an unlabeled edge. Predicates have two outgoing edges, labeled \textsl{true} and \textsl{false}. Pseudo-predicates also have two outgoing edges. The \textsl{true} edge is connected to the destination of the jump (\textsl{normal exit} in the case of return, the begin or end of the loop in the case of continue and break, etc.). The \textsl{false} edge is a non-executable edge, marked with a dashed line, and it is connected to the next instruction that would be executed if the pseudo-predicate was a \textsl{nop}. + +% Nodes that represent a call to a method $M$ include the transfer of parameters and variables that may be read or written to, then execute the call, and finally the extraction of modified variables. Call nodes are an exception to the previous paragraph, as they can have an unlimited amount of outgoing edges. Each outgoing edge lands on a pseudo-predicate which indicates if the execution was correct or an exception was raised. The executable edge of each pseudo-predicate will lead to the next instruction to be executed, whereas the non-executable one will lead to the end of the try-catch block. All call nodes can lead to a \textsl{normal return} node, which is linked to the next instruction, and one error node for each type of exception that may be thrown. The erroneous returns are labeled \textsl{catch ExType}, and lead to the first instruction in the corresponding catch block\footnotemark. Any exception that may not be caught will lead to the erroneous exit node of the method it's in. See the example for more details. + +% \footnotetext{A problem presents itself here, as some exceptions may be able to trigger different catch blocks, due to the secuential nature of catches and polymorphism in Java. A way to fix this is to make catch blocks behave as a switch.}. %TODO + +% \item[Step 3 (compute dependences):] For each node in the CFG, compute the control and data dependencies. Non-executable edges are only included when computing control dependencies.\\ +% \carlos{put inside definition} +% A node $a$ is \textsl{control dependent} on node $b$ iff $a$ post-dominates one but not all of $b$'s successors.\\ +% A node $a$ is \textsl{data dependent} on node $b$ iff $b$ defines or may define a variable $x$, $a$ uses or may use $x$, and there is an $x$-definition-free path in the CFG from $b$ to $a$.\\ +% \item[Step 4 (convert each CFG into a PDG):] each node of the CFG is one node of the PDG, with two exceptions. The first are the \textsl{enter}, \textsl{exit} and method call nodes, where the variable input and output assignments are split and placed as control-dependent on their original node. The second is the \textsl{exit} node, which is to be removed (the control-dependencies from \textsl{exit} to the variable outputs is transferred to the \textsl{enter} node). Then all the dependencies computed in the previous step are drawn. +% \item[Step 5 (connect PDGs to form a SDG):] each method call to $M$ must be connected to the \textsl{enter} node in $M$'s PDG, as a control dependence. Each variable input from the method call is connected to a variable input of the method definition via a data dependence. Each variable output from the method definition is connected to the variable output of the method call via a data dependence. Each method exit is connected \carlos{complete}. +% \end{description} + +% \begin{itemize} +% \item An extra type of control dependency represented by an ``exception edge''. It will represent the need to include a \textsl{catch} clause when an exception can be thrown. It is represented with a dotted line (dashed line is for data dependency). These edges have a special characteristic: when one is traversed, only ``exception edges'' may be traversed from the new nodes included in the slice. If the same node is reached by another kind of edge, the restriction is lifted. The behavior is documented in algorithm \ref{alg:2pass}, with changes from the original algorithm are \underline{underlined}. +% \item Add an extra ``exception edge'' from each ``exit with exception of type T'' node, where the type of the exception is \texttt{t} to all the corresponding ``\texttt{throw e}'', such that \texttt{e} is or inherits from \texttt{T}. +% \item Add an extra ``exception edge'' from each catch statement to every statement that can throw that error. +% \item The exception edges will only be placed when the method or the try-catch statement are loop-carrier\footnote{Loop-carrier, when referring to a statement, is the property that in a CFG for the complete program, the node representing the statement is part of a loop, meaning that it could be executed again once it is executed.}. +% \end{itemize} + +% \begin{algorithm} % generate slice +% \caption{Two-pass algorithm to obtain a backward static slice with exceptions} +% \label{alg:2pass} +% \begin{algorithmic}[1] +% \REQUIRE SDG $\mathcal{G}$ representing program P. $\mathcal{G} = \{\mathcal{S}, \mathcal{E}\}$, where $\mathcal{S}$ is a set of states (some are statements) connected by a set of edges $\mathcal{E}$. Each edge, is a triplet composed of the type of edge (control, data or \underline{exception} dependency, summary, param-in, param-out), the source and destination of the edge. +% \REQUIRE A slicing criterion, composed of a statement $s \in \mathcal{S}$ and a variable $v$. +% \ENSURE $\mathcal{S}' \subseteq \mathcal{S}$, representing the slice of P according to the criterion provided. + +% \medskip +% \COMMENT{First pass (do not traverse output parameter edges).} +% \STATE{$\mathcal{S}' \Leftarrow \emptyset$ (slice), $\mathcal{Q}\Leftarrow\{s\}$ (queue), $\mathcal{S}\Leftarrow \mathcal{S} - \{s\}$ (not visited), $\mathcal{R}\Leftarrow \emptyset$ (only visited via exception edge)} +% \WHILE{$\mathcal{Q} \neq \emptyset$} +% \STATE{$a \in \mathcal{Q}$} \COMMENT{Select an element from $\mathcal{Q}$} +% \STATE{$\mathcal{Q} \Leftarrow \mathcal{Q} - \{a\}$} +% \STATE{$\mathcal{S}' \Leftarrow \mathcal{S}' + \{a\}$} +% \FORALL{$\mathcal{A}$ in $\{\{type, origin, a\} \in \mathcal{E}\}$} +% \IF{$type \neq$ param-out \AND ($origin \notin \mathcal{S}'$ \OR ($origin \in \mathcal{R}$ \AND $a \notin \mathcal{R}$))} \label{line:param-out} +% \IF{\underline{$a \in \mathcal{R}$}} +% \IF{\underline{$type =$ exception}} +% \STATE{\underline{$\mathcal{Q} \Leftarrow \mathcal{Q} + \{origin\}$}} +% \STATE{\underline{$\mathcal{R} \Leftarrow \mathcal{R} + \{origin\}$}} +% \ENDIF +% \ELSE +% \STATE{$\mathcal{Q} \Leftarrow \mathcal{Q} + \{origin\}$} +% \ENDIF +% \ENDIF +% \ENDFOR +% \ENDWHILE +% \\ +% \medskip +% \COMMENT{Second pass (very similar, do not traverse input parameter edges).} +% \STATE $\mathcal{Q} \Leftarrow \mathcal{S}'$ +% \WHILE{$\mathcal{Q} \neq \emptyset$} +% \STATE{$a \in \mathcal{Q}$} \COMMENT{Select an element from $\mathcal{Q}$} +% \STATE{$\mathcal{Q} \Leftarrow \mathcal{Q} - \{a\}$} +% \STATE{$\mathcal{S}' \Leftarrow \mathcal{S}' + \{a\}$} +% \FORALL{$\mathcal{A}$ in $\{\{type, origin, a\} \in \mathcal{E}\}$} +% \IF{$type \neq$ param-in \AND ($origin \notin \mathcal{S}'$ \OR ($origin \in \mathcal{R}$ \AND $a \notin \mathcal{R}$))} +% \IF{\underline{$a \in \mathcal{R}$}} +% \IF{\underline{$type =$ exception}} +% \STATE{\underline{$\mathcal{Q} \Leftarrow \mathcal{Q} + \{origin\}$}} +% \STATE{\underline{$\mathcal{R} \Leftarrow \mathcal{R} + \{origin\}$}} +% \ENDIF +% \ELSE +% \STATE{$\mathcal{Q} \Leftarrow \mathcal{Q} + \{origin\}$} +% \ENDIF +% \ENDIF +% \ENDFOR +% \ENDWHILE +% \end{algorithmic} +% \end{algorithm} % vim: set noexpandtab:ts=2:sw=2:wrap diff --git a/img/catch-no-dep.dot b/img/catch-no-dep.dot new file mode 100644 index 0000000..2c3f823 --- /dev/null +++ b/img/catch-no-dep.dot @@ -0,0 +1,51 @@ +digraph g { + before [label = "", style=invis, width =0.001, height = 0.001]; + t [label = "try"]; + f [label = f()>]; + er [label = "error return"]; + nr [label = "normal return"]; + o [label = "x = x_out"]; + o1 [label = "x = x_out"]; + o2 [label = "x = x_out"]; + o3 [label = "x = x_out"]; + c1 [label = "catch (ExceptionA e)"] + c2 [label = "catch (ExceptionB e)"] + c3 [label = "catch (Exception e)"] + l1 [label = "log(\"Type A\")"]; + l2 [label = "log(\"Type B\")"]; + l3 [label = "log(\"Exception\")"]; + after [label = "next"]; + after2 [label = "", style= invis, height = 0.0001, width = 0.0001] + before -> t -> f -> er -> {c1, c2, c3}; + f -> nr -> o -> after; + c1 -> o1 -> l1; + c2 -> o2 -> l2; + c3 -> o3 -> l3; + {t nr c1 c2 c3} -> after [style = dashed, constraint = false]; + {l1 l2 l3} -> after -> after2; + + BEFORE [label = "", style = invis, width = 0.001, height = 0.001]; + T [label = "try"]; + F [label = "f()"]; + X_IN [label = "x_in = x"]; + X_OUT_NORMAL [label = "x = x_out"]; + X_OUT_1 [label = "x = x_out"]; + X_OUT_2 [label = "x = x_out"]; + X_OUT_3 [label = "x = x_out"]; + NORMAL_RET [label = "normal return"]; + ERROR_RET [label = "error return"]; + C1 [label = "catch (ExceptionA e)"] + C2 [label = "catch (ExceptionB e)"] + C3 [label = "catch (Exception e)"] + L1 [label = "log(\"Type A\")"]; + L2 [label = "log(\"Type B\")"]; + L3 [label = "log(\"Exception\")"]; + NEXT [label = "next"]; + BEFORE -> NEXT; + BEFORE -> T -> F -> {X_IN NORMAL_RET ERROR_RET} + NORMAL_RET -> X_OUT_NORMAL + ERROR_RET -> {C1 C2 C3} + C1 -> {X_OUT_1 L1} + C2 -> {X_OUT_2 L2} + C3 -> {X_OUT_3 L3} +} \ No newline at end of file diff --git a/img/catch-no-dep.pdf b/img/catch-no-dep.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1fba6f489356da723eb1959e6819a21d9292ddad GIT binary patch literal 20424 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 z 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 KMn=b2m*<~r ea -> eb1 -> eb -> e; + + EA [label="ExceptionA e"]; + EB [label="ExceptionB e"]; + EB1 [label="ExceptionB1 e"]; + EB2 [label="ExceptionB2 e"]; + E [label="Exception e"]; + {EA EB} -> E; + {EB1 EB2} -> EB; +} \ No newline at end of file diff --git a/img/catch-order.pdf b/img/catch-order.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bbe7b04eff410f9d9b68d91d9980278eea4c14b2 GIT binary patch literal 12745 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 {mxin try}; + try -> f -> {x_in nr er} + nr -> x_out_nr + er -> catch -> {x_out_catch log} + enter -> {x_0 f2} + f2 -> {x_in2 nr2 er2} + nr2 -> x_out_nr2 + er2 -> ee -> x_out_ee; + + {edge [color = red, constraint = false]; + mxin -> x_in; + x_0 -> x_in2; + } + + {edge [color = blue, constraint = false]; + x_in -> {x_out_nr x_out_catch} + x_in2 -> {x_out_nr2 x_out_ee} + } +} \ No newline at end of file diff --git a/img/incorrect-try-catch.pdf b/img/incorrect-try-catch.pdf new file mode 100644 index 0000000000000000000000000000000000000000..06d5261cf86609a6eaad6773145745a24be96a19 GIT binary patch literal 17310 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 LGBQzlF_`}YoJ*kz literal 0 HcmV?d00001 diff --git a/paper.tex b/paper.tex index 3f6d28d..15a18f7 100644 --- a/paper.tex +++ b/paper.tex @@ -15,6 +15,7 @@ \theoremstyle{definition} \newtheorem{definition}{Definition} \newtheorem{example}{Example} +\newtheorem{problem}{Problem} \usepackage{hyperref} \usepackage{graphics} \usepackage{title/mitssTitle}