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.cpp984 auto to_generic = [&](auto v) { in Evaluate() local
1272 stack.push_back(to_generic(opcodes.GetU8(&offset))); in Evaluate()
1275 stack.push_back(to_generic((int8_t)opcodes.GetU8(&offset))); in Evaluate()
1278 stack.push_back(to_generic(opcodes.GetU16(&offset))); in Evaluate()
1281 stack.push_back(to_generic((int16_t)opcodes.GetU16(&offset))); in Evaluate()
1284 stack.push_back(to_generic(opcodes.GetU32(&offset))); in Evaluate()
1287 stack.push_back(to_generic((int32_t)opcodes.GetU32(&offset))); in Evaluate()
1290 stack.push_back(to_generic(opcodes.GetU64(&offset))); in Evaluate()
1293 stack.push_back(to_generic((int64_t)opcodes.GetU64(&offset))); in Evaluate()
1716 stack.push_back(to_generic(op - DW_OP_lit0)); in Evaluate()