Home
last modified time | relevance | path

Searched refs:ExprOperand (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfExpression.h56 Optional<DIExpression::ExprOperand> take() { in take()
66 Optional<DIExpression::ExprOperand> peek() const { in peek()
73 Optional<DIExpression::ExprOperand> peekNext() const { in peekNext()
H A DDwarfExpression.cpp257 if (any_of(ExprCursor, [](DIExpression::ExprOperand Op) -> bool { in addMachineRegExpression()
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h2388 class ExprOperand {
2392 ExprOperand() = default;
2393 explicit ExprOperand(const uint64_t *Op) : Op(Op) {}
2420 : public std::iterator<std::input_iterator_tag, ExprOperand> {
2421 ExprOperand Op;
2428 const ExprOperand &operator*() const { return Op; }
2429 const ExprOperand *operator->() const { return &Op; }
2456 void increment() { Op = ExprOperand(getBase() + Op.getSize()); }
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DTypeLoc.h1652 Expr *ExprOperand; member
1677 return getLocalData()->ExprOperand; in getAttrExprOperand()
1680 getLocalData()->ExprOperand = e; in setAttrExprOperand()
/freebsd-12.1/contrib/llvm/lib/IR/
H A DDebugInfoMetadata.cpp815 unsigned DIExpression::ExprOperand::getSize() const { in getSize()