Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DDWARFExpression.cpp861 auto to_generic = [&](auto v) { in Evaluate() local
1207 stack.push_back(to_generic(opcodes.GetU8(&offset))); in Evaluate()
1210 stack.push_back(to_generic((int8_t)opcodes.GetU8(&offset))); in Evaluate()
1213 stack.push_back(to_generic(opcodes.GetU16(&offset))); in Evaluate()
1216 stack.push_back(to_generic((int16_t)opcodes.GetU16(&offset))); in Evaluate()
1219 stack.push_back(to_generic(opcodes.GetU32(&offset))); in Evaluate()
1222 stack.push_back(to_generic((int32_t)opcodes.GetU32(&offset))); in Evaluate()
1225 stack.push_back(to_generic(opcodes.GetU64(&offset))); in Evaluate()
1228 stack.push_back(to_generic((int64_t)opcodes.GetU64(&offset))); in Evaluate()
1651 stack.push_back(to_generic(op - DW_OP_lit0)); in Evaluate()