Searched refs:IntConstExprASTNode (Results 1 – 6 of 6) sorted by relevance
203 #pragma mark = IntConstExprASTNode =205 IntConstExprASTNode::IntConstExprASTNode(const IntConstExprASTNode & other) in IntConstExprASTNode() function in IntConstExprASTNode210 void IntConstExprASTNode::printTree(int indent) const in printTree()252 return new IntConstExprASTNode(value, size); in reduce()338 return new IntConstExprASTNode(value); in reduce()363 IntConstExprASTNode * intConst = dynamic_cast<IntConstExprASTNode*>(m_expr.get()); in reduce()367 return new IntConstExprASTNode((uint32_t)value, intConst->getSize()); in reduce()397 IntConstExprASTNode * intConst = dynamic_cast<IntConstExprASTNode*>(m_expr.get()); in reduce()401 return new IntConstExprASTNode((uint32_t)value, intConst->getSize()); in reduce()454 return new IntConstExprASTNode(functionResult); in reduce()[all …]
358 IntConstExprASTNode * intConst = dynamic_cast<IntConstExprASTNode*>(expr); in processSources()420 IntConstExprASTNode * idConst = dynamic_cast<IntConstExprASTNode*>(idExpr); in processSections()570 IntConstExprASTNode * intConst = dynamic_cast<IntConstExprASTNode*>(reducedExpr); in convertAssignmentNodeToValue()743 IntConstExprASTNode * intNode = dynamic_cast<IntConstExprASTNode*>(argExprNode); in convertCallStatement()839 IntConstExprASTNode * intNode = dynamic_cast<IntConstExprASTNode*>(modeExprNode); in convertModeStatement()880 IntConstExprASTNode * intNode = dynamic_cast<IntConstExprASTNode*>(conditionalExpr); in convertIfStatement()1102 IntConstExprASTNode * intNode = dynamic_cast<IntConstExprASTNode*>(exprNode); in createSourceFromNode()1208 …IntConstExprASTNode * valueIntExpr = dynamic_cast<IntConstExprASTNode*>(valueExpr->reduce(m_contex… in createIVTDataSource()1285 …IntConstExprASTNode * beginIntExpr = dynamic_cast<IntConstExprASTNode*>(beginExpr->reduce(m_contex… in createTargetFromNode()1298 … IntConstExprASTNode * endIntExpr = dynamic_cast<IntConstExprASTNode*>(endExpr->reduce(m_context)); in createTargetFromNode()[all …]
254 class IntConstExprASTNode : public ExprASTNode257 IntConstExprASTNode(uint32_t value, int_size_t size=kWordSize)262 IntConstExprASTNode(const IntConstExprASTNode & other);266 virtual ASTNode * clone() const { return new IntConstExprASTNode(*this); } in clone()
126 void printIntConstExpr(const std::string & ident, IntConstExprASTNode * expr);
957 $$ = new IntConstExprASTNode($1->getValue(), $1->getWordSize());
2502 …(yyval.m_ast) = new IntConstExprASTNode((yyvsp[0].m_int)->getValue(), (yyvsp[0].m_int)->getWordSiz…