Skip to content
Snippets Groups Projects
Commit 08170a5a authored by Lukas Stadler's avatar Lukas Stadler
Browse files

fix more "end of function without return" warnings, include colors.c,...

fix more "end of function without return" warnings, include colors.c, format.c, print.c and sort.c from GNU-R
parent 02ff6cb1
No related branches found
No related tags found
No related merge requests found
Showing
with 331 additions and 69 deletions
......@@ -58,14 +58,20 @@ public final class TruffleRLanguage extends TruffleLanguage<RContext> {
private static synchronized void initialize() {
if (!initialized) {
initialized = true;
Load_RFFIFactory.initialize();
RInstrument.initialize();
RPerfStats.initialize();
Locale.setDefault(Locale.ROOT);
RAccuracyInfo.initialize();
RVersionInfo.initialize();
TempPathName.initialize();
RContext.initialize(new RRuntimeASTAccessImpl(), RBuiltinPackages.getInstance());
try {
Load_RFFIFactory.initialize();
RInstrument.initialize();
RPerfStats.initialize();
Locale.setDefault(Locale.ROOT);
RAccuracyInfo.initialize();
RVersionInfo.initialize();
TempPathName.initialize();
RContext.initialize(new RRuntimeASTAccessImpl(), RBuiltinPackages.getInstance());
} catch (Throwable t) {
System.out.println("error during engine initialization:");
t.printStackTrace();
System.exit(-1);
}
}
}
......
......@@ -40,7 +40,7 @@ C_OBJECTS := $(subst $(SRC),$(OBJ),$(C_SOURCES:.c=.o))
C_LIB := $(TOPDIR)/../lib/$(C_LIBNAME)
JNI_INCLUDES = -I $(JAVA_HOME)/include -I $(JAVA_HOME)/include/$(JDK_OS_DIR)
FFI_INCLUDES = -I$(TOPDIR)/include/jni/include -I$(TOPDIR)/include/jni/include/R_ext
FFI_INCLUDES = -I$(TOPDIR)/include/jni/include -I$(TOPDIR)/gnur/R-3.1.3/src/include -I$(TOPDIR)/include/jni/include/R_ext
INCLUDES := $(JNI_INCLUDES) $(FFI_INCLUDES)
......
/*
* Copyright (c) 2015, 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
#define DEFN_H_
#include <jni.h>
#include <stdlib.h>
#include <Rinternals.h>
// various definitions required to compile GNU-R code:
#define F77_SYMBOL(x) x
#define F77_QSYMBOL(x) #x
#define Rexp10(x) pow(10.0, x)
// no NLS:
#ifndef _
#define _(String) (String)
#endif
#define N_(String) String
#define ngettext(String, StringP, N) (N > 1 ? StringP: String)
void sortVector(SEXP, Rboolean);
int Scollate(SEXP a, SEXP b);
void Rf_checkArityCall(SEXP, SEXP, SEXP);
......@@ -151,7 +151,8 @@ int GEstring_to_pch(SEXP pch) {
}
unsigned int GE_LTYpar(SEXP x, int y) {
return unimplemented("GE_LTYpar");
unimplemented("GE_LTYpar");
return 0;
}
SEXP GE_LTYget(unsigned int x) {
......@@ -393,16 +394,3 @@ double toDeviceHeight(double value, GEUnit from, pGEDevDesc dd) {
unimplemented("toDeviceHeight");
return 0.0;
}
rcolor Rf_RGBpar(SEXP x, int y) {
return (rcolor) unimplemented("RGBpar");
}
rcolor Rf_RGBpar3(SEXP x, int y, rcolor z) {
return (rcolor) unimplemented("RGBpar3");
}
const char *Rf_col2name(rcolor col) {
return (const char *) unimplemented("col2name");
}
/*
* Copyright (c) 2015, 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
#define attribute_hidden
#include "Defn.h"
#include "../../../gnur/R-3.1.3/src/main/colors.c"
/*
* Copyright (c) 2015, 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
#define HAVE_NEARBYINT
#define attribute_hidden
extern int R_dec_min_exponent;
#include "Defn.h"
#include "../../../gnur/R-3.1.3/src/main/format.c"
/*
* Copyright (c) 2015, 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
#include "rffiutils.h"
// the following code is copied from "print.c"
/*
* R : A Computer Language for Statistical Data Analysis
* Copyright (C) 1995-1998 Robert Gentleman and Ross Ihaka.
* Copyright (C) 2000-2012 The R Core Team.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, a copy is available at
* http://www.r-project.org/Licenses/
*
*
* print.default() -> do_printdefault (with call tree below)
*
* auto-printing -> PrintValueEnv
* -> PrintValueRec
* -> call print() for objects
* Note that auto-printing does not call print.default.
* PrintValue, R_PV are similar to auto-printing.
*
* do_printdefault
* -> PrintDefaults
* -> CustomPrintValue
* -> PrintValueRec
* -> __ITSELF__ (recursion)
* -> PrintGenericVector -> PrintValueRec (recursion)
* -> printList -> PrintValueRec (recursion)
* -> printAttributes -> PrintValueRec (recursion)
* -> PrintExpression
* -> printVector >>>>> ./printvector.c
* -> printNamedVector >>>>> ./printvector.c
* -> printMatrix >>>>> ./printarray.c
* -> printArray >>>>> ./printarray.c
*
* do_prmatrix
* -> PrintDefaults
* -> printMatrix >>>>> ./printarray.c
*
*
* See ./printutils.c for general remarks on Printing
* and the Encode.. utils.
*
* Also ./printvector.c, ./printarray.c
*
* do_sink moved to connections.c as of 1.3.0
*
* <FIXME> These routines are not re-entrant: they reset the
* global R_print.
* </FIXME>
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "rffiutils.h"
#include "Defn.h"
#include "Print.h"
/* Global print parameter struct: */
R_print_par_t R_print;
static void printAttributes(SEXP, SEXP, Rboolean);
static void PrintSpecial(SEXP);
static void PrintLanguageEtc(SEXP, Rboolean, Rboolean);
#define TAGBUFLEN 256
#define TAGBUFLEN0 TAGBUFLEN + 6
static char tagbuf[TAGBUFLEN0];
/* Used in X11 module for dataentry */
/* NB this is called by R.app even though it is in no public header, so
alter there if you alter this */
void PrintDefaults(void)
{
R_print.na_string = NA_STRING;
R_print.na_string_noquote = mkChar("<NA>");
R_print.na_width = (int) strlen(CHAR(R_print.na_string));
R_print.na_width_noquote = (int) strlen(CHAR(R_print.na_string_noquote));
R_print.quote = 1;
R_print.right = 0; // FastR: modified from Rprt_adj_left;
R_print.digits = GetOptionDigits();
R_print.scipen = asInteger(GetOption1(install("scipen")));
if (R_print.scipen == NA_INTEGER) R_print.scipen = 0;
R_print.max = asInteger(GetOption1(install("max.print")));
if (R_print.max == NA_INTEGER || R_print.max < 0) R_print.max = 99999;
else if(R_print.max == INT_MAX) R_print.max--; // so we can add
R_print.gap = 1;
R_print.width = GetOptionWidth();
R_print.useSource = 0; // FastR: modified from USESOURCE;
R_print.cutoff = GetOptionCutoff();
}
// FastR: the rest of the file is omitted
/*
* Copyright (c) 2015, 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
#define attribute_hidden
#include "Defn.h"
#include "../../../gnur/R-3.1.3/src/main/sort.c"
......@@ -55,14 +55,6 @@ const char *R_CHAR(SEXP string) {
return copyChars;
}
void R_isort(int *x, int n) {
unimplemented("R_isort");
}
void R_rsort(double *x, int n) {
unimplemented("R_rsort");
}
void R_qsort_I (double *v, int *II, int i, int j) {
unimplemented("R_qsort_I");
}
......@@ -71,14 +63,6 @@ void R_qsort_int_I(int *iv, int *II, int i, int j) {
unimplemented("R_qsort_int_I");
}
void rsort_with_index(double *a, int *b, int c) {
unimplemented("rsort_with_index");
}
void revsort(double *a, int *b, int c) {
unimplemented("revsort");
}
void R_CheckUserInterrupt() {
// TODO (we don't even do this in the Java code)
}
......
......@@ -130,6 +130,7 @@ SEXP Rf_allocMatrix(SEXPTYPE mode, int nrow, int ncol) {
SEXP Rf_allocList(int x) {
unimplemented("Rf_allocList)");
return NULL;
}
SEXP Rf_cons(SEXP car, SEXP cdr) {
......@@ -145,11 +146,13 @@ void Rf_defineVar(SEXP symbol, SEXP value, SEXP rho) {
SEXP Rf_eval(SEXP expr, SEXP env) {
unimplemented("Rf_eval)");
return NULL;
}
SEXP Rf_findFun(SEXP symbol, SEXP rho) {
JNIEnv *thisenv = getEnv();
unimplemented("Rf_eval)");
return NULL;
}
SEXP Rf_findVar(SEXP symbol, SEXP rho) {
......@@ -184,10 +187,12 @@ SEXP Rf_duplicate(SEXP x) {
R_xlen_t Rf_any_duplicated(SEXP x, Rboolean from_last) {
unimplemented("Rf_any_duplicated)");
return 0;
}
SEXP Rf_duplicated(SEXP x, Rboolean y) {
unimplemented("Rf_duplicated)");
return NULL;
}
Rboolean Rf_inherits(SEXP x, const char * klass) {
......@@ -197,18 +202,22 @@ Rboolean Rf_inherits(SEXP x, const char * klass) {
Rboolean Rf_isReal(SEXP x) {
unimplemented("Rf_isReal");
return FALSE;
}
Rboolean Rf_isSymbol(SEXP x) {
unimplemented("Rf_isSymbol");
return FALSE;
}
Rboolean Rf_isComplex(SEXP s) {
unimplemented("Rf_isComplex");
return FALSE;
}
Rboolean Rf_isEnvironment(SEXP s) {
unimplemented("Rf_isEnvironment");
return FALSE;
}
Rboolean Rf_isExpression(SEXP x) {
......@@ -245,6 +254,7 @@ Rboolean Rf_isString(SEXP s) {
cetype_t Rf_getCharCE(SEXP x) {
unimplemented("Rf_getCharCE");
return CE_NATIVE;
}
SEXP Rf_mkChar(const char *x) {
......@@ -256,6 +266,7 @@ SEXP Rf_mkChar(const char *x) {
SEXP Rf_mkCharCE(const char *x, cetype_t y) {
unimplemented("Rf_mkCharCE");
return NULL;
}
SEXP Rf_mkCharLenCE(const char *x, int len, cetype_t enc) {
......@@ -276,10 +287,12 @@ SEXP Rf_mkString(const char *s) {
int Rf_ncols(SEXP x) {
unimplemented("Rf_ncols");
return 0;
}
int Rf_nrows(SEXP x) {
unimplemented("Rf_nrows");
return 0;
}
......@@ -379,43 +392,33 @@ SEXP R_NewHashedEnv(SEXP parent, SEXP size) {
return checkRef(thisenv, result);
}
void Rf_iPsort(int *x, int n, int k)
{
JNIEnv *thisenv = getEnv();
unimplemented("Rf_iPsort");
}
void Rf_rPsort(double *x, int n, int k) {
JNIEnv *thisenv = getEnv();
unimplemented("Rf_rPsort");
}
void Rf_cPsort(Rcomplex *x, int n, int k) {
JNIEnv *thisenv = getEnv();
unimplemented("Rf_cPsort");
}
SEXP Rf_classgets(SEXP x, SEXP y) {
unimplemented("Rf_classgets");
return NULL;
}
const char *Rf_translateChar(SEXP x) {
unimplemented("Rf_translateChar");
return NULL;
}
const char *Rf_translateChar0(SEXP x) {
unimplemented("Rf_translateChar0");
return NULL;
}
const char *Rf_translateCharUTF8(SEXP x) {
unimplemented("Rf_translateCharUTF8");
return NULL;
}
const char *Rf_type2char(SEXPTYPE x) {
unimplemented("Rf_type2char");
return NULL;
}
SEXP Rf_type2str(SEXPTYPE x) {
unimplemented("Rf_type2str");
return NULL;
}
......@@ -24,6 +24,9 @@
#define RFFIUTILS_H
#include <jni.h>
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#include <Rinternals.h>
#include <setjmp.h>
......
......@@ -45,6 +45,7 @@ SEXP Rf_asChar(SEXP x){
SEXP Rf_coerceVector(SEXP x, SEXPTYPE t){
unimplemented("Rf_coerceVector");
return NULL;
}
SEXP Rf_PairToVectorList(SEXP x){
......
......@@ -90,11 +90,19 @@ int R_NaInt; /* NA_INTEGER:= INT_MIN currently */
// from Defn.h
const char* R_Home;
const char* R_TempDir;
Rboolean R_Visible; // ignored
Rboolean R_interrupts_suspended; // ignored
int R_interrupts_pending; // ignored
Rboolean mbcslocale; // ignored
Rboolean useaqua; // ignored
// various ignored flags and variables:
Rboolean R_Visible;
Rboolean R_Interactive;
Rboolean R_interrupts_suspended;
int R_interrupts_pending;
Rboolean mbcslocale;
Rboolean useaqua;
char OutDec = '.';
Rboolean utf8locale = FALSE;
Rboolean mbcslocale = FALSE;
Rboolean latin1locale = FALSE;
int R_dec_min_exponent = -308;
jmethodID getGlobalEnvMethodID;
jmethodID getBaseEnvMethodID;
......
......@@ -133,7 +133,7 @@ Rbyte *RAW(SEXP x){
data = (*thisenv)->GetByteArrayElements(thisenv, byteArray, NULL);
addCopiedObject(thisenv, x, RAWSXP, byteArray, data);
}
return data;
return (Rbyte*) data;
}
......
......@@ -30,6 +30,7 @@ import com.oracle.truffle.r.runtime.REnvVars;
import com.oracle.truffle.r.runtime.RError;
import com.oracle.truffle.r.runtime.RInternalError;
import com.oracle.truffle.r.runtime.RRuntime;
import com.oracle.truffle.r.runtime.context.RContext;
import com.oracle.truffle.r.runtime.data.RDataFactory;
import com.oracle.truffle.r.runtime.data.RMissing;
import com.oracle.truffle.r.runtime.data.RNull;
......@@ -130,7 +131,11 @@ public class CallRFFIWithJNI implements CallRFFI {
try {
DLL.load(librffiPath, ForceRTLDGlobal, false);
} catch (DLLException ex) {
throw RError.error(RError.NO_NODE, ex);
if (RContext.getRRuntimeASTAccess() != null) {
throw RError.error(RError.NO_NODE, ex);
} else {
throw new RInternalError(ex, "error while loading " + librffiPath);
}
}
System.load(librffiPath);
initialize(RVariables.values());
......
......@@ -63,12 +63,6 @@ public final class RError extends RuntimeException {
this.msg = msg;
this.args = args;
}
@SuppressWarnings("sync-override")
@Override
public Throwable fillInStackTrace() {
return null;
}
}
/**
......
......@@ -130,7 +130,11 @@ public final class Utils {
if (RContext.getInstance().getOptions().getString(RCmdOption.DEBUGGER) != null) {
throw new DebugExitException();
} else {
RContext.getInstance().destroy();
try {
RContext.getInstance().destroy();
} catch (Throwable t) {
// ignore
}
System.exit(status);
return null;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment