Skip to content

Commit 1cf8f4a

Browse files
committed
Removed single line annotation comments from #include directives
Removed annotation describing feature included from the file. Updated forward copyright dates to 2019 Issue: #3521 Signed-off-by: Rajlaxmi <rajlaxmisah@gmail.com>
1 parent 9834082 commit 1cf8f4a

File tree

603 files changed

+6989
-6989
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

603 files changed

+6989
-6989
lines changed

compiler/aarch64/codegen/OMRMachine.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2018, 2018 IBM Corp. and others
2+
* Copyright (c) 2018, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -19,8 +19,8 @@
1919
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception
2020
*******************************************************************************/
2121

22-
#include <stddef.h> // for NULL, etc
23-
#include <stdint.h> // for uint16_t, int32_t, etc
22+
#include <stddef.h>
23+
#include <stdint.h>
2424

2525
#include "codegen/ARM64Instruction.hpp"
2626
#include "codegen/BackingStore.hpp"

compiler/aarch64/codegen/RealRegister.hpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2018, 2018 IBM Corp. and others
2+
* Copyright (c) 2018, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -24,11 +24,11 @@
2424

2525
#include "codegen/OMRRealRegister.hpp"
2626

27-
#include <stddef.h> // for NULL
28-
#include <stdint.h> // for uint16_t
29-
#include "codegen/Register.hpp" // for Register
30-
#include "codegen/RegisterConstants.hpp" // for TR_RegisterKinds
31-
#include "infra/Assert.hpp" // for TR_ASSERT
27+
#include <stddef.h>
28+
#include <stdint.h>
29+
#include "codegen/Register.hpp"
30+
#include "codegen/RegisterConstants.hpp"
31+
#include "infra/Assert.hpp"
3232

3333
namespace TR { class CodeGenerator; }
3434

compiler/aarch64/env/OMRDebugEnv.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2018, 2018 IBM Corp. and others
2+
* Copyright (c) 2018, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -34,7 +34,7 @@ namespace OMR { typedef OMR::ARM64::DebugEnv DebugEnvConnector; }
3434
#endif
3535

3636
#include "compiler/env/OMRDebugEnv.hpp"
37-
#include "infra/Annotations.hpp" // for OMR_EXTENSIBLE
37+
#include "infra/Annotations.hpp"
3838

