-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanticheat-baseline1-static-analysis.cpp
More file actions
490 lines (459 loc) · 16.4 KB
/
anticheat-baseline1-static-analysis.cpp
File metadata and controls
490 lines (459 loc) · 16.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
#include <cmath>
#include <iostream>
#include <map>
#include <unordered_set>
#include "lang.h"
#include "visitor.h"
const std::unordered_set<std::string> importantBuiltinFunctions = {
"array.create", "array.get", "array.set", "array.scan", "array.print",
};
double compress(double x) {
if (x < 0.0001) return 0;
if (x > 0.9999) return 1;
return x;
}
double DifferenceMetrics(double a, double b) {
if (a == 0 && b == 0) {
return 0;
}
return std::abs(a - b) / std::max(a, b);
}
class CFG {
public:
CFG(Program* program) : pgm(program) {
buildCFG();
dfs(entry);
}
double evaluate(const CFG& other) const {
double simOnBackEdges = 1 - DifferenceMetrics(backEdgeCount, other.backEdgeCount);
double simOnForwardEdges = 1 - DifferenceMetrics(forwardEdgeCount, other.forwardEdgeCount);
return std::sqrt(simOnBackEdges * simOnBackEdges);
}
struct Node {
std::vector<Node*> successors;
std::vector<Node*> predecessors;
};
private:
struct DfsStatus {
bool in = false;
bool out = false;
Node* parent = nullptr;
};
void buildCFG() {
// get the entry
traverseAllFunctions();
entry = functionEntries["main"];
}
void dfs(Node* node) {
dfsStatus[node].in = true;
for (Node* child : node->successors) {
DfsStatus& status = dfsStatus[child];
if (!status.in) { // not visited
dfsStatus[child].parent = node;
dfs(child);
} else if (!status.out) { // back edge
++backEdgeCount;
} else { // forward edge
++forwardEdgeCount;
}
}
dfsStatus[node].out = true;
}
void traverseAllFunctions() {
for (auto function : pgm->body) {
functionEntries[function->name] = newNode();
functionReturns[function->name] = newNode();
}
for (auto function : pgm->body) {
traverseFunction(function);
}
}
Node* traverseFunction(FunctionDeclaration* function) {
auto* entryNode = functionEntries[function->name];
auto* returnNode = functionReturns[function->name];
auto* lastNode = traverseStatement(function->body, entryNode, returnNode);
if (lastNode != returnNode) {
connect(lastNode, returnNode);
}
return returnNode;
}
Node* traverseStatement(Statement* stmt, Node* currentNode, Node* returnNode) {
if (stmt->is<BlockStatement>()) {
for (auto s : stmt->as<BlockStatement>()->body) {
currentNode = traverseStatement(s, currentNode, returnNode);
}
return currentNode;
} else if (stmt->is<IfStatement>()) {
auto* ifStmt = stmt->as<IfStatement>();
auto* ifNode = newNode();
connect(currentNode, ifNode);
auto* thenNode = traverseStatement(ifStmt->body, ifNode, returnNode);
auto* endNode = newNode();
connect(thenNode, endNode);
connect(currentNode, endNode);
return endNode;
} else if (stmt->is<ForStatement>()) {
auto* forStmt = stmt->as<ForStatement>();
auto* initNode = traverseStatement(forStmt->init, currentNode, returnNode);
auto* forNode = newNode();
auto* bodyNode = newNode();
auto* endNode = newNode();
connect(initNode,forNode);
connect(forNode, endNode);
connect(forNode, bodyNode);
bodyNode = traverseStatement(forStmt->body, bodyNode, returnNode);
auto* stepNode = traverseStatement(forStmt->update, bodyNode, returnNode);
connect(stepNode, forNode);
return endNode;
} else if (stmt->is<ReturnStatement>()) {
connect(currentNode, returnNode);
return returnNode;
} else if (stmt->is<ExpressionStatement>()) {
return traverseExpression(stmt->as<ExpressionStatement>()->expr, currentNode, returnNode);
} else {
return currentNode;
}
}
Node* traverseExpression(Expression* expr, Node* currentNode, Node* returnNode) {
if (expr->is<CallExpression>()) {
CallExpression* callExpr = expr->as<CallExpression>();
for (auto e : callExpr->args) {
currentNode = traverseExpression(e, currentNode, returnNode);
}
if (builtinFunctions.count(callExpr->func) > 0) {
return currentNode;
}
connect(currentNode, functionEntries[callExpr->func]);
return functionReturns[callExpr->func];
} else {
return currentNode;
}
}
void connect(Node* from, Node* to) {
from->successors.push_back(to);
to->predecessors.push_back(from);
}
Node* newNode() {
auto* node = new Node;
dfsStatus[node] = DfsStatus{false, false, nullptr};
return node;
}
Program* pgm;
Node* entry = nullptr;
std::map<Node*, DfsStatus> dfsStatus;
std::map<std::string, Node*> functionEntries;
std::map<std::string, Node*> functionReturns;
int backEdgeCount = 0;
int forwardEdgeCount = 0;
};
struct Count {
int arrayCreate = 0;
int arrayGet = 0;
int arraySet = 0;
int arrayScan = 0;
int arrayPrint = 0;
Count& operator+=(const Count& other) {
arrayCreate += other.arrayCreate;
arrayGet += other.arrayGet;
arraySet += other.arraySet;
arrayScan += other.arrayScan;
arrayPrint += other.arrayPrint;
return *this;
}
Count operator+(const Count& other) const {
Count result = *this;
result += other;
return result;
}
double evaluate(const Count& other) const {
double simOnArrayCreate = 1 - DifferenceMetrics(arrayCreate, other.arrayCreate);
double simOnArrayGet = 1 - DifferenceMetrics(arrayGet, other.arrayGet);
double simOnArraySet = 1 - DifferenceMetrics(arraySet, other.arraySet);
double simOnArrayScan = 1 - DifferenceMetrics(arrayScan, other.arrayScan);
double simOnArrayPrint = 1 - DifferenceMetrics(arrayPrint, other.arrayPrint);
return std::pow(simOnArrayCreate * simOnArrayGet * simOnArraySet * simOnArrayScan * simOnArrayPrint, 1.0 / 5);
}
};
class ImportantFunctionsCount : public Visitor<Count> {
public:
Count visitProgram(Program *node) override {
Count l;
for (auto func : node->body) {
l += visitFunctionDeclaration(func);
}
return l;
}
Count visitFunctionDeclaration(FunctionDeclaration *node) override {
return visitStatement(node->body);
}
Count visitExpressionStatement(ExpressionStatement *node) override {
return visitExpression(node->expr);
}
Count visitSetStatement(SetStatement *node) override {
return visitExpression(node->value);
}
Count visitIfStatement(IfStatement *node) override {
return visitExpression(node->condition) + visitStatement(node->body);
}
Count visitForStatement(ForStatement *node) override {
return visitStatement(node->body) + visitExpression(node->test) + visitStatement(node->update) + visitStatement(node->body);
}
Count visitBlockStatement(BlockStatement *node) override {
Count l;
for (auto stmt : node->body) {
l += visitStatement(stmt);
}
return l;
}
Count visitReturnStatement(ReturnStatement *node) override { return Count(); }
Count visitIntegerLiteral(IntegerLiteral *node) override { return Count(); }
Count visitVariable(Variable *node) override { return Count(); }
Count visitCallExpression(CallExpression *node) override {
Count l;
for (auto expr : node->args) {
l += visitExpression(expr);
}
if (node->func == "array.create") {
++l.arrayCreate;
} else if (node->func == "array.get") {
++l.arrayGet;
} else if (node->func == "array.set") {
++l.arraySet;
} else if (node->func == "array.scan") {
++l.arrayScan;
} else if (node->func == "array.print") {
++l.arrayPrint;
}
return l;
}
};
class RemoveDeadCodeForFunction {
public:
RemoveDeadCodeForFunction(FunctionDeclaration* function) : func(function) {
}
FunctionDeclaration* eliminateDeadCode() {
bool ok = false;
do {
ok = !tryEliminate();
} while (!ok);
return func;
}
private:
struct SymbolStatus {
bool constant = true;
int value = 0;
};
bool tryEliminate() {
symbolStatus.clear();
hasChanged = false;
for (auto param : func->params) {
symbolStatus[param->name].constant = false;
}
checkSymbolConstantStatement(func->body);
func->body = replaceAndEliminate(func->body);
if (func->body == nullptr) {
func->body = new BlockStatement({});
}
return hasChanged;
}
Statement* newEmptyStmt() {
return new ExpressionStatement(new CallExpression(
"==",
{new IntegerLiteral(0), new IntegerLiteral(0)}
));
}
Statement* replaceAndEliminate(Statement* stmt) {
if (stmt->is<ExpressionStatement>()) {
return new ExpressionStatement(
replaceAndEliminate(stmt->as<ExpressionStatement>()->expr)
);
} else if (stmt->is<SetStatement>()) {
return new SetStatement(
stmt->as<SetStatement>()->name, replaceAndEliminate(stmt->as<SetStatement>()->value));
} else if (stmt->is<IfStatement>()) {
IfStatement* ifStmt = stmt->as<IfStatement>();
Expression* condition = replaceAndEliminate(ifStmt->condition);
if (condition->is<IntegerLiteral>()) {
hasChanged = true;
if (condition->as<IntegerLiteral>()->value == 0) {
return nullptr;
} else {
return replaceAndEliminate(ifStmt->body);
}
} else {
Statement* body = replaceAndEliminate(ifStmt->body);
if (body == nullptr) {
return nullptr;
} else {
return new IfStatement(condition, body);
}
}
} else if (stmt->is<ForStatement>()) {
ForStatement* forStmt = stmt->as<ForStatement>();
Statement* init = replaceAndEliminate(forStmt->init);
Expression* test = replaceAndEliminate(forStmt->test);
Statement* update = replaceAndEliminate(forStmt->update);
Statement* body = replaceAndEliminate(forStmt->body);
if (init == nullptr) init = newEmptyStmt();
if (update == nullptr) update = newEmptyStmt();
if (body == nullptr) body = newEmptyStmt();
return new ForStatement(init, test, update, body);
} else if (stmt->is<BlockStatement>()) {
BlockStatement* blockStmt = stmt->as<BlockStatement>();
std::vector<Statement*> newBody;
for (auto s : blockStmt->body) {
Statement* newStmt = replaceAndEliminate(s);
if (newStmt != nullptr) {
newBody.push_back(newStmt);
}
}
return new BlockStatement(newBody);
} else {
return stmt;
}
}
Expression* replaceAndEliminate(Expression* expr) {
if (expr->is<CallExpression>()) {
CallExpression* callExpr = expr->as<CallExpression>();
std::vector<Expression*> newArgs;
bool allConstant = true;
for (auto e : callExpr->args) {
Expression* newExpr = replaceAndEliminate(e);
newArgs.push_back(newExpr);
if (!newExpr->is<IntegerLiteral>()) {
allConstant = false;
}
}
if (allConstant) {
if (callExpr->func == "+") {
int result = newArgs[0]->as<IntegerLiteral>()->value + newArgs[1]->as<IntegerLiteral>()->value;
hasChanged = true;
return new IntegerLiteral(result);
} else if (callExpr->func == "-") {
int result = newArgs[0]->as<IntegerLiteral>()->value - newArgs[1]->as<IntegerLiteral>()->value;
hasChanged = true;
return new IntegerLiteral(result);
} else if (callExpr->func == "*") {
int result = newArgs[0]->as<IntegerLiteral>()->value * newArgs[1]->as<IntegerLiteral>()->value;
hasChanged = true;
return new IntegerLiteral(result);
} else if (callExpr->func == "/") {
int result = newArgs[0]->as<IntegerLiteral>()->value / newArgs[1]->as<IntegerLiteral>()->value;
hasChanged = true;
return new IntegerLiteral(result);
} else if (callExpr->func == "%") {
int result = newArgs[0]->as<IntegerLiteral>()->value % newArgs[1]->as<IntegerLiteral>()->value;
hasChanged = true;
return new IntegerLiteral(result);
} else if (callExpr->func == "==") {
int result = newArgs[0]->as<IntegerLiteral>()->value == newArgs[1]->as<IntegerLiteral>()->value;
hasChanged = true;
return new IntegerLiteral(result);
} else if (callExpr->func == "!=") {
int result = newArgs[0]->as<IntegerLiteral>()->value != newArgs[1]->as<IntegerLiteral>()->value;
hasChanged = true;
return new IntegerLiteral(result);
} else if (callExpr->func == "<") {
int result = newArgs[0]->as<IntegerLiteral>()->value < newArgs[1]->as<IntegerLiteral>()->value;
hasChanged = true;
return new IntegerLiteral(result);
} else if (callExpr->func == "<=") {
int result = newArgs[0]->as<IntegerLiteral>()->value <= newArgs[1]->as<IntegerLiteral>()->value;
hasChanged = true;
return new IntegerLiteral(result);
} else if (callExpr->func == ">") {
int result = newArgs[0]->as<IntegerLiteral>()->value > newArgs[1]->as<IntegerLiteral>()->value;
hasChanged = true;
return new IntegerLiteral(result);
} else if (callExpr->func == ">=") {
int result = newArgs[0]->as<IntegerLiteral>()->value >= newArgs[1]->as<IntegerLiteral>()->value;
hasChanged = true;
return new IntegerLiteral(result);
} else if (callExpr->func == "!") {
int result = !(newArgs[0]->as<IntegerLiteral>()->value);
hasChanged = true;
return new IntegerLiteral(result);
} else if (callExpr->func == "&&") {
int result = newArgs[0]->as<IntegerLiteral>()->value && newArgs[1]->as<IntegerLiteral>()->value;
hasChanged = true;
return new IntegerLiteral(result);
} else if (callExpr->func == "||") {
int result = newArgs[0]->as<IntegerLiteral>()->value || newArgs[1]->as<IntegerLiteral>()->value;
hasChanged = true;
return new IntegerLiteral(result);
} else {
return new CallExpression(callExpr->func, newArgs);
}
}
return new CallExpression(callExpr->func, newArgs);
} else if (expr->is<Variable>()) {
Variable* var = expr->as<Variable>();
if (symbolStatus.count(var->name) == 0) {
return expr;
} else {
if (symbolStatus[var->name].constant) {
hasChanged = true;
return new IntegerLiteral(symbolStatus[var->name].value);
} else {
return expr;
}
}
} else {
return expr;
}
}
void checkSymbolConstantStatement(Statement* stmt) {
if (stmt->is<BlockStatement>()) {
for (auto s : stmt->as<BlockStatement>()->body) {
checkSymbolConstantStatement(s);
}
} else if (stmt->is<IfStatement>()) {
auto* ifStmt = stmt->as<IfStatement>();
checkSymbolConstantStatement(ifStmt->body);
} else if (stmt->is<ForStatement>()) {
auto* forStmt = stmt->as<ForStatement>();
checkSymbolConstantStatement(forStmt->init);
checkSymbolConstantStatement(forStmt->update);
checkSymbolConstantStatement(forStmt->body);
} else if (stmt->is<SetStatement>()) {
SetStatement* setStmt = stmt->as<SetStatement>();
if (!setStmt->value->is<IntegerLiteral>()) {
symbolStatus[setStmt->name->name].constant = false;
} else {
if (symbolStatus.count(setStmt->name->name) == 0) {
symbolStatus[setStmt->name->name].constant = true;
symbolStatus[setStmt->name->name].value = setStmt->value->as<IntegerLiteral>()->value;
} else {
if (!symbolStatus[setStmt->name->name].constant ||
symbolStatus[setStmt->name->name].value != setStmt->value->as<IntegerLiteral>()->value) {
symbolStatus[setStmt->name->name].constant = false;
}
}
}
}
}
FunctionDeclaration* func;
std::map<std::string, SymbolStatus> symbolStatus;
bool hasChanged = false;
};
Program* eliminateDeadCode(Program* origin) {
std::vector<FunctionDeclaration *> body;
for (auto func : origin->body) {
RemoveDeadCodeForFunction removeDeadCode(func);
body.push_back(removeDeadCode.eliminateDeadCode());
}
return new Program(body);
}
int main() {
auto* pgm1 = eliminateDeadCode(scanProgram(std::cin));
auto* pgm2 = eliminateDeadCode(scanProgram(std::cin));
CFG cfg1(pgm1);
CFG cfg2(pgm2);
ImportantFunctionsCount ifc;
Count count1 = ifc.visitProgram(pgm1);
Count count2 = ifc.visitProgram(pgm2);
auto m1 = cfg1.evaluate(cfg2);
auto m2 = count1.evaluate(count2);
std::cout << compress(1.5 * m1 * m1 + 0.4 * m2 - 0.3) << std::endl;
return 0;
}