Home
last modified time | relevance | path

Searched refs:IntConstExprASTNode (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/bsd/elftosb/dist/elftosb2/
H A DElftosbAST.cpp203 #pragma mark = IntConstExprASTNode =
205 IntConstExprASTNode::IntConstExprASTNode(const IntConstExprASTNode & other) in IntConstExprASTNode() function in IntConstExprASTNode
210 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 …]
H A DConversionController.cpp358 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()
1208IntConstExprASTNode * valueIntExpr = dynamic_cast<IntConstExprASTNode*>(valueExpr->reduce(m_contex… in createIVTDataSource()
1285IntConstExprASTNode * beginIntExpr = dynamic_cast<IntConstExprASTNode*>(beginExpr->reduce(m_contex… in createTargetFromNode()
1298IntConstExprASTNode * endIntExpr = dynamic_cast<IntConstExprASTNode*>(endExpr->reduce(m_context)); in createTargetFromNode()
[all …]
H A DElftosbAST.h254 class IntConstExprASTNode : public ExprASTNode
257 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()
H A DConversionController.h126 void printIntConstExpr(const std::string & ident, IntConstExprASTNode * expr);
H A Delftosb_parser.y957 $$ = new IntConstExprASTNode($1->getValue(), $1->getWordSize());
H A Delftosb_parser.tab.cpp2502 …(yyval.m_ast) = new IntConstExprASTNode((yyvsp[0].m_int)->getValue(), (yyvsp[0].m_int)->getWordSiz…