~ryan-rmarcus/pocl/pocl

« back to all changes in this revision

Viewing changes to lib/llvmopencl/Barrier.h

  • Committer: Carlos Sánchez de La Lama
  • Date: 2011-12-12 04:35:55 UTC
  • mto: This revision was merged to the branch mainline in revision 109.
  • Revision ID: carlos.delalama@urjc.es-20111212043555-ct245z61erk23htj
Using intrinsic (sort of) for barriers, working & tests updates.
New class ParallelRegion & Barrier (still unused).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Class for barrier instructions, modelled as a CallInstr.
 
2
// 
 
3
// Copyright (c) 2011 Universidad Rey Juan Carlos
 
4
// 
 
5
// Permission is hereby granted, free of charge, to any person obtaining a copy
 
6
// of this software and associated documentation files (the "Software"), to deal
 
7
// in the Software without restriction, including without limitation the rights
 
8
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 
9
// copies of the Software, and to permit persons to whom the Software is
 
10
// furnished to do so, subject to the following conditions:
 
11
// 
 
12
// The above copyright notice and this permission notice shall be included in
 
13
// all copies or substantial portions of the Software.
 
14
// 
 
15
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
16
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
17
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
18
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
19
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
20
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 
21
// THE SOFTWARE.
 
22
 
 
23
#define BARRIER_FUNCTION_NAME "pocl.barrier"
 
24
 
 
25
#include "llvm/Instructions.h"
 
26
#include "llvm/Function.h"
 
27
#include "llvm/Module.h"
 
28
#include "llvm/Support/Casting.h"
 
29
 
 
30
namespace pocl {
 
31
  
 
32
  class Barrier : public llvm::CallInst {
 
33
 
 
34
  public:
 
35
    static Barrier *Create(llvm::Instruction *InsertBefore) {
 
36
      llvm::Module *M = InsertBefore->getParent()->getParent()->getParent();
 
37
      llvm::Function *F = llvm::cast<llvm::Function>
 
38
        (M->getOrInsertFunction(BARRIER_FUNCTION_NAME,
 
39
                                llvm::Type::getVoidTy(M->getContext()),
 
40
                                NULL));
 
41
      return llvm::cast<pocl::Barrier>
 
42
        (llvm::CallInst::Create(F, "", InsertBefore));
 
43
    }
 
44
    static bool classof(const Barrier *) { return true; };
 
45
    static bool classof(const llvm::CallInst *C) {
 
46
      return C->getCalledFunction()->getName() == BARRIER_FUNCTION_NAME;
 
47
    }
 
48
    static bool classof(const Instruction *I) {
 
49
      return (llvm::isa<llvm::CallInst>(I) &&
 
50
              classof(llvm::cast<llvm::CallInst>(I)));
 
51
    }
 
52
  };
 
53
 
 
54
}
 
55