HomeSort by: relevance | last modified time | path
    Searched defs:ThreadID (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/XRay/
BlockIndexer.h 30 int32_t ThreadID;
  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
XCoreLowerThreadLocal.cpp 161 Value *ThreadID = Builder.CreateCall(GetID, {});
163 {Builder.getInt64(0), ThreadID});
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntime.h 399 /// Stores debug location and ThreadID for the function.
402 llvm::Value *ThreadID;
406 /// Map of local debug location, ThreadId and functions.
934 /// \a D. This outlined function has type void(*)(kmp_int32 *ThreadID,
946 /// \a D. This outlined function has type void(*)(kmp_int32 *ThreadID,
958 /// outlined function has type void(*)(kmp_int32 ThreadID, struct task_t*
1914 /// \a D. This outlined function has type void(*)(kmp_int32 *ThreadID,
1928 /// \a D. This outlined function has type void(*)(kmp_int32 *ThreadID,
1942 /// outlined function has type void(*)(kmp_int32 ThreadID, struct task_t*
CGOpenMPRuntime.cpp 85 /// Get an LValue for the current ThreadID variable.
120 assert(ThreadIDVar != nullptr && "No ThreadID in OpenMP region.");
201 assert(ThreadIDVar != nullptr && "No ThreadID in OpenMP region.");
208 /// Get an LValue for the current ThreadID variable.
281 /// Get an LValue for the current ThreadID variable.
1309 llvm::Value *ThreadID = getThreadID(CGF, D.getBeginLoc());
1312 UpLoc, ThreadID,
1469 llvm::Value *ThreadID = nullptr;
1474 ThreadID = I->second.ThreadID;
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
OpenMPClause.h 8242 Stmt *ThreadID = nullptr;
8245 void setThreadID(Expr *TID) { ThreadID = TID; }
8251 /// Build 'filter' clause with thread-id \a ThreadID.
8253 /// \param ThreadID Thread identifier.
8260 OMPFilterClause(Expr *ThreadID, Stmt *HelperE,
8264 OMPClauseWithPreInit(this), LParenLoc(LParenLoc), ThreadID(ThreadID) {
8276 Expr *getThreadID() { return cast<Expr>(ThreadID); }
8279 Expr *getThreadID() const { return cast<Expr>(ThreadID); }
8281 child_range children() { return child_range(&ThreadID, &ThreadID + 1);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/
OMPIRBuilder.cpp 477 Value *ThreadID = getOrCreateThreadID(Ident);
482 Ident, ThreadID,
491 Ident, ThreadID,
666 Value *SerializedParallelCallArgs[] = {Ident, ThreadID};
676 Value *EndArgs[] = {Ident, ThreadID};
1023 Value *ThreadId = getOrCreateThreadID(Ident);
1024 Value *Args[] = {Ident, ThreadId};
1046 Value *ThreadId = getOrCreateThreadID(Ident);
1047 Value *Args[] = {Ident, ThreadId, Filter};
1048 Value *ArgsEnd[] = {Ident, ThreadId};
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
TreeTransform.h 2238 OMPClause *RebuildOMPFilterClause(Expr *ThreadID, SourceLocation StartLoc,
2241 return getSema().ActOnOpenMPFilterClause(ThreadID, StartLoc, LParenLoc,
9449 ExprResult ThreadID = getDerived().TransformExpr(C->getThreadID());
9450 if (ThreadID.isInvalid())
9452 return getDerived().RebuildOMPFilterClause(ThreadID.get(), C->getBeginLoc(),

Completed in 52 milliseconds