Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions src/sst/elements/Opal/configure.m4

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ comp_LTLIBRARIES = libOpal.la
libOpal_la_SOURCES = \
mempool.h \
mempool.cc \
Opal.cc \
Opal.h \
Opal_Event.h \
opal.cc \
opal.h \
opal_event.h \
arielmemmgr_opal.cc \
arielmemmgr_opal.h \
opalMemNIC.cc \
opalMemNIC.h \
PageFaultHandler.cc \
PageFaultHandler.h
page_fault_handler.cc \
page_fault_handler.h

libOpal_la_LDFLAGS = \
-avoid-version
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

#include <sst_config.h>
#include "arielmemmgr_opal.h"
#include "Opal_Event.h"
#include "opal_event.h"

#include <sst/core/link.h>

Expand Down
6 changes: 6 additions & 0 deletions src/sst/elements/opal/configure.m4
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
dnl -*- Autoconf -*-

AC_DEFUN([SST_opal_CONFIG], [
sst_opal_comp_happy="yes"
AS_IF([test "x$sst_opal_comp_happy" = "xyes"], [$1], [$2])
])
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,6 @@
// distribution.
//


/* Author: Amro Awad
* E-mail: amro.awad@ucf.edu
*/
/* Author: Vamsee Reddy Kommareddy
* E-mail: vamseereddy@knights.ucf.edu
*/

#include <sst_config.h>

#include "mempool.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,7 @@
// distribution.
//


/* Author: Amro Awad
* E-mail: amro.awad@ucf.edu
*/
/* Author: Vamsee Reddy Kommareddy
* E-mail: vamseereddy@knights.ucf.edu
*/

#include "Opal_Event.h"
#include "opal_event.h"

#include <list>
#include <map>
Expand Down
12 changes: 1 addition & 11 deletions src/sst/elements/Opal/Opal.cc → src/sst/elements/opal/opal.cc
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,8 @@
// distribution.
//


//
/* Author: Amro Awad
* E-mail: aawad@sandia.gov
*/
/* Author: Vamsee Reddy Kommareddy
* E-mail: vamseereddy@knights.ucf.edu
*/


#include <sst_config.h>
#include "Opal.h"
#include "opal.h"

#include <string>
#include <iostream>
Expand Down
10 changes: 1 addition & 9 deletions src/sst/elements/Opal/Opal.h → src/sst/elements/opal/opal.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,6 @@
// distribution.
//


/* Author: Amro Awad
* E-mail: amro.awad@ucf.edu
*/
/* Author: Vamsee Reddy Kommareddy
* E-mail: vamseereddy@knights.ucf.edu
*/

#include <cstring>
#include <string>
#include <fstream>
Expand All @@ -37,7 +29,7 @@
#include <sst/core/interfaces/simpleMem.h>
#include <sst/core/output.h>

#include "Opal_Event.h"
#include "opal_event.h"
#include "mempool.h"

using namespace SST;
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,6 @@
// distribution.
//


//
/* Author: Amro Awad
* E-mail: aawad@sandia.gov
*/
/* Author: Vamsee Reddy Kommareddy
* E-mail: vamseereddy@knights.ucf.edu
*/

#ifndef _H_SST_OPAL_EVENT
#define _H_SST_OPAL_EVENT

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

#include <sst_config.h>

#include "PageFaultHandler.h"
#include "Opal_Event.h"
#include "page_fault_handler.h"
#include "opal_event.h"

#include <sst/core/link.h>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include <sst/core/component.h>
#include <sst/core/output.h>

#include "sst/elements/Samba/PageFaultHandler.h"
#include "sst/elements/samba/page_fault_handler.h"

#include <stdint.h>
#include <deque>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ comp_LTLIBRARIES = libSamba.la
libSamba_la_SOURCES = \
libSamba.cc \
utils.h \
Samba_Event.h \
Samba.cc \
Samba.h \
TLBUnit.cc \
TLBUnit.h \
TLBentry.h \
TLBhierarchy.h \
TLBhierarchy.cc \
PageTableWalker.h \
PageTableWalker.cc \
PageFaultHandler.h \
SimpleTLB.cc \
SimpleTLB.h
samba_event.h \
samba.cc \
samba.h \
tlb_unit.cc \
tlb_unit.h \
tlb_entry.h \
tlb_hierarchy.h \
tlb_hierarchy.cc \
page_table_walker.h \
page_table_walker.cc \
page_fault_handler.h \
simple_tlb.cc \
simple_tlb.h

libSamba_la_LDFLAGS = \
-lm \
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dnl -*- Autoconf -*-

