Intel® Implicit SPMD Program Compiler (Intel® ISPC)  1.13.0
Public Member Functions | Static Public Member Functions | List of all members
NullPointerExpr Class Reference

An expression that represents a NULL pointer. More...

#include <expr.h>

Inheritance diagram for NullPointerExpr:
Inheritance graph
[legend]
Collaboration diagram for NullPointerExpr:
Collaboration graph
[legend]

Public Member Functions

 NullPointerExpr (SourcePos p)
 
llvm::Value * GetValue (FunctionEmitContext *ctx) const
 
const TypeGetType () const
 
ExprTypeCheck ()
 
ExprOptimize ()
 
std::pair< llvm::Constant *, bool > GetConstant (const Type *type) const
 
void Print () const
 
int EstimateCost () const
 
- Public Member Functions inherited from Expr
 Expr (SourcePos p, unsigned scid)
 
virtual llvm::Value * GetLValue (FunctionEmitContext *ctx) const
 
virtual const TypeGetLValueType () const
 
virtual SymbolGetBaseSymbol () const
 
virtual std::pair< llvm::Constant *, bool > GetStorageConstant (const Type *type) const
 
- Public Member Functions inherited from ASTNode
 ASTNode (SourcePos p, unsigned scid)
 
virtual ~ASTNode ()
 
unsigned getValueID () const
 

Static Public Member Functions

static bool classof (NullPointerExpr const *)
 
static bool classof (ASTNode const *N)
 
- Static Public Member Functions inherited from Expr
static bool classof (Expr const *)
 
static bool classof (ASTNode const *N)
 
- Static Public Member Functions inherited from ASTNode
static bool classof (ASTNode const *)
 

Additional Inherited Members

- Public Types inherited from ASTNode
enum  ASTNodeTy {
  AddressOfExprID, AssignExprID, BinaryExprID, ConstExprID,
  DerefExprID, PtrDerefExprID, RefDerefExprID, ExprListID,
  FunctionCallExprID, FunctionSymbolExprID, IndexExprID, StructMemberExprID,
  VectorMemberExprID, NewExprID, NullPointerExprID, ReferenceExprID,
  SelectExprID, SizeOfExprID, SymbolExprID, SyncExprID,
  TypeCastExprID, UnaryExprID, MaxExprID, AssertStmtID,
  BreakStmtID, CaseStmtID, ContinueStmtID, DeclStmtID,
  DefaultStmtID, DeleteStmtID, DoStmtID, ExprStmtID,
  ForeachActiveStmtID, ForeachStmtID, ForeachUniqueStmtID, ForStmtID,
  GotoStmtID, IfStmtID, LabeledStmtID, PrintStmtID,
  ReturnStmtID, StmtListID, SwitchStmtID, UnmaskedStmtID
}
 
- Public Attributes inherited from ASTNode
SourcePos pos
 

Detailed Description

An expression that represents a NULL pointer.

Definition at line 726 of file expr.h.

Constructor & Destructor Documentation

◆ NullPointerExpr()

NullPointerExpr::NullPointerExpr ( SourcePos  p)
inline

Definition at line 728 of file expr.h.

Member Function Documentation

◆ classof() [1/2]

static bool NullPointerExpr::classof ( NullPointerExpr const *  )
inlinestatic

Definition at line 730 of file expr.h.

◆ classof() [2/2]

static bool NullPointerExpr::classof ( ASTNode const *  N)
inlinestatic

◆ EstimateCost()

int NullPointerExpr::EstimateCost ( ) const
virtual

Estimate the execution cost of the node (not including the cost of the children. The value returned should be based on the COST_* enumerant values defined in ispc.h.

Implements ASTNode.

Definition at line 8094 of file expr.cpp.

◆ GetConstant()

std::pair< llvm::Constant *, bool > NullPointerExpr::GetConstant ( const Type type) const
virtual

If this is a constant expression that can be converted to a constant of the given type, this method should return the corresponding llvm::Constant value and a flag denoting if it's valid for multi-target compilation for use as an initializer of a global variable. Otherwise it should return the llvm::constant value as NULL.

Reimplemented from Expr.

Definition at line 8075 of file expr.cpp.

References AssertPos, Globals::ctx, Module::errorCount, g, Type::LLVMType(), and m.

◆ GetType()

const Type * NullPointerExpr::GetType ( ) const
virtual

Returns the Type of the expression.

Implements Expr.

Definition at line 8069 of file expr.cpp.

References PointerType::Void.

◆ GetValue()

llvm::Value * NullPointerExpr::GetValue ( FunctionEmitContext ctx) const
virtual

This is the main method for Expr implementations to implement. It should call methods in the FunctionEmitContext to emit LLVM IR instructions to the current basic block in order to generate an llvm::Value that represents the expression's value.

Implements Expr.

Definition at line 8065 of file expr.cpp.

References LLVMTypes::VoidPointerType.

◆ Optimize()

Expr * NullPointerExpr::Optimize ( )
virtual

This method should perform early optimizations of the expression (constant folding, etc.) and return a pointer to the resulting expression. If an error is encountered during optimization, NULL should be returned.

Implements Expr.

Definition at line 8073 of file expr.cpp.

◆ Print()

void NullPointerExpr::Print ( ) const
virtual

Prints the expression to standard output (used for debugging).

Implements Expr.

Definition at line 8089 of file expr.cpp.

References SourcePos::Print().

◆ TypeCheck()

Expr * NullPointerExpr::TypeCheck ( )
virtual

This method should perform type checking of the expression and return a pointer to the resulting expression. If an error is encountered, NULL should be returned.

Implements Expr.

Definition at line 8071 of file expr.cpp.


The documentation for this class was generated from the following files: