Gitignore, debugscript, and some linting.

This commit is contained in:
Nils Hölscher 2022-04-19 11:09:17 +02:00
parent 69d9b56047
commit 7889bb22e8
4 changed files with 51 additions and 0 deletions

2
.clang-format Normal file
View File

@ -0,0 +1,2 @@
BasedOnStyle: LLVM

1
.clang-tidy Normal file
View File

@ -0,0 +1 @@
InheritParentConfig: true

9
.gitignore vendored Normal file
View File

@ -0,0 +1,9 @@
build
*.out
*.dot
*.png
*.txt
.gitconfig
.vscode-server
.gnupg
.bash_history

39
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,39 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "DBG fft1",
"type": "cppdbg",
"request": "launch",
"program": "/usr/bin/opt",
"args": [
"-load-pass-plugin",
"${fileDirname}/../build/libCacheAnalysisPass.so",
"-passes='lru-misses'",
"${fileDirname}/../test/fft1.ll",
"-o",
"/dev/null"
],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
}
]
}