From 87408e527d14888f7921dafc8724c638e1d86ecf Mon Sep 17 00:00:00 2001 From: Sandipan Das Date: Sat, 6 Feb 2021 17:51:30 +0530 Subject: [PATCH] arch-power: Update copyrights Change-Id: Ifabd1e7178b5250767a2b560b57570512b732278 Signed-off-by: Sandipan Das --- src/arch/power/SConscript | 1 + src/arch/power/decoder.hh | 1 + src/arch/power/insts/branch.cc | 1 + src/arch/power/insts/branch.hh | 1 + src/arch/power/insts/integer.cc | 1 + src/arch/power/insts/integer.hh | 1 + src/arch/power/insts/mem.cc | 1 + src/arch/power/insts/mem.hh | 1 + src/arch/power/isa.hh | 1 + src/arch/power/isa/bitfields.isa | 1 + src/arch/power/isa/decoder.isa | 1 + src/arch/power/isa/formats/branch.isa | 1 + src/arch/power/isa/formats/integer.isa | 1 + src/arch/power/isa/formats/mem.isa | 1 + src/arch/power/isa/formats/unimp.isa | 1 + src/arch/power/isa/formats/unknown.isa | 1 + src/arch/power/isa/formats/util.isa | 1 + src/arch/power/isa/operands.isa | 1 + src/arch/power/isa_traits.hh | 1 + src/arch/power/linux/se_workload.cc | 2 ++ src/arch/power/miscregs.hh | 1 + src/arch/power/process.cc | 1 + src/arch/power/process.hh | 1 + src/arch/power/registers.hh | 1 + src/arch/power/remote_gdb.cc | 1 + src/arch/power/remote_gdb.hh | 1 + src/arch/power/types.hh | 1 + 27 files changed, 28 insertions(+) diff --git a/src/arch/power/SConscript b/src/arch/power/SConscript index 9b297eba6..46d572ec6 100644 --- a/src/arch/power/SConscript +++ b/src/arch/power/SConscript @@ -2,6 +2,7 @@ # Copyright (c) 2009 The University of Edinburgh # Copyright (c) 2020 LabWare +# Copyright (c) 2021 IBM Corporation # All rights reserved. # # Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/decoder.hh b/src/arch/power/decoder.hh index c30014cce..e6982b9ca 100644 --- a/src/arch/power/decoder.hh +++ b/src/arch/power/decoder.hh @@ -1,5 +1,6 @@ /* * Copyright (c) 2012 Google + * Copyright (c) 2021 IBM Corporation * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/insts/branch.cc b/src/arch/power/insts/branch.cc index f54185aef..546ccbcf7 100644 --- a/src/arch/power/insts/branch.cc +++ b/src/arch/power/insts/branch.cc @@ -1,5 +1,6 @@ /* * Copyright (c) 2009 The University of Edinburgh + * Copyright (c) 2021 IBM Corporation * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/insts/branch.hh b/src/arch/power/insts/branch.hh index 40555aaac..d5042e565 100644 --- a/src/arch/power/insts/branch.hh +++ b/src/arch/power/insts/branch.hh @@ -1,5 +1,6 @@ /* Copyright (c) 2007-2008 The Florida State University * Copyright (c) 2009 The University of Edinburgh + * Copyright (c) 2021 IBM Corporation * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/insts/integer.cc b/src/arch/power/insts/integer.cc index c43791bc9..d51d17e32 100644 --- a/src/arch/power/insts/integer.cc +++ b/src/arch/power/insts/integer.cc @@ -1,5 +1,6 @@ /* * Copyright (c) 2009 The University of Edinburgh + * Copyright (c) 2021 IBM Corporation * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/insts/integer.hh b/src/arch/power/insts/integer.hh index a2692e2cb..4a26c1bb8 100644 --- a/src/arch/power/insts/integer.hh +++ b/src/arch/power/insts/integer.hh @@ -1,5 +1,6 @@ /* * Copyright (c) 2009 The University of Edinburgh + * Copyright (c) 2021 IBM Corporation * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/insts/mem.cc b/src/arch/power/insts/mem.cc index 94508a7ce..eb1732910 100644 --- a/src/arch/power/insts/mem.cc +++ b/src/arch/power/insts/mem.cc @@ -1,5 +1,6 @@ /* * Copyright (c) 2009 The University of Edinburgh + * Copyright (c) 2021 IBM Corporation * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/insts/mem.hh b/src/arch/power/insts/mem.hh index f800ae3d5..9dcbb0f03 100644 --- a/src/arch/power/insts/mem.hh +++ b/src/arch/power/insts/mem.hh @@ -1,5 +1,6 @@ /* * Copyright (c) 2009 The University of Edinburgh + * Copyright (c) 2021 IBM Corporation * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/isa.hh b/src/arch/power/isa.hh index 557858f0a..bf762a7b9 100644 --- a/src/arch/power/isa.hh +++ b/src/arch/power/isa.hh @@ -1,6 +1,7 @@ /* * Copyright (c) 2009 The Regents of The University of Michigan * Copyright (c) 2009 The University of Edinburgh + * Copyright (c) 2021 IBM Corporation * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/isa/bitfields.isa b/src/arch/power/isa/bitfields.isa index 276242eae..f38154c66 100644 --- a/src/arch/power/isa/bitfields.isa +++ b/src/arch/power/isa/bitfields.isa @@ -1,6 +1,7 @@ // -*- mode:c++ -*- // Copyright (c) 2009 The University of Edinburgh +// Copyright (c) 2021 IBM Corporation // All rights reserved. // // Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/isa/decoder.isa b/src/arch/power/isa/decoder.isa index 1db81599b..37917ecbf 100644 --- a/src/arch/power/isa/decoder.isa +++ b/src/arch/power/isa/decoder.isa @@ -1,6 +1,7 @@ // -*- mode:c++ -*- // Copyright (c) 2009 The University of Edinburgh +// Copyright (c) 2021 IBM Corporation // All rights reserved. // // Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/isa/formats/branch.isa b/src/arch/power/isa/formats/branch.isa index 29f1df3b9..74be74524 100644 --- a/src/arch/power/isa/formats/branch.isa +++ b/src/arch/power/isa/formats/branch.isa @@ -1,6 +1,7 @@ // -*- mode:c++ -*- // Copyright (c) 2009 The University of Edinburgh +// Copyright (c) 2021 IBM Corporation // All rights reserved. // // Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/isa/formats/integer.isa b/src/arch/power/isa/formats/integer.isa index 5a353d0ae..72797f82c 100644 --- a/src/arch/power/isa/formats/integer.isa +++ b/src/arch/power/isa/formats/integer.isa @@ -1,6 +1,7 @@ // -*- mode:c++ -*- // Copyright (c) 2009 The University of Edinburgh +// Copyright (c) 2021 IBM Corporation // All rights reserved. // // Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/isa/formats/mem.isa b/src/arch/power/isa/formats/mem.isa index 599674ff0..a8b64515a 100644 --- a/src/arch/power/isa/formats/mem.isa +++ b/src/arch/power/isa/formats/mem.isa @@ -1,6 +1,7 @@ // -*- mode:c++ -*- // Copyright (c) 2009 The University of Edinburgh +// Copyright (c) 2021 IBM Corporation // All rights reserved. // // Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/isa/formats/unimp.isa b/src/arch/power/isa/formats/unimp.isa index a3f4692c8..96cb83ca6 100644 --- a/src/arch/power/isa/formats/unimp.isa +++ b/src/arch/power/isa/formats/unimp.isa @@ -2,6 +2,7 @@ // Copyright (c) 2007-2008 The Florida State University // Copyright (c) 2009 The University of Edinburgh +// Copyright (c) 2021 IBM Corporation // All rights reserved. // // Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/isa/formats/unknown.isa b/src/arch/power/isa/formats/unknown.isa index d83f79cf2..36325ab7e 100644 --- a/src/arch/power/isa/formats/unknown.isa +++ b/src/arch/power/isa/formats/unknown.isa @@ -2,6 +2,7 @@ // Copyright (c) 2007-2008 The Florida State University // Copyright (c) 2009 The University of Edinburgh +// Copyright (c) 2021 IBM Corporation // All rights reserved. // // Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/isa/formats/util.isa b/src/arch/power/isa/formats/util.isa index ccb1254ec..62c624c8d 100644 --- a/src/arch/power/isa/formats/util.isa +++ b/src/arch/power/isa/formats/util.isa @@ -2,6 +2,7 @@ // Copyright (c) 2003-2005 The Regents of The University of Michigan // Copyright (c) 2009 The University of Edinburgh +// Copyright (c) 2021 IBM Corporation // All rights reserved. // // Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/isa/operands.isa b/src/arch/power/isa/operands.isa index 2b4fb27bf..da093106a 100644 --- a/src/arch/power/isa/operands.isa +++ b/src/arch/power/isa/operands.isa @@ -1,6 +1,7 @@ // -*- mode:c++ -*- // Copyright (c) 2009 The University of Edinburgh +// Copyright (c) 2021 IBM Corporation // All rights reserved. // // Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/isa_traits.hh b/src/arch/power/isa_traits.hh index fd230ebe9..586521f21 100644 --- a/src/arch/power/isa_traits.hh +++ b/src/arch/power/isa_traits.hh @@ -2,6 +2,7 @@ * Copyright (c) 2003-2005 The Regents of The University of Michigan * Copyright (c) 2007-2008 The Florida State University * Copyright (c) 2009 The University of Edinburgh + * Copyright (c) 2021 IBM Corporation * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/linux/se_workload.cc b/src/arch/power/linux/se_workload.cc index 091fd35b8..a7e8f2649 100644 --- a/src/arch/power/linux/se_workload.cc +++ b/src/arch/power/linux/se_workload.cc @@ -3,6 +3,8 @@ * Copyright 2007-2008 The Florida State University * Copyright 2009 The University of Edinburgh * Copyright 2020 Google Inc. + * Copyright 2021 IBM Corporation + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/src/arch/power/miscregs.hh b/src/arch/power/miscregs.hh index 1eae96819..8106d674d 100644 --- a/src/arch/power/miscregs.hh +++ b/src/arch/power/miscregs.hh @@ -1,5 +1,6 @@ /* * Copyright (c) 2009 The University of Edinburgh + * Copyright (c) 2021 IBM Corporation * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/process.cc b/src/arch/power/process.cc index ea1972de3..15ba202c9 100644 --- a/src/arch/power/process.cc +++ b/src/arch/power/process.cc @@ -1,6 +1,7 @@ /* * Copyright (c) 2007-2008 The Florida State University * Copyright (c) 2009 The University of Edinburgh + * Copyright (c) 2021 IBM Corporation * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/process.hh b/src/arch/power/process.hh index 337d2df14..bfca20ea9 100644 --- a/src/arch/power/process.hh +++ b/src/arch/power/process.hh @@ -1,6 +1,7 @@ /* * Copyright (c) 2007-2008 The Florida State University * Copyright (c) 2009 The University of Edinburgh + * Copyright (c) 2021 IBM Corporation * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/registers.hh b/src/arch/power/registers.hh index 2745a92c2..ef090832f 100644 --- a/src/arch/power/registers.hh +++ b/src/arch/power/registers.hh @@ -1,5 +1,6 @@ /* * Copyright (c) 2009 The University of Edinburgh + * Copyright (c) 2021 IBM Corporation * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/remote_gdb.cc b/src/arch/power/remote_gdb.cc index 57a41f5cc..f91aa7572 100644 --- a/src/arch/power/remote_gdb.cc +++ b/src/arch/power/remote_gdb.cc @@ -2,6 +2,7 @@ * Copyright 2015 LabWare * Copyright 2014 Google, Inc. * Copyright (c) 2010 ARM Limited + * Copyright (c) 2021 IBM Corporation * All rights reserved * * The license below extends only to copyright in the software and shall diff --git a/src/arch/power/remote_gdb.hh b/src/arch/power/remote_gdb.hh index 50b4f7957..37c5b687a 100644 --- a/src/arch/power/remote_gdb.hh +++ b/src/arch/power/remote_gdb.hh @@ -3,6 +3,7 @@ * Copyright (c) 2002-2005 The Regents of The University of Michigan * Copyright (c) 2007-2008 The Florida State University * Copyright (c) 2009 The University of Edinburgh + * Copyright (c) 2021 IBM Corporation * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/arch/power/types.hh b/src/arch/power/types.hh index c5a8f0fd1..b7f0159d9 100644 --- a/src/arch/power/types.hh +++ b/src/arch/power/types.hh @@ -1,5 +1,6 @@ /* * Copyright (c) 2009 The University of Edinburgh + * Copyright (c) 2021 IBM Corporation * All rights reserved. * * Redistribution and use in source and binary forms, with or without -- 2.30.2