3939
namespace OMR
4040
{

compiler/arm/codegen/ARMBinaryEncoding.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2018 IBM Corp. and others
2+
* Copyright (c) 2000, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -19,7 +19,7 @@
1919
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception
2020
*******************************************************************************/
2121

22-
#include <algorithm> // for std::find
22+
#include <algorithm>
2323
#include "codegen/CodeGenerator.hpp"
2424
#include "il/Node.hpp"
2525
#include "il/Node_inlines.hpp"
@@ -28,7 +28,7 @@
2828
#include "arm/codegen/ARMInstruction.hpp"
2929
#include "infra/Bit.hpp"
3030
#ifdef J9_PROJECT_SPECIFIC
31-
#include "env/CHTable.hpp" // for TR_VirtualGuardSite
31+
#include "env/CHTable.hpp"
3232
#endif
3333
#include "env/CompilerEnv.hpp"
3434

compiler/arm/codegen/ConstantDataSnippet.cpp

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2016 IBM Corp. and others
2+
* Copyright (c) 2000, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -23,18 +23,18 @@
2323

2424
#include "codegen/FrontEnd.hpp"
2525
#include "codegen/Relocation.hpp"
26-
#include "compile/Compilation.hpp" // for Compilation, comp
26+
#include "compile/Compilation.hpp"
2727
#include "control/Options.hpp"
2828
#include "control/Options_inlines.hpp"
2929
#include "env/CompilerEnv.hpp"
3030
#include "env/IO.hpp"
31-
#include "env/jittypes.h" // for intptrj_t
32-
#include "il/ILOpCodes.hpp" // for ILOpCodes::aconst
33-
#include "il/Node.hpp" // for Node
34-
#include "il/Symbol.hpp" // for Symbol
35-
#include "il/symbol/StaticSymbol.hpp" // for StaticSymbol
36-
#include "infra/Assert.hpp" // for TR_ASSERT
37-
#include "infra/Bit.hpp" // for intParts
31+
#include "env/jittypes.h"
32+
#include "il/ILOpCodes.hpp"
33+
#include "il/Node.hpp"
34+
#include "il/Symbol.hpp"
35+
#include "il/symbol/StaticSymbol.hpp"
36+
#include "infra/Assert.hpp"
37+
#include "infra/Bit.hpp"
3838
#include "runtime/Runtime.hpp"
3939

4040
int32_t TR::ARMConstantDataSnippet::addConstantRequest(void *v,

compiler/arm/codegen/ConstantDataSnippet.hpp

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2016 IBM Corp. and others
2+
* Copyright (c) 2000, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -22,15 +22,15 @@
2222
#ifndef ARMCONSTANTDATASNIPPET_INCL
2323
#define ARMCONSTANTDATASNIPPET_INCL
2424

25-
#include <stddef.h> // for NULL
26-
#include <stdint.h> // for uint8_t, int32_t, etc
27-
#include "codegen/CodeGenerator.hpp" // for CodeGenerator
28-
#include "codegen/Instruction.hpp" // for Instruction
29-
#include "env/jittypes.h" // for intptrj_t
30-
#include "env/TRMemory.hpp" // for TR_Memory, etc
31-
#include "il/DataTypes.hpp" // for DataTypes
32-
#include "infra/Array.hpp" // for TR_Array
33-
#include "infra/List.hpp" // for List
25+
#include <stddef.h>
26+
#include <stdint.h>
27+
#include "codegen/CodeGenerator.hpp"
28+
#include "codegen/Instruction.hpp"
29+
#include "env/jittypes.h"
30+
#include "env/TRMemory.hpp"
31+
#include "il/DataTypes.hpp"
32+
#include "infra/Array.hpp"
33+
#include "infra/List.hpp"
3434

3535
namespace TR { class Node; }
3636

compiler/arm/codegen/ControlFlowEvaluator.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2018 IBM Corp. and others
2+
* Copyright (c) 2000, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -34,7 +34,7 @@
3434
#include "codegen/RegisterPair.hpp"
3535
#include "codegen/TreeEvaluator.hpp"
3636
#include "compile/SymbolReferenceTable.hpp"
37-
#include "compile/VirtualGuard.hpp" // for TR_VirtualGuard
37+
#include "compile/VirtualGuard.hpp"
3838
#include "env/CompilerEnv.hpp"
3939
#include "infra/Bit.hpp"
4040
#include "il/Block.hpp"
@@ -44,7 +44,7 @@
4444
#include "il/TreeTop_inlines.hpp"
4545

4646
#ifdef J9_PROJECT_SPECIFIC
47-
#include "env/CHTable.hpp" // for TR_AOTGuardSite, etc
47+
#include "env/CHTable.hpp"
4848
#endif
4949

5050
static void lookupScheme1(TR::CodeGenerator *cg, TR::Node *node, bool unbalanced);

compiler/arm/codegen/Linkage.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2016 IBM Corp. and others
2+
* Copyright (c) 2000, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -24,7 +24,7 @@
2424

2525
#include "codegen/OMRLinkage.hpp"
2626

27-
#include "infra/Annotations.hpp" // for OMR_EXTENSIBLE
27+
#include "infra/Annotations.hpp"
2828

2929
namespace TR
3030
{

compiler/arm/codegen/OMRMachine.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2018 IBM Corp. and others
2+
* Copyright (c) 2000, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -19,7 +19,7 @@
1919
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception
2020
*******************************************************************************/
2121

22-
#include <algorithm> // for std::find
22+
#include <algorithm>
2323
#include "codegen/BackingStore.hpp"
2424
#include "codegen/CodeGenerator.hpp"
2525
#include "codegen/ARMInstruction.hpp"

compiler/arm/codegen/OMRRegisterDependency.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2018 IBM Corp. and others
2+
* Copyright (c) 2000, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -19,7 +19,7 @@
1919
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception
2020
*******************************************************************************/
2121

22-
#include <algorithm> // for std::find
22+
#include <algorithm>
2323
#include "codegen/BackingStore.hpp"
2424
#include "codegen/CodeGenerator.hpp"
2525
#include "codegen/GenerateInstructions.hpp"

compiler/arm/codegen/OMRSnippet.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2016 IBM Corp. and others
2+
* Copyright (c) 2000, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -20,7 +20,7 @@
2020
*******************************************************************************/
2121

2222
#include "codegen/Snippet.hpp"
23-
#include "codegen/CodeGenerator.hpp" // for CodeGenerator
23+
#include "codegen/CodeGenerator.hpp"
2424

2525

2626
OMR::ARM::Snippet::Snippet(

compiler/arm/codegen/OMRTreeEvaluator.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2018 IBM Corp. and others
2+
* Copyright (c) 2000, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -35,8 +35,8 @@
3535
#include "codegen/Register.hpp"
3636
#include "codegen/RegisterPair.hpp"
3737
#include "codegen/TreeEvaluator.hpp"
38-
#include "compile/VirtualGuard.hpp" // for TR_VirtualGuard
39-
#include "env/jittypes.h" // for intptrj_t
38+
#include "compile/VirtualGuard.hpp"
39+
#include "env/jittypes.h"
4040
#include "env/CompilerEnv.hpp"
4141
#include "il/Block.hpp"
4242
#include "il/Node.hpp"

compiler/arm/env/OMRCompilerEnv.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2016 IBM Corp. and others
2+
* Copyright (c) 2000, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -34,7 +34,7 @@ namespace OMR { typedef OMR::ARM::CompilerEnv CompilerEnvConnector; }
3434
#endif
3535

3636
#include "compiler/env/OMRCompilerEnv.hpp"
37-
#include "infra/Annotations.hpp" // for OMR_EXTENSIBLE
37+
#include "infra/Annotations.hpp"
3838
#include "env/RawAllocator.hpp"
3939

4040

compiler/codegen/Analyser.cpp

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2017 IBM Corp. and others
2+
* Copyright (c) 2000, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -21,12 +21,12 @@
2121

2222
#include "codegen/Analyser.hpp"
2323

24-
#include "compile/Compilation.hpp" // for Compilation
25-
#include "compile/SymbolReferenceTable.hpp" // for SymbolReferenceTable, etc
26-
#include "il/ILOps.hpp" // for ILOpCode
27-
#include "il/Node.hpp" // for Node
28-
#include "il/Node_inlines.hpp" // for Node::getReferenceCount
29-
#include "il/Symbol.hpp" // for Symbol
24+
#include "compile/Compilation.hpp"
25+
#include "compile/SymbolReferenceTable.hpp"
26+
#include "il/ILOps.hpp"
27+
#include "il/Node.hpp"
28+
#include "il/Node_inlines.hpp"
29+
#include "il/Symbol.hpp"
3030

3131
namespace TR { class SymbolReference; }
3232

compiler/codegen/Analyser.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2016 IBM Corp. and others
2+
* Copyright (c) 2000, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -24,8 +24,8 @@
2424

2525
#define NUM_ACTIONS 64
2626

27-
#include <stddef.h> // for NULL
28-
#include <stdint.h> // for uint8_t
27+
#include <stddef.h>
28+
#include <stdint.h>
2929

3030
#define Clob2 0x01
3131
#define Mem2 0x02

compiler/codegen/BackingStore.hpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2016 IBM Corp. and others
2+
* Copyright (c) 2000, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -22,11 +22,11 @@
2222
#ifndef BACKINGSTORE_INCL
2323
#define BACKINGSTORE_INCL
2424

25-
#include <stdint.h> // for int32_t, uint8_t, int8_t
26-
#include "compile/Compilation.hpp" // for Compilation, comp
27-
#include "env/TRMemory.hpp" // for TR_Memory, etc
28-
#include "il/SymbolReference.hpp" // for SymbolReference
29-
#include "infra/Flags.hpp" // for flags8_t
25+
#include <stdint.h>
26+
#include "compile/Compilation.hpp"
27+
#include "env/TRMemory.hpp"
28+
#include "il/SymbolReference.hpp"
29+
#include "infra/Flags.hpp"
3030

3131
namespace TR { class Symbol; }
3232
namespace TR { class SymbolReferenceTable; }

0 commit comments

Comments
 (0)