This file is indexed.

/usr/include/oclgrind/WorkItem.h is in liboclgrind-dev 16.10-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
// WorkItem.h (Oclgrind)
// Copyright (c) 2013-2016, James Price and Simon McIntosh-Smith,
// University of Bristol. All rights reserved.
//
// This program is provided under a three-clause BSD license. For full
// license terms please see the LICENSE file distributed with this
// source code.

#include "common.h"

namespace llvm
{
  class BasicBlock;
  class CallInst;
  class ConstExpr;
  class DbgValueInst;
  class Function;
  class Module;
}

namespace oclgrind
{
  class Context;
  class Kernel;
  class KernelInvocation;
  class Memory;
  class WorkGroup;
  class WorkItem;
  class WorkItemBuiltins;

  // Data structures for builtin functions
  struct BuiltinFunction
  {
    void (*func)(WorkItem*, const llvm::CallInst*,
                 const std::string&, const std::string&, TypedValue&, void*);
    void *op;
    BuiltinFunction(){};
    BuiltinFunction(void (*f)(WorkItem*, const llvm::CallInst*,
                     const std::string&, const std::string&, TypedValue&,
                     void*),
                     void *o) : func(f), op(o) {};
  };
  typedef std::unordered_map<std::string,BuiltinFunction> BuiltinFunctionMap;
  typedef std::list< std::pair<std::string, BuiltinFunction> >
    BuiltinFunctionPrefixList;

  extern BuiltinFunctionMap workItemBuiltins;
  extern BuiltinFunctionPrefixList workItemPrefixBuiltins;

  // Per-kernel cache for various interpreter state information
  class InterpreterCache
  {
  public:
    struct Builtin
    {
      BuiltinFunction function;
      std::string name, overload;
    };

    InterpreterCache(llvm::Function *kernel);
    ~InterpreterCache();

    void addBuiltin(const llvm::Function *function);
    Builtin getBuiltin(const llvm::Function *function) const;

    void addConstant(const llvm::Value *constant);
    TypedValue getConstant(const llvm::Value *operand) const;
    const llvm::Instruction* getConstantExpr(const llvm::Value *expr) const;

    unsigned addValueID(const llvm::Value *value);
    unsigned getValueID(const llvm::Value *value) const;
    unsigned getNumValues() const;
    bool hasValue(const llvm::Value *value) const;

  private:
    typedef std::unordered_map<const llvm::Value*, unsigned> ValueMap;
    typedef std::unordered_map<const llvm::Function*, Builtin> BuiltinMap;
    typedef std::unordered_map<const llvm::Value*, TypedValue> ConstantMap;
    typedef std::unordered_map<const llvm::Value*, const llvm::Instruction*>
      ConstExprMap;

    BuiltinMap m_builtins;
    ConstantMap m_constants;
    ConstExprMap m_constExpressions;
    ValueMap m_valueIDs;

    void addOperand(const llvm::Value *value);
  };

  class WorkItem
  {
    friend class WorkItemBuiltins;

  public:
    enum State {READY, BARRIER, FINISHED};

  public:
    WorkItem(const KernelInvocation *kernelInvocation,
             WorkGroup *workGroup, Size3 lid);
    virtual ~WorkItem();

    void clearBarrier();
    void dispatch(const llvm::Instruction *instruction, TypedValue& result);
    void execute(const llvm::Instruction *instruction);
    const std::stack<const llvm::Instruction*>& getCallStack() const;
    const llvm::BasicBlock* getCurrentBlock() const;
    const llvm::Instruction* getCurrentInstruction() const;
    Size3 getGlobalID() const;
    size_t getGlobalIndex() const;
    Size3 getLocalID() const;
    TypedValue getOperand(const llvm::Value *operand) const;
    const llvm::BasicBlock* getPreviousBlock() const;
    Memory* getPrivateMemory() const;
    State getState() const;
    const unsigned char* getValueData(const llvm::Value *value) const;
    const llvm::Value* getVariable(std::string name) const;
    const WorkGroup* getWorkGroup() const;
    bool printValue(const llvm::Value *value) const;
    bool printVariable(std::string name) const;
    State step();

    // SPIR instructions
  private:
#define INSTRUCTION(name) \
  void name(const llvm::Instruction *instruction, TypedValue& result)
    INSTRUCTION(add);
    INSTRUCTION(alloc);
    INSTRUCTION(ashr);
    INSTRUCTION(bitcast);
    INSTRUCTION(br);
    INSTRUCTION(bwand);
    INSTRUCTION(bwor);
    INSTRUCTION(bwxor);
    INSTRUCTION(call);
    INSTRUCTION(extractelem);
    INSTRUCTION(extractval);
    INSTRUCTION(fadd);
    INSTRUCTION(fcmp);
    INSTRUCTION(fdiv);
    INSTRUCTION(fmul);
    INSTRUCTION(fpext);
    INSTRUCTION(fptosi);
    INSTRUCTION(fptoui);
    INSTRUCTION(fptrunc);
    INSTRUCTION(frem);
    INSTRUCTION(fsub);
    INSTRUCTION(gep);
    INSTRUCTION(icmp);
    INSTRUCTION(insertelem);
    INSTRUCTION(insertval);
    INSTRUCTION(inttoptr);
    INSTRUCTION(itrunc);
    INSTRUCTION(load);
    INSTRUCTION(lshr);
    INSTRUCTION(mul);
    INSTRUCTION(phi);
    INSTRUCTION(ptrtoint);
    INSTRUCTION(ret);
    INSTRUCTION(sdiv);
    INSTRUCTION(select);
    INSTRUCTION(sext);
    INSTRUCTION(shl);
    INSTRUCTION(shuffle);
    INSTRUCTION(sitofp);
    INSTRUCTION(srem);
    INSTRUCTION(store);
    INSTRUCTION(sub);
    INSTRUCTION(swtch);
    INSTRUCTION(udiv);
    INSTRUCTION(uitofp);
    INSTRUCTION(urem);
    INSTRUCTION(zext);
#undef INSTRUCTION

  private:
    typedef std::map<std::string, const llvm::Value*> VariableMap;

    size_t m_globalIndex;
    Size3 m_globalID;
    Size3 m_localID;
    TypedValueMap m_phiTemps;
    VariableMap m_variables;
    const Context *m_context;
    const KernelInvocation *m_kernelInvocation;
    Memory *m_privateMemory;
    WorkGroup *m_workGroup;
    mutable MemoryPool m_pool;

    State m_state;
    struct Position;
    Position *m_position;

    Memory* getMemory(unsigned int addrSpace) const;

    // Store for instruction results and other operand values
    std::vector<TypedValue> m_values;
    TypedValue getValue(const llvm::Value *key) const;
    bool hasValue(const llvm::Value *key) const;
    void setValue(const llvm::Value *key, TypedValue value);

    const InterpreterCache *m_cache;
  };
}