Skip to content

Commit

Permalink
Update copyright notices
Browse files Browse the repository at this point in the history
  • Loading branch information
dibyendumajumdar committed Jan 3, 2021
1 parent 61a8ac8 commit 77cd6b9
Show file tree
Hide file tree
Showing 19 changed files with 39 additions and 24 deletions.
7 changes: 0 additions & 7 deletions ravicomp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,15 @@ set(PUBLIC_HEADERS
set(HEADERS
${PUBLIC_HEADERS}
src/allocate.h
src/bitset.h
src/ptrlist.h
src/fnv_hash.h
src/graph.h
src/hash_table.h
src/set.h
src/membuf.h
src/cfg.h
src/dominator.h
src/linearizer.h
src/common.h
src/dataflow_framework.h
src/optimizer.h
src/parser.h
src/codegen.h)
Expand All @@ -30,23 +27,19 @@ set(SRCS
src/allocate.c
src/ast_walker.c
src/ast_simplify.c
src/bitset.c
src/ptrlist.c
src/fnv_hash.c
src/graph.c
src/cfg.c
src/dominator.c
src/hash_table.c
src/set.c
src/lexer.c
src/parser.c
src/ast_printer.c
src/typechecker.c
src/linearizer.c
src/dataflow_framework.c
src/opt_unusedcode.c
src/membuf.c
src/df_liveness.c
src/codegen.c
src/ravi_binding.c
)
Expand Down
2 changes: 1 addition & 1 deletion src/lapi.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

/*
** Portions Copyright (C) 2015-2020 Dibyendu Majumdar
** Portions Copyright (C) 2015-2021 Dibyendu Majumdar
*/


Expand Down
2 changes: 1 addition & 1 deletion src/lcode.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

/*
** Portions Copyright (C) 2015-2020 Dibyendu Majumdar
** Portions Copyright (C) 2015-2021 Dibyendu Majumdar
*/

#define lcode_c
Expand Down
2 changes: 1 addition & 1 deletion src/ldo.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

/*
** Portions Copyright (C) 2015-2020 Dibyendu Majumdar
** Portions Copyright (C) 2015-2021 Dibyendu Majumdar
*/

#define ldo_c
Expand Down
2 changes: 1 addition & 1 deletion src/ldump.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

/*
** Portions Copyright (C) 2015-2020 Dibyendu Majumdar
** Portions Copyright (C) 2015-2021 Dibyendu Majumdar
*/


Expand Down
2 changes: 1 addition & 1 deletion src/lfunc.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

/*
** Portions Copyright (C) 2015-2020 Dibyendu Majumdar
** Portions Copyright (C) 2015-2021 Dibyendu Majumdar
*/


Expand Down
2 changes: 1 addition & 1 deletion src/lopcodes.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

/*
** Portions Copyright (C) 2015-2020 Dibyendu Majumdar
** Portions Copyright (C) 2015-2021 Dibyendu Majumdar
*/


Expand Down
2 changes: 1 addition & 1 deletion src/lparser.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

/*
** Portions Copyright (C) 2015-2020 Dibyendu Majumdar
** Portions Copyright (C) 2015-2021 Dibyendu Majumdar
*/

#define lparser_c
Expand Down
2 changes: 1 addition & 1 deletion src/lundump.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

/*
** Portions Copyright (C) 2015-2020 Dibyendu Majumdar
** Portions Copyright (C) 2015-2021 Dibyendu Majumdar
*/

#define lundump_c
Expand Down
2 changes: 1 addition & 1 deletion src/lvm.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

/*
** Portions Copyright (C) 2015-2020 Dibyendu Majumdar
** Portions Copyright (C) 2015-2021 Dibyendu Majumdar
*/


Expand Down
22 changes: 22 additions & 0 deletions src/ravi_complib.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
/******************************************************************************
* Copyright (C) 2020-2021 Dibyendu Majumdar
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
******************************************************************************/
#include "ravi_api.h"

#define LUA_CORE
Expand Down
2 changes: 1 addition & 1 deletion src/ravi_jit.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************************************************************
* Copyright (C) 2015-2020 Dibyendu Majumdar
* Copyright (C) 2015-2021 Dibyendu Majumdar
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
Expand Down
2 changes: 1 addition & 1 deletion src/ravi_jit.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************************************************************
* Copyright (C) 2015-2020 Dibyendu Majumdar
* Copyright (C) 2015-2021 Dibyendu Majumdar
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
Expand Down
2 changes: 1 addition & 1 deletion src/ravi_jitshared.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************************************************************
* Copyright (C) 2015-2020 Dibyendu Majumdar
* Copyright (C) 2015-2021 Dibyendu Majumdar
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
Expand Down
2 changes: 1 addition & 1 deletion src/ravi_jitshared.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************************************************************
* Copyright (C) 2015-2020 Dibyendu Majumdar
* Copyright (C) 2015-2021 Dibyendu Majumdar
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
Expand Down
2 changes: 1 addition & 1 deletion src/ravi_membuf.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (C) 2018-2020 Dibyendu Majumdar
Copyright (C) 2018-2021 Dibyendu Majumdar
*/

#include "ravi_membuf.h"
Expand Down
2 changes: 1 addition & 1 deletion src/ravi_mirjit.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************************************************************
* Copyright (C) 2019-2020 Dibyendu Majumdar
* Copyright (C) 2019-2021 Dibyendu Majumdar
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
Expand Down
2 changes: 1 addition & 1 deletion src/ravi_mirjit.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************************************************************
* Copyright (C) 2019-2020 Dibyendu Majumdar
* Copyright (C) 2019-2021 Dibyendu Majumdar
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
Expand Down
2 changes: 1 addition & 1 deletion src/ravi_nojit.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************************************************************
* Copyright (C) 2015-2020 Dibyendu Majumdar
* Copyright (C) 2015-2021 Dibyendu Majumdar
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
Expand Down

0 comments on commit 77cd6b9

Please sign in to comment.