Update copyright notices

pull/212/head
Dibyendu Majumdar 3 years ago
parent 61a8ac889f
commit 77cd6b9527

@ -10,7 +10,6 @@ set(PUBLIC_HEADERS
set(HEADERS
${PUBLIC_HEADERS}
src/allocate.h
src/bitset.h
src/ptrlist.h
src/fnv_hash.h
src/graph.h
@ -18,10 +17,8 @@ set(HEADERS
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)
@ -30,12 +27,10 @@ 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
@ -43,10 +38,8 @@ set(SRCS
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
)

@ -5,7 +5,7 @@
*/
/*
** Portions Copyright (C) 2015-2020 Dibyendu Majumdar
** Portions Copyright (C) 2015-2021 Dibyendu Majumdar
*/

@ -5,7 +5,7 @@
*/
/*
** Portions Copyright (C) 2015-2020 Dibyendu Majumdar
** Portions Copyright (C) 2015-2021 Dibyendu Majumdar
*/
#define lcode_c

@ -5,7 +5,7 @@
*/
/*
** Portions Copyright (C) 2015-2020 Dibyendu Majumdar
** Portions Copyright (C) 2015-2021 Dibyendu Majumdar
*/
#define ldo_c

@ -5,7 +5,7 @@
*/
/*
** Portions Copyright (C) 2015-2020 Dibyendu Majumdar
** Portions Copyright (C) 2015-2021 Dibyendu Majumdar
*/

@ -5,7 +5,7 @@
*/
/*
** Portions Copyright (C) 2015-2020 Dibyendu Majumdar
** Portions Copyright (C) 2015-2021 Dibyendu Majumdar
*/

@ -5,7 +5,7 @@
*/
/*
** Portions Copyright (C) 2015-2020 Dibyendu Majumdar
** Portions Copyright (C) 2015-2021 Dibyendu Majumdar
*/

@ -5,7 +5,7 @@
*/
/*
** Portions Copyright (C) 2015-2020 Dibyendu Majumdar
** Portions Copyright (C) 2015-2021 Dibyendu Majumdar
*/
#define lparser_c

@ -5,7 +5,7 @@
*/
/*
** Portions Copyright (C) 2015-2020 Dibyendu Majumdar
** Portions Copyright (C) 2015-2021 Dibyendu Majumdar
*/
#define lundump_c

@ -5,7 +5,7 @@
*/
/*
** Portions Copyright (C) 2015-2020 Dibyendu Majumdar
** Portions Copyright (C) 2015-2021 Dibyendu Majumdar
*/

@ -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

@ -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

@ -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

@ -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

@ -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

@ -1,5 +1,5 @@
/*
Copyright (C) 2018-2020 Dibyendu Majumdar
Copyright (C) 2018-2021 Dibyendu Majumdar
*/
#include "ravi_membuf.h"

@ -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

@ -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

@ -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

Loading…
Cancel
Save