AC_DEFUN([SST_Samba_CONFIG], [
AC_DEFUN([SST_samba_CONFIG], [
sst_samba_comp_happy="yes"
AS_IF([test "x$sst_samba_comp_happy" = "xyes"], [$1], [$2])
])
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,14 @@
// information, see the LICENSE file in the top level directory of the
// distribution.

/* Author: Amro Awad
* E-mail: aawad@sandia.gov
*/


#include <sst_config.h>

#include "sst/core/component.h"

#include "Samba.h"
#include "TLBhierarchy.h"
#include<iostream>
#include "samba.h"
#include "tlb_hierarchy.h"
#include <iostream>

using namespace SST;
using namespace SST::SambaComponent;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,6 @@
// information, see the LICENSE file in the top level directory of the
// distribution.

/* Author: Vamsee Reddy Kommareddy
* E-mail: vamseereddy8@knights.ucf.edu
*/


#ifndef _H_SAMBA_PAGE_FAULT_HANDLER
#define _H_SAMBA_PAGE_FAULT_HANDLER

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,11 @@
// distribution.
//

/* Author: Amro Awad
* E-mail: aawad@sandia.gov
*/

#include <sst_config.h>
#include "PageTableWalker.h"
#include "page_table_walker.h"
#include <sst/core/link.h>
#include "Samba_Event.h"
#include<iostream>
#include "samba_event.h"
#include <iostream>

using namespace SST::SambaComponent;
using namespace SST::MemHierarchy;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@
// distribution.
//

/* Author: Amro Awad
* E-mail: aawad@sandia.gov
*/


#ifndef _H_SST_PTW
#define _H_SST_PTW

Expand All @@ -25,12 +20,12 @@
#include <sst/core/interfaces/simpleMem.h>
#include <sst/core/link.h>
#include <sst/core/event.h>
#include<map>
#include<vector>
#include <map>
#include <vector>
#include <sst/core/sst_types.h>

#include "utils.h"
#include "PageFaultHandler.h"
#include "page_fault_handler.h"

// This file defines the page table walker and

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,10 @@
// distribution.
//

/* Author: Amro Awad
* E-mail: aawad@sandia.gov
*/



#include <sst_config.h>
#include <string>
#include "Samba.h"
#include "samba.h"


using namespace SST::Interfaces;
Expand Down
13 changes: 3 additions & 10 deletions src/sst/elements/Samba/Samba.h → src/sst/elements/samba/samba.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,6 @@
// distribution.


/* Author: Amro Awad
* E-mail: aawad@sandia.gov
*/



#include <sst/core/sst_types.h>
#include <sst/core/event.h>
#include <sst/core/component.h>
Expand All @@ -35,12 +29,11 @@
#include <stdint.h>
#include <poll.h>

#include "TLBhierarchy.h"
#include "PageTableWalker.h"
#include "PageFaultHandler.h"
#include "tlb_hierarchy.h"
#include "page_table_walker.h"
#include "page_fault_handler.h"
#include <sst/elements/memHierarchy/memEventBase.h>

//#include "arielcore.h"

using namespace std;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,18 @@
// distribution.
//

/* Author: Janet Vorobyeva
* E-mail: jvoroby@sandia.gov
*/



#include <sst_config.h>
#include "SimpleTLB.h"
#include "simple_tlb.h"

//#include <string>

using namespace SST::Interfaces;
using namespace SST;
using namespace SST::SambaComponent;

#include <sst/elements/memHierarchy/memEventBase.h>
#include <sst/elements/memHierarchy/memEvent.h>
using SST::MemHierarchy::MemEventBase;
using SST::MemHierarchy::MemEvent;
using SST::MemHierarchy::Addr;
#include <sst/elements/memHierarchy/util.h>


// VERBOSITIES (using definitions from memHierarchy/util.h
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

#include <sst_config.h>

#include "TLBhierarchy.h"
#include "tlb_hierarchy.h"

#include <sst/core/event.h>
#include <sst/core/sst_types.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@
// distribution.
//

/* Author: Amro Awad
* E-mail: aawad@sandia.gov
*/



#ifndef _H_SST_TLBSTRUCTURE
#define _H_SST_TLBSTRUCTURE
Expand All @@ -27,15 +22,15 @@
#include <sst/core/output.h>
#include <sst/core/interfaces/simpleMem.h>

#include<string>
#include <string>

#include "utils.h"
#include "TLBentry.h"
#include "TLBUnit.h"
#include "PageTableWalker.h"
#include "tlb_entry.h"
#include "tlb_unit.h"
#include "page_table_walker.h"

#include<map>
#include<vector>
#include <map>
#include <vector>


// This is going to define the Samba/TLB Hierarchy for each core
Expand Down
Loading