Skip to content
This repository was archived by the owner on Jun 26, 2023. It is now read-only.

Commit 085808f

Browse files
authored
docs: Improve Doxygen documentation (#57)
* Inserting page template for more specific configurations * Changelog script * Add docstrings to classes and modules * Run Lint * Restore normal comments * Run lint
1 parent 4b4ac89 commit 085808f

25 files changed

+1140
-237
lines changed

.gitmodules

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
[submodule "docs/doxygen-awesome-css"]
2-
path = docs/doxygen-awesome-css
1+
[submodule "doxygen-awesome-css"]
2+
path = docs/plugin/doxygen-awesome-css
33
url = https://github.com/jothepro/doxygen-awesome-css.git

Doxyfile

+198-93
Large diffs are not rendered by default.

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ docs-clean:
109109
docs-api:
110110
mkdir -p build
111111
doxygen Doxyfile
112+
./scripts/format_releases.sh
112113

113114
.PHONY: docs-build
114115
docs-build: docs-clean docs-api

arx/include/codegen.h

+4
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@
2727
#include "parser.h"
2828
#include "utils.h"
2929

30+
/**
31+
* @brief
32+
*
33+
*/
3034
struct DebugInfo {
3135
llvm::DICompileUnit* TheCU;
3236
llvm::DIType* DblTy;

arx/include/error.h

+10-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,19 @@
33
#include <stdio.h>
44
#include <memory>
55

6-
// "llvm/IR/Value.h"
76
namespace llvm {
7+
/**
8+
* @brief
9+
* "llvm/IR/Value.h"
10+
*
11+
*/
812
class Value;
9-
}
13+
} // namespace llvm
1014

11-
/// LogError* - These are little helper functions for error handling.
15+
/**
16+
* @brief LogError* - These are little helper functions for error handling.
17+
*
18+
*/
1219
template <typename T>
1320
std::unique_ptr<T> LogError(const char* Str) {
1421
fprintf(stderr, "Error: %s\n", Str);

arx/include/jit.h

+23-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
1-
//===- ArxJIT.h - A simple JIT for Arx --------*- C++
2-
//-*-===//
3-
//
4-
// Part of the LLVM Project, under the Apache License v2.0 with LLVM
5-
// Exceptions. See https://llvm.org/LICENSE.txt for license information.
6-
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7-
//
8-
//===----------------------------------------------------------------------===//
1+
/**
2+
*
3+
* @brief Include ArxJIT.h - A simple JIT for Arx in C++
4+
*
5+
*
6+
*
7+
*
8+
* Part of the LLVM Project, under the Apache License v2.0 with LLVM
9+
* Exceptions. See https://llvm.org/LICENSE.txt for license information.
10+
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
11+
*
12+
* ===----------------------------------------------------------------------===
13+
*/
914

1015
#ifndef LLVM_EXECUTIONENGINE_ORC_ArxJIT_H
1116
#define LLVM_EXECUTIONENGINE_ORC_ArxJIT_H
@@ -27,6 +32,11 @@
2732
namespace llvm {
2833
namespace orc {
2934

35+
/**
36+
* @brief Tokenize the known variables by the lexer
37+
*
38+
*
39+
*/
3040
class ArxJIT {
3141
private:
3242
std::unique_ptr<ExecutionSession> ES;
@@ -40,6 +50,11 @@ class ArxJIT {
4050
JITDylib& MainJD;
4151

4252
public:
53+
/**
54+
* @param ES
55+
* @param JTMB
56+
* @param DL
57+
*/
4358
ArxJIT(
4459
std::unique_ptr<ExecutionSession> ES,
4560
JITTargetMachineBuilder JTMB,

arx/include/lexer.h

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@
22

33
#include <string>
44

5-
// The lexer returns tokens [0-255] if it is an unknown character, otherwise
6-
// one of these for known things.
5+
/**
6+
* @brief Tokenize the known variables by the lexer
7+
*
8+
* The lexer returns tokens [0-255] if it is an unknown character, otherwise
9+
* one of these for known things.
10+
*/
711
enum Token {
812
tok_eof = -1,
913

arx/include/parser.h

+117-16
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,38 @@
1313
#include "lexer.h"
1414
#include "utils.h"
1515

16-
// #include <llvm/IR/Function.h>
16+
/**
17+
* @brief Include `llvm/IR/Function.h`
18+
*
19+
*
20+
*/
1721
namespace llvm {
1822
class Function;
1923
}
20-
// #include <llvm/IR/Value.h>
24+
25+
/**
26+
* @brief Include `llvm/IR/Value.h`
27+
*
28+
*
29+
*/
2130
namespace llvm {
2231
class Value;
2332
}
2433

2534
extern SourceLocation CurLoc;
2635

27-
/// ExprAST - Base class for all expression nodes.
36+
/**
37+
* @brief Base class for all expression nodes.
38+
*
39+
*
40+
*/
2841
class ExprAST {
2942
SourceLocation Loc;
3043

3144
public:
45+
/**
46+
* @param Loc
47+
*/
3248
ExprAST(SourceLocation Loc = CurLoc) : Loc(Loc) {}
3349
virtual ~ExprAST() = default;
3450
virtual llvm::Value* codegen() = 0;
@@ -43,9 +59,17 @@ class ExprAST {
4359
}
4460
};
4561

46-
/// NumberExprAST - Expression class for numeric literals like "1.0".
62+
/**
63+
* @brief Expression class for numeric literals like "1.0".
64+
*
65+
*
66+
*/
4767
class NumberExprAST : public ExprAST {
4868
public:
69+
/**
70+
*
71+
* @return
72+
*/
4973
double Val;
5074
NumberExprAST(double Val) : Val(Val) {}
5175
llvm::raw_ostream& dump(llvm::raw_ostream& out, int ind) override {
@@ -54,11 +78,18 @@ class NumberExprAST : public ExprAST {
5478
llvm::Value* codegen() override;
5579
};
5680

57-
/// VariableExprAST - Expression class for referencing a variable, like "a".
81+
/**
82+
* @brief Expression class for referencing a variable, like "a".
83+
*
84+
*/
5885
class VariableExprAST : public ExprAST {
5986
std::string Name;
6087

6188
public:
89+
/**
90+
* @param Loc
91+
* @param Name
92+
*/
6293
VariableExprAST(SourceLocation Loc, std::string Name)
6394
: ExprAST(Loc), Name(std::move(Name)) {}
6495
const std::string& getName() const {
@@ -70,12 +101,19 @@ class VariableExprAST : public ExprAST {
70101
}
71102
};
72103

73-
/// UnaryExprAST - Expression class for a unary operator.
104+
/**
105+
* @brief Expression class for a unary operator.
106+
*
107+
*/
74108
class UnaryExprAST : public ExprAST {
75109
char Opcode;
76110
std::unique_ptr<ExprAST> Operand;
77111

78112
public:
113+
/**
114+
* @param Opcode
115+
* @param Operand
116+
*/
79117
UnaryExprAST(char Opcode, std::unique_ptr<ExprAST> Operand)
80118
: Opcode(Opcode), Operand(std::move(Operand)) {}
81119
llvm::Value* codegen() override;
@@ -86,12 +124,21 @@ class UnaryExprAST : public ExprAST {
86124
}
87125
};
88126

89-
/// BinaryExprAST - Expression class for a binary operator.
127+
/**
128+
* @brief Expression class for a binary operator.
129+
*
130+
*/
90131
class BinaryExprAST : public ExprAST {
91132
char Op;
92133
std::unique_ptr<ExprAST> LHS, RHS;
93134

94135
public:
136+
/**
137+
* @param Loc
138+
* @param Op
139+
* @param LHS
140+
* @param RHS
141+
*/
95142
BinaryExprAST(
96143
SourceLocation Loc,
97144
char Op,
@@ -107,12 +154,20 @@ class BinaryExprAST : public ExprAST {
107154
}
108155
};
109156

110-
/// CallExprAST - Expression class for function calls.
157+
/**
158+
* @brief Expression class for function calls.
159+
*
160+
*/
111161
class CallExprAST : public ExprAST {
112162
std::string Callee;
113163
std::vector<std::unique_ptr<ExprAST>> Args;
114164

115165
public:
166+
/**
167+
* @param Loc
168+
* @param Callee
169+
* @param Args
170+
*/
116171
CallExprAST(
117172
SourceLocation Loc,
118173
std::string Callee,
@@ -127,11 +182,20 @@ class CallExprAST : public ExprAST {
127182
}
128183
};
129184

130-
/// IfExprAST - Expression class for if/then/else.
185+
/**
186+
* @brief Expression class for if/then/else.
187+
*
188+
*/
131189
class IfExprAST : public ExprAST {
132190
std::unique_ptr<ExprAST> Cond, Then, Else;
133191

134192
public:
193+
/**
194+
* @param Loc
195+
* @param Cond
196+
* @param Then
197+
* @param Else
198+
*/
135199
IfExprAST(
136200
SourceLocation Loc,
137201
std::unique_ptr<ExprAST> Cond,
@@ -151,12 +215,23 @@ class IfExprAST : public ExprAST {
151215
}
152216
};
153217

154-
/// ForExprAST - Expression class for for/in.
218+
/**
219+
* @brief Expression class for for/in.
220+
*
221+
*
222+
*/
155223
class ForExprAST : public ExprAST {
156224
std::string VarName;
157225
std::unique_ptr<ExprAST> Start, End, Step, Body;
158226

159227
public:
228+
/**
229+
* @param VarName
230+
* @param Start
231+
* @param End
232+
* @param Step
233+
* @param Body
234+
*/
160235
ForExprAST(
161236
std::string VarName,
162237
std::unique_ptr<ExprAST> Start,
@@ -179,12 +254,20 @@ class ForExprAST : public ExprAST {
179254
}
180255
};
181256

182-
/// VarExprAST - Expression class for var/in
257+
/**
258+
* @brief Expression class for var/in
259+
*
260+
*
261+
*/
183262
class VarExprAST : public ExprAST {
184263
std::vector<std::pair<std::string, std::unique_ptr<ExprAST>>> VarNames;
185264
std::unique_ptr<ExprAST> Body;
186265

187266
public:
267+
/**
268+
* @param VarNames
269+
* @param Body
270+
*/
188271
VarExprAST(
189272
std::vector<std::pair<std::string, std::unique_ptr<ExprAST>>> VarNames,
190273
std::unique_ptr<ExprAST> Body)
@@ -200,9 +283,12 @@ class VarExprAST : public ExprAST {
200283
}
201284
};
202285

203-
/// PrototypeAST - This class represents the "prototype" for a function,
204-
/// which captures its name, and its argument names (thus implicitly the number
205-
/// of arguments the function takes), as well as if it is an operator.
286+
/**
287+
@brief This class represents the "prototype" for a function.
288+
289+
Captures a function's name, and its argument names (thus implicitly the number
290+
of arguments the function takes), as well as if it is an operator.
291+
*/
206292
class PrototypeAST {
207293
std::string Name;
208294
std::vector<std::string> Args;
@@ -211,6 +297,13 @@ class PrototypeAST {
211297
int Line;
212298

213299
public:
300+
/**
301+
* @param Loc
302+
* @param Name
303+
* @param Args
304+
* @param IsOperator
305+
* @param Prec
306+
*/
214307
PrototypeAST(
215308
SourceLocation Loc,
216309
std::string Name,
@@ -248,12 +341,20 @@ class PrototypeAST {
248341
}
249342
};
250343

251-
/// FunctionAST - This class represents a function definition itself.
344+
/**
345+
* @brief This class represents a function definition itself.
346+
*
347+
*
348+
*/
252349
class FunctionAST {
253350
std::unique_ptr<PrototypeAST> Proto;
254351
std::unique_ptr<ExprAST> Body;
255352

256353
public:
354+
/**
355+
* @param Proto
356+
* @param Body
357+
*/
257358
FunctionAST(
258359
std::unique_ptr<PrototypeAST> Proto, std::unique_ptr<ExprAST> Body)
259360
: Proto(std::move(Proto)), Body(std::move(Body)) {}
@@ -274,7 +375,7 @@ std::unique_ptr<FunctionAST> ParseTopLevelExpr();
274375

275376
std::unique_ptr<ExprAST> ParsePrimary();
276377

277-
/* declared as extern for testing */
378+
// declared as extern for testing //
278379
std::unique_ptr<ExprAST> ParseExpression();
279380
std::unique_ptr<IfExprAST> ParseIfExpr();
280381
std::unique_ptr<NumberExprAST> ParseNumberExpr();

arx/include/settings.h

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
#include <string>
22
#pragma once
33

4+
/**
5+
* @brief
6+
*
7+
*/
48
void load_settings();
59

610
extern std::string ARX_VERSION;

0 commit comments

Comments
 (0)