-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
924 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
/** | ||
*************************************************************************** | ||
* Copyright (c) 2017, Los Alamos National Security, LLC. | ||
* All rights reserved. | ||
* | ||
* Copyright 2010. Los Alamos National Security, LLC. This software was | ||
* produced under U.S. Government contract DE-AC52-06NA25396 for Los | ||
* Alamos National Laboratory (LANL), which is operated by Los Alamos | ||
* National Security, LLC for the U.S. Department of Energy. The | ||
* U.S. Government has rights to use, reproduce, and distribute this | ||
* software. NEITHER THE GOVERNMENT NOR LOS ALAMOS NATIONAL SECURITY, | ||
* LLC MAKES ANY WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LIABILITY | ||
* FOR THE USE OF THIS SOFTWARE. If software is modified to produce | ||
* derivative works, such modified software should be clearly marked, | ||
* so as not to confuse it with the version available from LANL. | ||
* | ||
* Additionally, redistribution and use in source and binary forms, | ||
* with or without modification, are permitted provided that the | ||
* following conditions are met: | ||
* | ||
* * Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* | ||
* * Redistributions in binary form must reproduce the above | ||
* copyright notice, this list of conditions and the following | ||
* disclaimer in the documentation and/or other materials provided | ||
* with the distribution. | ||
* | ||
* * Neither the name of Los Alamos National Security, LLC, Los | ||
* Alamos National Laboratory, LANL, the U.S. Government, nor the | ||
* names of its contributors may be used to endorse or promote | ||
* products derived from this software without specific prior | ||
* written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY LOS ALAMOS NATIONAL SECURITY, LLC AND | ||
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, | ||
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
* DISCLAIMED. IN NO EVENT SHALL LOS ALAMOS NATIONAL SECURITY, LLC OR | ||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF | ||
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | ||
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
* SUCH DAMAGE. | ||
* | ||
***************************************************************************/ | ||
|
||
#ifndef PTX_ABI_H_ | ||
#define PTX_ABI_H_ | ||
|
||
#include "llvm/Transforms/Scalar.h" | ||
#include "llvm/ADT/SmallPtrSet.h" | ||
#include "llvm/ADT/SmallVector.h" | ||
#include "llvm/ADT/Statistic.h" | ||
#include "llvm/Analysis/AssumptionCache.h" | ||
#include "llvm/IR/Constants.h" | ||
#include "llvm/IR/Dominators.h" | ||
#include "llvm/IR/Function.h" | ||
#include "llvm/IR/InlineAsm.h" | ||
#include "llvm/IR/InstIterator.h" | ||
#include "llvm/IR/Instructions.h" | ||
#include "llvm/IR/Intrinsics.h" | ||
#include "llvm/IR/IRBuilder.h" | ||
#include "llvm/IR/Module.h" | ||
#include "llvm/IR/TypeBuilder.h" | ||
#include "llvm/IR/ValueSymbolTable.h" | ||
#include "llvm/Support/Debug.h" | ||
#include "llvm/Transforms/Utils/UnifyFunctionExitNodes.h" | ||
#include "llvm/Transforms/Utils/BasicBlockUtils.h" | ||
#include "llvm/Transforms/Utils/Cloning.h" | ||
#include "llvm/Transforms/Utils/ValueMapper.h" | ||
#include "llvm/Transforms/Tapir/LoopSpawning.h" | ||
#include "llvm/Transforms/Tapir/TapirUtils.h" | ||
#include <deque> | ||
|
||
namespace llvm { | ||
|
||
/// PTXABILoopSpawning uses the Cilk Plus ABI to handle Tapir loops. | ||
class PTXABILoopSpawning : public LoopOutline { | ||
public: | ||
PTXABILoopSpawning(Loop *OrigLoop, ScalarEvolution &SE, | ||
LoopInfo *LI, DominatorTree *DT, | ||
AssumptionCache *AC, | ||
OptimizationRemarkEmitter &ORE) | ||
: LoopOutline(OrigLoop, SE, LI, DT, AC, ORE) | ||
{} | ||
|
||
bool processLoop(); | ||
|
||
virtual ~PTXABILoopSpawning() {} | ||
|
||
protected: | ||
|
||
// private: | ||
// /// Report an analysis message to assist the user in diagnosing loops that are | ||
// /// not transformed. These are handled as LoopAccessReport rather than | ||
// /// VectorizationReport because the << operator of LoopSpawningReport returns | ||
// /// LoopAccessReport. | ||
// void emitAnalysis(const LoopAccessReport &Message) const { | ||
// emitAnalysisDiag(OrigLoop, *ORE, Message); | ||
// } | ||
private: | ||
uint32_t nextKernelId_ = 0; | ||
}; | ||
|
||
class PTXABI : public TapirTarget { | ||
public: | ||
PTXABI(); | ||
Value *GetOrCreateWorker8(Function &F) override final; | ||
void createSync(SyncInst &inst, ValueToValueMapTy &DetachCtxToStackFrame) | ||
override final; | ||
|
||
Function *createDetach(DetachInst &Detach, | ||
ValueToValueMapTy &DetachCtxToStackFrame, | ||
DominatorTree &DT, AssumptionCache &AC) override final; | ||
void preProcessFunction(Function &F) override final; | ||
void postProcessFunction(Function &F) override final; | ||
void postProcessHelper(Function &F) override final; | ||
bool processMain(Function &F) override final; | ||
|
||
}; | ||
|
||
} // end of llvm namespace | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.