Lines Matching full:evaluate
57 bool evaluate(StringRef Expr) const { in evaluate() function in llvm::RuntimeDyldCheckerExprEval
64 // Evaluate LHS. in evaluate()
75 // Evaluate RHS. in evaluate()
211 llvm_unreachable("Tried to evaluate unrecognized operation."); in computeBinOpResult()
238 // Evaluate a call to decode_operand. Decode the instruction operand at the
338 // Evaluate a call to next_pc.
383 // Evaluate a call to stub_addr/got_addr.
474 // Evaluate an identifier expr, which may be a symbol, or a call to
533 // Evaluate a constant numeric expression (hexadecimal or decimal) and
549 // Evaluate an expression of the form "(<expr>)" and return a pair
568 // Evaluate an expression in one of the following forms:
591 // Evaluate the expression representing the load address. in evalLoadExpr()
612 // Evaluate a "simple" expression. This is any expression that _isn't_ an
643 // Evaluate bit-slice if present. in evalSimpleExpr()
651 // Evaluate a bit-slice of an expression.
696 // Evaluate a "complex" expression.
709 // If there was an error, or there's nothing left to evaluate, return the in evalComplexExpr()
722 // This is a recognized bin-op. Evaluate the RHS, then evaluate the binop. in evalComplexExpr()
730 // This is a binary expression - evaluate and try to continue as a in evalComplexExpr()
839 bool Result = P.evaluate(CheckExpr); in check()