view paper/aplas2012.tex @ 4:95657b9df30b

add figure
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Thu, 07 Jun 2012 18:47:16 +0900
parents df7b59adea0c
children 799ddd893b85
line wrap: on
line source

\documentclass[envcountsame]{llncs}
\usepackage[dvipdfmx]{graphicx}
\usepackage{llncsdoc}
\usepackage{url}
\usepackage{listings}


\title{The implementation of recursive type syntax on GCC-4.6 for CbC}
\titlerunning{title running}
\toctitle{toc title}
%\subtitle{sub title}
\author{Shinji Kono\inst{1} Nobuyasu Oshiro\inst{2}}
\authorrunning{authorrunning}
\institute{University of the Ryukyus}
\email{}

\begin{document}
\maketitle

\begin{abstract}
We have implemented C like Continuation based programming language.
Continuation based C, CbC go by passing a function pointer argument.
But C syntax is unable to that declare function pointer of recursive type.
So this time I implementation of tye rectype syntax.
In this paper I introduce implemented rectype syntax on GCC-4.6.
\end{abstract}


\section{Introduce}



\subsection{subsection}

\subsubsection{subsubsection}
\paragraph{paragraph}


\section{Continuation based C}

\section{recursive type syntax}


\begin{figure}[htpb]
  \begin{minipage}{0.5\hsize}
  \begin{center}
\scalebox{0.35}{\includegraphics{figure/tree1.pdf}}
  \end{center}
  \caption{}
  \label{fig:tree1}
  \end{minipage}
  \begin{minipage}{0.2\hsize}
  \begin{center}
\scalebox{0.35}{\includegraphics{figure/tree2.pdf}}
  \end{center}
  \caption{\_\_rectype}
  \label{fig:tree1}
\end{minipage}
\end{figure}




\begin{lstlisting}
__code fibonacci( __code (*p)( __code (*)( __code (*)( __code )))) {
    goto p(fibonacci2);
\end{lstlisting}


\begin{lstlisting}
__code fibonacci(__rectype *p, int num,  int count, int result, int prev) {
\end{lstlisting}



\bibliographystyle{junsrt}
\bibliography{cbc}
\nocite{kono:2002a, kono:2000a, kono:2008a, yogi:2008a, yogi:2008b, yan:2002a,gcc_internals}



\end{document}