Intel® Implicit SPMD Program Compiler (Intel® ISPC)  1.13.0
func.h
Go to the documentation of this file.
1 /*
2  Copyright (c) 2011-2019, Intel Corporation
3  All rights reserved.
4 
5  Redistribution and use in source and binary forms, with or without
6  modification, are permitted provided that the following conditions are
7  met:
8 
9  * Redistributions of source code must retain the above copyright
10  notice, this list of conditions and the following disclaimer.
11 
12  * Redistributions in binary form must reproduce the above copyright
13  notice, this list of conditions and the following disclaimer in the
14  documentation and/or other materials provided with the distribution.
15 
16  * Neither the name of Intel Corporation nor the names of its
17  contributors may be used to endorse or promote products derived from
18  this software without specific prior written permission.
19 
20 
21  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
22  IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
23  TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
24  PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
25  OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
26  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
27  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
28  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
29  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
31  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 */
33 
34 /** @file func.h
35  @brief Representation of a function in a source file.
36 */
37 
38 #pragma once
39 
40 #include "ispc.h"
41 #include <vector>
42 
43 class Function {
44  public:
46 
47  const Type *GetReturnType() const;
48  const FunctionType *GetType() const;
49 
50  /** Generate LLVM IR for the function into the current module. */
51  void GenerateIR();
52 
53  private:
54  void emitCode(FunctionEmitContext *ctx, llvm::Function *function, SourcePos firstStmtPos);
55 
57  std::vector<Symbol *> args;
65 };
Definition: func.h:43
Symbol * taskIndexSym
Definition: func.h:61
Symbol * threadIndexSym
Definition: func.h:60
Interface class for statements in the ispc language.
Definition: stmt.h:48
void emitCode(FunctionEmitContext *ctx, llvm::Function *function, SourcePos firstStmtPos)
Definition: func.cpp:200
Symbol * maskSymbol
Definition: func.h:59
std::vector< Symbol * > args
Definition: func.h:57
Symbol * taskIndexSym2
Definition: func.h:64
Symbol * taskCountSym0
Definition: func.h:62
Symbol * taskIndexSym1
Definition: func.h:63
Symbol * taskCountSym2
Definition: func.h:64
const FunctionType * GetType() const
Definition: func.cpp:154
Stmt * code
Definition: func.h:58
Symbol * taskCountSym
Definition: func.h:61
Function(Symbol *sym, Stmt *code)
Definition: func.cpp:69
Representation of a range of positions in a source file.
Definition: ispc.h:123
Symbol * taskCountSym1
Definition: func.h:63
Symbol * taskIndexSym0
Definition: func.h:62
Symbol * sym
Definition: func.h:56
void GenerateIR()
Definition: func.cpp:412
Type representing a function (return type + argument types)
Definition: type.h:829
Representation of a program symbol.
Definition: sym.h:62
Interface class that defines the type abstraction.
Definition: type.h:90
const Type * GetReturnType() const
Definition: func.cpp:148
Main ispc.header file. Defines Target, Globals and Opt classes.
Symbol * threadCountSym
Definition: func.h:60