Skip to content

Commit cfde104

Browse files
committed
added all source code necessary to install comdetective+ and reusetracker+
1 parent 9adb293 commit cfde104

File tree

1,338 files changed

+414884
-0
lines changed

Some content is hidden

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

1,338 files changed

+414884
-0
lines changed
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Prerequisites
2+
*.d
3+
4+
# Object files
5+
*.o
6+
*.ko
7+
*.obj
8+
*.elf
9+
10+
# Linker output
11+
*.ilk
12+
*.map
13+
*.exp
14+
15+
# Precompiled Headers
16+
*.gch
17+
*.pch
18+
19+
# Libraries
20+
*.lib
21+
*.a
22+
*.la
23+
*.lo
24+
25+
# Shared objects (inc. Windows DLLs)
26+
*.dll
27+
*.so
28+
*.so.*
29+
*.dylib
30+
31+
# Executables
32+
*.exe
33+
*.out
34+
*.app
35+
*.i*86
36+
*.x86_64
37+
*.hex
38+
39+
# Debug files
40+
*.dSYM/
41+
*.su
42+
*.idb
43+
*.pdb
44+
45+
# Kernel Module Compile Results
46+
*.mod*
47+
*.cmd
48+
.tmp_versions/
49+
modules.order
50+
Module.symvers
51+
Mkfile.old
52+
dkms.conf
53+
*.ur-safe
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
AMD Research IBS Toolkit Contributors
2+
============================================
3+
4+
* **[Joseph Greathouse](https://github.com/jlgreathouse)**
5+
* Project lead
6+
* Current maintainer
7+
8+
(Other Contributors Sorted Alphabetically)
9+
10+
* **[Arkaprava Basu](https://github.com/ArkaBasu)**
11+
* perf\_events analysis
12+
13+
* **Jacob Combs**
14+
* IBS kernel driver
15+
* IBS monitor application
16+
* IBS decoder application
17+
18+
* **[Brian Kocoloski](https://github.com/briankoco)**
19+
* libIBS
20+
* IBS daemon
21+
22+
* **[Shijia Wei](https://www.linkedin.com/in/shijia-wei-b40bb9a7)**
23+
* Program counter annotation tool
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Copyright (c) 2015-2017 Advanced Micro Devices, Inc. All rights reserved.
2+
#
3+
# Redistribution and use in source and binary forms, with or without
4+
# modification, are permitted provided that the following conditions
5+
# are met:
6+
#
7+
# 1. Redistributions of source code must retain the above copyright
8+
# notice, this list of conditions and the following disclaimer.
9+
#
10+
# 2. Redistributions in binary form must reproduce the above
11+
# copyright notice, this list of conditions and the following
12+
# disclaimer in the documentation and/or other materials provided
13+
# with the distribution.
14+
#
15+
# 3. The names of its contributors may not be used to endorse or
16+
# promote products derived from this software without specific
17+
# prior written permission.
18+
#
19+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20+
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21+
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
22+
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23+
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24+
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25+
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26+
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27+
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28+
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29+
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
30+
# OF THE POSSIBILITY OF SUCH DAMAGE.
31+
32+
include make/master.mk
33+
34+
BUILD_THESE:=$(DRIVER_DIR) $(LIB_DIR) $(TOOLS_DIR)
35+
36+
TARGETS := all clean
37+
38+
$(TARGETS): $(BUILD_THESE)
39+
40+
$(TOOLS_DIR): $(LIB_DIR)
41+
$(MAKE) -C $@ $(MAKECMDGOALS)
42+
43+
$(LIB_DIR) $(DRIVER_DIR):
44+
$(MAKE) -C $@ $(MAKECMDGOALS)
45+
46+
.PHONY: $(TARGETS) $(BUILD_THESE)

comdetective_reusetracker_plus/AMD_IBS_Toolkit/README.md

Lines changed: 285 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)