1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
|
//===-- SwiftUserExpression.cpp ---------------------------------*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#include "SwiftASTManipulator.h"
#include "SwiftExpressionParser.h"
#include "SwiftExpressionSourceCode.h"
#include "SwiftPersistentExpressionState.h"
#include "SwiftREPLMaterializer.h"
#include "swift/AST/ASTContext.h"
#include "swift/AST/GenericEnvironment.h"
#include "swift/Demangling/Demangler.h"
#if HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#include "Plugins/LanguageRuntime/Swift/SwiftLanguageRuntime.h"
#include "lldb/Core/Debugger.h"
#include "lldb/Core/Module.h"
#include "lldb/Expression/DiagnosticManager.h"
#include "lldb/Expression/ExpressionParser.h"
#include "lldb/Expression/ExpressionSourceCode.h"
#include "lldb/Expression/IRExecutionUnit.h"
#include "lldb/Symbol/CompileUnit.h"
#include "lldb/Symbol/Symbol.h"
#include "lldb/Symbol/Type.h"
#include "lldb/Symbol/Variable.h"
#include "lldb/Symbol/VariableList.h"
#include "lldb/Utility/LLDBAssert.h"
#include "lldb/Utility/LLDBLog.h"
#include "lldb/Utility/Log.h"
#include "lldb/Utility/Timer.h"
#include "swift/AST/Type.h"
#include "swift/AST/Types.h"
#include "swift/AST/ASTContext.h"
#include "swift/Demangling/Demangler.h"
#include "swift/AST/GenericEnvironment.h"
#include "llvm/BinaryFormat/Dwarf.h"
#include <map>
#include <string>
#include "SwiftUserExpression.h"
using namespace lldb_private;
char SwiftUserExpression::ID;
SwiftUserExpression::SwiftUserExpression(
ExecutionContextScope &exe_scope, llvm::StringRef expr,
llvm::StringRef prefix, SourceLanguage language, ResultType desired_type,
const EvaluateExpressionOptions &options)
: LLVMUserExpression(exe_scope, expr, prefix, language, desired_type,
options),
m_type_system_helper(*m_target_wp.lock().get()),
m_result_delegate(exe_scope.CalculateTarget(), *this, false),
m_error_delegate(exe_scope.CalculateTarget(), *this, true),
m_persistent_variable_delegate(*this) {
if (auto target = exe_scope.CalculateTarget())
m_debugger_id = target->GetDebugger().GetID();
m_runs_in_playground_or_repl =
options.GetREPLEnabled() || options.GetPlaygroundTransformEnabled();
}
SwiftUserExpression::~SwiftUserExpression() {}
void SwiftUserExpression::WillStartExecuting() {
if (auto process = m_jit_process_wp.lock())
if (auto *swift_runtime = SwiftLanguageRuntime::Get(process))
swift_runtime->WillStartExecutingUserExpression(
m_runs_in_playground_or_repl);
else
Debugger::ReportError(
"Can't execute a swift expression without a runtime",
m_debugger_id);
else
Debugger::ReportError("Can't execute an expression without a process",
m_debugger_id);
}
void SwiftUserExpression::DidFinishExecuting() {
auto process = m_jit_process_wp.lock();
if (!process) {
Debugger::ReportError("Could not finish a expression without a process",
m_debugger_id);
return;
}
if (!process->IsValid()) {
// This will cause SwiftLanguageRuntime::Get(process) tp fail.
Debugger::ReportError("Could not finish swift expression because the "
"process is being torn down",
m_debugger_id);
return;
}
auto *swift_runtime = SwiftLanguageRuntime::Get(process);
if (!swift_runtime) {
Debugger::ReportError("Could not finish swift expression without a runtime",
m_debugger_id);
return;
}
swift_runtime->DidFinishExecutingUserExpression(m_runs_in_playground_or_repl);
}
/// Determine whether we have a Swift language symbol context. This handles
/// some special cases, such as when the expression language is unknown, or
/// when we have to guess from a mangled name.
static bool isSwiftLanguageSymbolContext(const SwiftUserExpression &expr,
const SymbolContext &sym_ctx) {
if (sym_ctx.comp_unit &&
(!expr.Language() ||
expr.Language().name == llvm::dwarf::DW_LNAME_Swift)) {
if (sym_ctx.comp_unit->GetLanguage() == lldb::eLanguageTypeSwift)
return true;
} else if (sym_ctx.symbol && !expr.Language()) {
if (sym_ctx.symbol->GetMangled().GuessLanguage() ==
lldb::eLanguageTypeSwift)
return true;
}
return false;
}
/// Information about `self` in a frame.
struct SwiftSelfInfo {
/// Whether `self` is a metatype (i.e. whether we're in a static method).
bool is_metatype = false;
/// Adjusted type of `self`. If we're in a static method, this is an instance
/// type.
CompilerType type;
/// Type flags for the adjusted type of `self`.
Flags type_flags = {};
};
/// Find information about `self` in the frame.
static std::optional<SwiftSelfInfo>
findSwiftSelf(StackFrame &frame, lldb::VariableSP self_var_sp) {
SwiftSelfInfo info;
lldb::ValueObjectSP valobj_sp = frame.GetValueObjectForFrameVariable(
self_var_sp, lldb::eDynamicDontRunTarget);
// 1) Try finding the type of `self` from its ValueObject.
if (valobj_sp && valobj_sp->GetError().Success())
info.type = valobj_sp->GetCompilerType();
// 2) If (1) fails, try finding the type of `self` from its Variable.
if (!info.type.IsValid())
if (Type *self_lldb_type = self_var_sp->GetType())
info.type = self_var_sp->GetType()->GetForwardCompilerType();
// 3) If (1) and (2) fail, give up.
if (!info.type.IsValid())
return {};
// 4) If `self` is a metatype, get its instance type.
if (Flags(info.type.GetTypeInfo())
.AllSet(lldb::eTypeIsSwift | lldb::eTypeIsMetatype)) {
info.type = TypeSystemSwift::GetInstanceType(info.type, &frame);
info.is_metatype = true;
}
auto ts = info.type.GetTypeSystem().dyn_cast_or_null<TypeSystemSwift>();
if (!ts)
return {};
info.type = ts->GetStaticSelfType(info.type.GetOpaqueQualType());
info.type_flags = Flags(info.type.GetTypeInfo());
if (!info.type.IsValid())
return {};
return info;
}
void SwiftUserExpression::ScanContext(ExecutionContext &exe_ctx, Status &err) {
Log *log = GetLog(LLDBLog::Expressions);
LLDB_LOG(log, "SwiftUserExpression::ScanContext()");
LLDB_SCOPED_TIMER();
m_target = exe_ctx.GetTargetPtr();
if (!m_target) {
LLDB_LOG(log, " [SUE::SC] Null target");
return;
}
StackFrame *frame = exe_ctx.GetFramePtr();
if (!frame) {
LLDB_LOG(log, " [SUE::SC] Null stack frame");
return;
}
SymbolContext sym_ctx = frame->GetSymbolContext(
lldb::eSymbolContextFunction | lldb::eSymbolContextBlock |
lldb::eSymbolContextCompUnit | lldb::eSymbolContextSymbol);
bool frame_is_swift = isSwiftLanguageSymbolContext(*this, sym_ctx);
if (!frame_is_swift) {
LLDB_LOG(log, " [SUE::SC] Frame is not swift-y");
return;
}
if (!m_swift_ast_ctx) {
LLDB_LOG(log, " [SUE::SC] NULL Swift AST Context");
return;
}
if (!m_swift_ast_ctx->GetClangImporter()) {
LLDB_LOG(log, " [SUE::SC] Swift AST Context has no Clang importer");
return;
}
if (m_swift_ast_ctx->HasFatalErrors()) {
LLDB_LOG(log, " [SUE::SC] Swift AST Context has fatal errors");
return;
}
LLDB_LOG(log, " [SUE::SC] Compilation unit is swift");
Block *function_block = sym_ctx.GetFunctionBlock();
if (!function_block) {
LLDB_LOG(log, " [SUE::SC] No function block");
return;
}
lldb::VariableListSP variable_list_sp(
function_block->GetBlockVariableList(true));
if (!variable_list_sp) {
LLDB_LOG(log, " [SUE::SC] No block variable list");
return;
}
lldb::VariableSP self_var_sp(
variable_list_sp->FindVariable(ConstString("self")));
if (!self_var_sp || !SwiftLanguageRuntime::IsSelf(*self_var_sp)) {
LLDB_LOG(log, " [SUE::SC] No valid `self` variable");
return;
}
// If we have a self variable, but it has no location at the current PC, then
// we can't use it. Set the self var back to empty and we'll just pretend we
// are in a regular frame, which is really the best we can do.
if (!self_var_sp->LocationIsValidForFrame(frame)) {
LLDB_LOG(log, " [SUE::SC] `self` variable location not valid for frame");
return;
}
auto maybe_self_info = findSwiftSelf(*frame, self_var_sp);
if (!maybe_self_info) {
LLDB_LOG(log, " [SUE::SC] Could not determine info about `self`");
return;
}
// Check to see if we are in a class func of a class (or static func of a
// struct) and adjust our type to point to the instance type.
SwiftSelfInfo info = *maybe_self_info;
m_in_static_method = info.is_metatype;
if (info.type_flags.AllSet(lldb::eTypeIsSwift | lldb::eTypeInstanceIsPointer))
m_is_class |= info.type_flags.Test(lldb::eTypeIsClass);
// Handle weak self.
auto ts = info.type.GetTypeSystem().dyn_cast_or_null<TypeSystemSwift>();
if (!ts)
return;
if (auto ownership_kind = ts->GetNonTriviallyManagedReferenceKind(
info.type.GetOpaqueQualType()))
if (*ownership_kind ==
SwiftASTContext::NonTriviallyManagedReferenceKind::eWeak) {
m_is_class = true;
m_is_weak_self = true;
}
m_needs_object_ptr = !m_in_static_method;
LLDB_LOGF(log, " [SUE::SC] Containing class name: %s",
info.type.GetTypeName().AsCString());
}
/// Create a \c VariableInfo record for \c variable if there isn't
/// already shadowing inner declaration in \c processed_variables.
static llvm::Error AddVariableInfo(
lldb::VariableSP variable_sp, lldb::StackFrameSP &stack_frame_sp,
SwiftASTContextForExpressions &ast_context, SwiftLanguageRuntime *runtime,
llvm::SmallDenseSet<const char *, 8> &processed_variables,
llvm::SmallVectorImpl<SwiftASTManipulator::VariableInfo> &local_variables,
lldb::DynamicValueType use_dynamic,
lldb::BindGenericTypes bind_generic_types) {
LLDB_SCOPED_TIMER();
StringRef name = variable_sp->GetUnqualifiedName().GetStringRef();
const char *name_cstr = name.data();
assert(StringRef(name_cstr) == name && "missing null terminator");
if (name.empty())
return llvm::Error::success();
// To support "guard let self = self" the function argument "self"
// is processed (as the special self argument) even if it is
// shadowed by a local variable.
bool is_self = SwiftLanguageRuntime::IsSelf(*variable_sp);
const char *overridden_name = name_cstr;
if (is_self)
overridden_name = "$__lldb_injected_self";
if (processed_variables.count(overridden_name))
return llvm::Error::success();
if (!stack_frame_sp)
return llvm::Error::success();
if (!variable_sp || !variable_sp->GetType())
return llvm::Error::success();
CompilerType target_type;
bool is_unbound_pack =
bind_generic_types == lldb::eDontBind &&
(variable_sp->GetType()->GetForwardCompilerType().GetTypeInfo() &
lldb::eTypeIsPack);
// If we're not binding the generic types, we need to set the self type as an
// opaque pointer type. This is necessary because we don't bind the generic
// parameters, and we can't have a type with unbound generics in a non-generic
// function.
if (bind_generic_types == lldb::eDontBind && is_self)
target_type = ast_context.GetBuiltinRawPointerType();
else if (is_unbound_pack)
target_type = variable_sp->GetType()->GetForwardCompilerType();
else {
CompilerType var_type = SwiftExpressionParser::ResolveVariable(
variable_sp, stack_frame_sp, runtime, use_dynamic, bind_generic_types);
Status error;
target_type = ast_context.ImportType(var_type, error);
}
// If the import failed, give up.
if (!target_type.IsValid()) {
// Treat an invalid type for self as a fatal error.
if (is_self)
return llvm::createStringError("type for self is invalid");
return llvm::Error::success();
}
// Report a fatal error if self can't be reconstructed as a Swift AST type.
if (is_self) {
auto self_ty = ast_context.GetSwiftType(target_type);
if (!self_ty)
return llvm::createStringError("type for self cannot be reconstructed: " +
llvm::toString(self_ty.takeError()));
}
auto ts = target_type.GetTypeSystem().dyn_cast_or_null<TypeSystemSwift>();
if (!ts)
return llvm::createStringError("type for self has no type system");
// If we couldn't fully realize the type, then we aren't going
// to get very far making a local out of it, so discard it here.
Log *log = GetLog(LLDBLog::Types | LLDBLog::Expressions);
if (!is_unbound_pack && ts->IsMeaninglessWithoutDynamicResolution(
target_type.GetOpaqueQualType())) {
if (log)
log->Printf("Discarding local %s because we couldn't fully realize it, "
"our best attempt was: %s.",
name_cstr,
target_type.GetDisplayTypeName().AsCString("<unknown>"));
// Not realizing self is a fatal error for an expression and the
// Swift compiler error alone is not particularly useful.
if (is_self)
return llvm::createStringError(
llvm::inconvertibleErrorCode(),
"Discarding local %s because we couldn't fully realize it, "
"our best attempt was: %s.",
name_cstr, target_type.GetDisplayTypeName().AsCString("<unknown>"));
return llvm::Error::success();
}
if (log && is_self)
if (swift::Type swift_type =
llvm::expectedToStdOptional(ast_context.GetSwiftType(target_type))
.value_or(swift::Type())) {
std::string s;
llvm::raw_string_ostream ss(s);
swift_type->dump(ss);
ss.flush();
log->Printf("Adding injected self: type (%p) context(%p) is: %s",
static_cast<void *>(swift_type.getPointer()),
static_cast<void *>(*ast_context.GetASTContext()), s.c_str());
}
// A one-off clone of variable_sp with the type replaced by target_type.
auto patched_variable_sp = std::make_shared<lldb_private::Variable>(
0, variable_sp->GetName().GetCString(), "",
std::make_shared<lldb_private::SymbolFileType>(
*variable_sp->GetType()->GetSymbolFile(),
variable_sp->GetType()->GetSymbolFile()->MakeType(
0, variable_sp->GetType()->GetName(), std::nullopt,
variable_sp->GetType()->GetSymbolContextScope(), LLDB_INVALID_UID,
Type::eEncodingIsUID, variable_sp->GetType()->GetDeclaration(),
target_type, lldb_private::Type::ResolveState::Full,
variable_sp->GetType()->GetPayload())),
variable_sp->GetScope(), variable_sp->GetSymbolContextScope(),
variable_sp->GetScopeRange(),
const_cast<lldb_private::Declaration *>(&variable_sp->GetDeclaration()),
variable_sp->LocationExpressionList(), variable_sp->IsExternal(),
variable_sp->IsArtificial(),
variable_sp->GetLocationIsConstantValueData(),
variable_sp->IsStaticMember(), variable_sp->IsConstant());
SwiftASTManipulatorBase::VariableMetadataSP metadata_sp(
new SwiftASTManipulatorBase::VariableMetadataVariable(
patched_variable_sp));
local_variables.emplace_back(
target_type, ast_context.GetASTContext()->getIdentifier(overridden_name),
metadata_sp,
variable_sp->IsConstant() ? swift::VarDecl::Introducer::Let
: swift::VarDecl::Introducer::Var,
false, is_unbound_pack);
processed_variables.insert(overridden_name);
return llvm::Error::success();
}
/// Collets all the variables visible in the current scope.
static bool CollectVariablesInScope(SymbolContext &sc,
lldb::StackFrameSP &stack_frame_sp,
VariableList &variables) {
if (!sc.block && !sc.function)
return true;
Block *block = sc.block;
Block *top_block = block->GetContainingInlinedBlock();
if (!top_block)
top_block = &sc.function->GetBlock(true);
// The module scoped variables are stored at the CompUnit level, so
// after we go through the current context, then we have to take one
// more pass through the variables in the CompUnit.
bool done = false;
do {
// Iterate over all parent contexts *including* the top_block.
if (block == top_block)
done = true;
bool can_create = true;
bool get_parent_variables = false;
bool stop_if_block_is_inlined_function = true;
block->AppendVariables(
can_create, get_parent_variables, stop_if_block_is_inlined_function,
[](Variable *) { return true; }, &variables);
if (!done)
block = block->GetParent();
} while (block && !done);
// Also add local copies of globals. This is in many cases redundant
// work because the globals would also be found in the expression
// context's Swift module, but it allows a limited form of
// expression evaluation to work even if the Swift module failed to
// load, as long as the module isn't necessary to resolve the type
// or aother symbols in the expression.
if (sc.comp_unit) {
lldb::VariableListSP globals_sp = sc.comp_unit->GetVariableList(true);
if (globals_sp)
variables.AddVariables(globals_sp.get());
}
return true;
}
/// Create a \c VariableInfo record for each visible variable.
static llvm::Error RegisterAllVariables(
SymbolContext &sc, lldb::StackFrameSP &stack_frame_sp,
SwiftASTContextForExpressions &ast_context,
llvm::SmallVectorImpl<SwiftASTManipulator::VariableInfo> &local_variables,
lldb::DynamicValueType use_dynamic,
lldb::BindGenericTypes bind_generic_types) {
LLDB_SCOPED_TIMER();
SwiftLanguageRuntime *language_runtime = nullptr;
if (stack_frame_sp)
language_runtime =
SwiftLanguageRuntime::Get(stack_frame_sp->GetThread()->GetProcess());
VariableList variables;
CollectVariablesInScope(sc, stack_frame_sp, variables);
// Proceed from the innermost scope outwards, adding all variables
// not already shadowed by an inner declaration.
llvm::SmallDenseSet<const char *, 8> processed_names;
for (size_t vi = 0, ve = variables.GetSize(); vi != ve; ++vi)
if (auto error =
AddVariableInfo({variables.GetVariableAtIndex(vi)}, stack_frame_sp,
ast_context, language_runtime, processed_names,
local_variables, use_dynamic, bind_generic_types))
return error;
return llvm::Error::success();
}
static SwiftPersistentExpressionState *
GetPersistentState(Target *target, ExecutionContext &exe_ctx) {
auto exe_scope = exe_ctx.GetBestExecutionContextScope();
if (!exe_scope)
return nullptr;
return target->GetSwiftPersistentExpressionState(*exe_scope);
}
/// Check if we can evaluate the expression as generic.
/// Currently, evaluating expression as a generic has several limitations:
/// - Only self will be evaluated with unbound generics.
/// - The Self type can only have one generic parameter.
/// - The Self type has to be the outermost type with unbound generics.
static bool CanEvaluateExpressionWithoutBindingGenericParams(
const llvm::SmallVectorImpl<SwiftASTManipulator::VariableInfo> &variables,
const std::optional<SwiftLanguageRuntime::GenericSignature> &generic_sig,
SwiftASTContextForExpressions &scratch_ctx, Block *block,
StackFrame &stack_frame) {
// First, find the compiler type of self with the generic parameters not
// bound.
auto self_var = SwiftExpressionParser::FindSelfVariable(block);
if (!self_var) {
// Freestanding variadic generic functions are also supported.
if (generic_sig)
return generic_sig->pack_expansions.size();
return false;
}
lldb::ValueObjectSP self_valobj = stack_frame.GetValueObjectForFrameVariable(
self_var, lldb::eNoDynamicValues);
if (!self_valobj)
return false;
auto self_type = self_valobj->GetCompilerType();
if (!self_type)
return false;
auto ts = self_type.GetTypeSystem().dyn_cast_or_null<TypeSystemSwift>();
if (!ts)
return false;
auto swift_type =
llvm::expectedToStdOptional(scratch_ctx.GetSwiftType(self_type))
.value_or(swift::Type());
if (!swift_type)
return false;
auto *decl = swift_type->getAnyGeneric();
if (!decl)
return false;
auto *env = decl->getGenericEnvironment();
if (!env)
return false;
auto generic_params = env->getGenericParams();
// If there aren't any generic parameters we can't evaluate the expression as
// generic.
if (generic_params.empty())
return false;
auto *first_param = generic_params[0];
// Currently we only support evaluating self as generic if the generic
// parameter is the first one.
if (first_param->getDepth() != 0 || first_param->getIndex() != 0)
return false;
llvm::SmallVector<const SwiftASTManipulator::VariableInfo *>
outermost_metadata_vars;
for (auto &variable : variables)
if (variable.IsOutermostMetadataPointer())
outermost_metadata_vars.push_back(&variable);
// Check that all metadata belong to the outermost type, and check that we do
// have the metadata pointer available.
for (auto *generic_param : generic_params) {
if (generic_param->getDepth() != 0)
return false;
std::string var_name;
llvm::raw_string_ostream s(var_name);
s << "$τ_0_" << generic_param->getIndex();
auto found = false;
for (auto *metadata_var : outermost_metadata_vars) {
if (metadata_var->GetName().str() == var_name) {
found = true;
break;
}
}
if (!found)
return false;
}
return true;
}
SwiftExpressionParser::ParseResult
SwiftUserExpression::GetTextAndSetExpressionParser(
DiagnosticManager &diagnostic_manager,
std::unique_ptr<SwiftExpressionSourceCode> &source_code,
ExecutionContext &exe_ctx, ExecutionContextScope *exe_scope) {
using ParseResult = SwiftExpressionParser::ParseResult;
Log *log = GetLog(LLDBLog::Expressions);
lldb::TargetSP target_sp;
SymbolContext sc;
lldb::StackFrameSP stack_frame;
if (exe_scope) {
target_sp = exe_scope->CalculateTarget();
stack_frame = exe_scope->CalculateStackFrame();
if (stack_frame) {
sc = stack_frame->GetSymbolContext(lldb::eSymbolContextEverything);
}
}
llvm::SmallVector<SwiftASTManipulator::VariableInfo> local_variables;
if (llvm::Error error = RegisterAllVariables(
sc, stack_frame, *m_swift_ast_ctx, local_variables,
m_options.GetUseDynamic(), m_options.GetBindGenericTypes())) {
diagnostic_manager.PutString(lldb::eSeverityInfo,
llvm::toString(std::move(error)));
diagnostic_manager.PutString(
lldb::eSeverityError,
"Couldn't realize Swift AST type of self. Hint: using `v` to "
"directly inspect variables and fields may still work.");
return ParseResult::retry_no_bind_generic_params;
}
if (stack_frame) {
// Extract the generic signature of the context.
ConstString func_name =
stack_frame->GetSymbolContext(lldb::eSymbolContextFunction)
.GetFunctionName(Mangled::ePreferMangled);
m_generic_signature = SwiftLanguageRuntime::GetGenericSignature(
func_name.GetStringRef(), m_swift_ast_ctx->GetTypeSystemSwiftTypeRef());
}
if (m_options.GetBindGenericTypes() == lldb::eDontBind &&
!CanEvaluateExpressionWithoutBindingGenericParams(
local_variables, m_generic_signature, *m_swift_ast_ctx, sc.block,
*stack_frame.get())) {
diagnostic_manager.PutString(
lldb::eSeverityError,
"Could not evaluate the expression without binding generic types.");
return ParseResult::unrecoverable_error;
}
uint32_t first_body_line = 0;
Status status = source_code->GetText(
m_transformed_text, m_options.GetLanguage(), m_needs_object_ptr,
m_in_static_method, m_is_class, m_is_weak_self, m_options,
m_generic_signature, exe_ctx, first_body_line, local_variables);
if (status.Fail()) {
diagnostic_manager.PutString(
lldb::eSeverityError,
"couldn't construct expression body: " +
std::string(status.AsCString("<unknown error>")));
return ParseResult::unrecoverable_error;
}
if (log)
log->Printf("Parsing the following code:\n%s", m_transformed_text.c_str());
//
// Parse the expression.
//
if (m_options.GetREPLEnabled())
m_materializer_up.reset(new SwiftREPLMaterializer());
else
m_materializer_up.reset(new Materializer());
auto *swift_parser =
new SwiftExpressionParser(exe_scope, *m_swift_ast_ctx, *this,
std::move(local_variables), m_options);
SwiftExpressionParser::ParseResult parse_result =
swift_parser->Parse(diagnostic_manager, first_body_line,
first_body_line + source_code->GetNumBodyLines());
m_parser.reset(swift_parser);
return parse_result;
}
bool SwiftUserExpression::Parse(DiagnosticManager &diagnostic_manager,
ExecutionContext &exe_ctx,
lldb_private::ExecutionPolicy execution_policy,
bool keep_result_in_memory,
bool generate_debug_info) {
Log *log = GetLog(LLDBLog::Expressions);
LLDB_SCOPED_TIMER();
Status err;
auto error = [&](const char *error_msg, const char *detail = nullptr) {
if (detail)
LLDB_LOG(log, "{0}: {1}", error_msg, detail);
else
LLDB_LOG(log, error_msg);
diagnostic_manager.PutString(lldb::eSeverityError, error_msg);
if (detail)
diagnostic_manager.AppendMessageToDiagnostic(detail);
return false;
};
InstallContext(exe_ctx);
Target *target = exe_ctx.GetTargetPtr();
if (!target)
return error("couldn't start parsing (no target)");
StackFrame *frame = exe_ctx.GetFramePtr();
if (!frame)
return error("couldn't start parsing - no stack frame");
ExecutionContextScope *exe_scope =
m_options.GetREPLEnabled() ? static_cast<ExecutionContextScope *>(target)
: static_cast<ExecutionContextScope *>(frame);
exe_scope = exe_ctx.GetBestExecutionContextScope();
m_swift_scratch_ctx = target->GetSwiftScratchContext(m_err, *exe_scope);
if (!m_swift_scratch_ctx)
return error("could not create a Swift scratch context: ",
m_err.AsCString());
// For playgrounds, the target triple should be used for expression
// evaluation, not the current module. This requires disabling precise
// compiler invocations.
//
// To disable precise compiler invocations, pass a null SymbolContext.
const SymbolContext *sc = nullptr;
if (!m_runs_in_playground_or_repl)
sc = &frame->GetSymbolContext(lldb::eSymbolContextFunction);
auto *swift_ast_ctx = m_swift_scratch_ctx->get()->GetSwiftASTContext(sc);
m_swift_ast_ctx =
llvm::dyn_cast_or_null<SwiftASTContextForExpressions>(swift_ast_ctx);
if (!m_swift_ast_ctx)
return error("could not create a Swift AST context");
if (m_swift_ast_ctx->HasFatalErrors()) {
m_swift_ast_ctx->PrintDiagnostics(diagnostic_manager);
LLDB_LOG(log, "Swift AST context is in a fatal error state");
return false;
}
// This may destroy the scratch context.
auto *persistent_state = GetPersistentState(target, exe_ctx);
if (!persistent_state)
return error("could not start parsing (no persistent data)");
Status status;
SourceModule module_info;
module_info.path.emplace_back("Swift");
swift::ModuleDecl *module_decl =
m_swift_ast_ctx->GetModule(module_info, status);
if (status.Fail() || !module_decl)
return error("could not load Swift Standard Library", status.AsCString());
m_swift_ast_ctx->AddHandLoadedModule(ConstString("Swift"),
swift::ImportedModule(module_decl));
m_result_delegate.RegisterPersistentState(persistent_state);
m_error_delegate.RegisterPersistentState(persistent_state);
ScanContext(exe_ctx, err);
if (!err.Success())
diagnostic_manager.Printf(lldb::eSeverityWarning, "warning: %s\n",
err.AsCString());
StreamString m_transformed_stream;
//
// Generate the expression.
//
std::string prefix = m_expr_prefix;
std::unique_ptr<SwiftExpressionSourceCode> source_code(
SwiftExpressionSourceCode::CreateWrapped(prefix.c_str(),
m_expr_text.c_str()));
const lldb::LanguageType lang_type = lldb::eLanguageTypeSwift;
m_options.SetLanguage(lang_type);
m_options.SetGenerateDebugInfo(generate_debug_info);
using ParseResult = SwiftExpressionParser::ParseResult;
// Use a separate diagnostic manager instead of the main one, the reason we do
// this is that on retries we would like to ignore diagnostics produced by
// either the first or second try.
DiagnosticManager first_try_diagnostic_manager;
DiagnosticManager second_try_diagnostic_manager;
bool retry = false;
while (true) {
SwiftExpressionParser::ParseResult parse_result;
if (!retry) {
parse_result = GetTextAndSetExpressionParser(
first_try_diagnostic_manager, source_code, exe_ctx, exe_scope);
if (parse_result != SwiftExpressionParser::ParseResult::
retry_no_bind_generic_params ||
m_options.GetBindGenericTypes() != lldb::eBindAuto)
// If we're not retrying, just copy the diagnostics over.
diagnostic_manager.Consume(std::move(first_try_diagnostic_manager));
} else {
parse_result = GetTextAndSetExpressionParser(
second_try_diagnostic_manager, source_code, exe_ctx, exe_scope);
if (parse_result == SwiftExpressionParser::ParseResult::success)
// If we succeeded the second time around, copy any diagnostics we
// produced in the success case over, and ignore the first attempt's
// failures.
diagnostic_manager.Consume(std::move(second_try_diagnostic_manager));
else
// If we failed though, copy the diagnostics of the first attempt, and
// silently ignore any errors produced by the retry, as the retry was
// not what the user asked, and any diagnostics produced by it will
// most likely confuse the user.
diagnostic_manager.Consume(std::move(first_try_diagnostic_manager));
}
if (parse_result == SwiftExpressionParser::ParseResult::success)
break;
switch (parse_result) {
case ParseResult::retry_no_bind_generic_params:
// Retry running the expression without binding the generic types if
// BindGenericTypes was in the auto setting, give up otherwise.
if (m_options.GetBindGenericTypes() != lldb::eBindAuto)
return false;
// Retry without binding generic parameters, this is the only
// case that will loop.
m_options.SetBindGenericTypes(lldb::eDontBind);
retry = true;
break;
case ParseResult::retry_fresh_context:
m_fixed_text = m_expr_text;
return false;
case ParseResult::unrecoverable_error:
// If fixits are enabled, calculate the fixed expression string.
if (m_options.GetAutoApplyFixIts() && diagnostic_manager.HasFixIts()) {
if (m_parser->RewriteExpression(diagnostic_manager)) {
uint32_t fixed_start;
uint32_t fixed_end;
const std::string &fixed_expression =
diagnostic_manager.GetFixedExpression();
if (SwiftExpressionSourceCode::GetOriginalBodyBounds(
fixed_expression, fixed_start, fixed_end))
m_fixed_text =
fixed_expression.substr(fixed_start, fixed_end - fixed_start);
}
}
return false;
case ParseResult::success:
llvm_unreachable("Success case is checked separately before switch!");
}
}
// Prepare the output of the parser for execution, evaluating it
// statically if possible.
Status jit_error = m_parser->PrepareForExecution(
m_jit_start_addr, m_jit_end_addr, m_execution_unit_sp, exe_ctx,
m_can_interpret, execution_policy);
if (m_execution_unit_sp) {
if (m_options.GetREPLEnabled()) {
llvm::cast<SwiftREPLMaterializer>(m_materializer_up.get())
->RegisterExecutionUnit(m_execution_unit_sp.get());
}
bool register_execution_unit = false;
if (m_options.GetREPLEnabled()) {
if (!m_execution_unit_sp->GetJittedFunctions().empty() ||
!m_execution_unit_sp->GetJittedGlobalVariables().empty()) {
register_execution_unit = true;
}
} else {
if (m_execution_unit_sp->GetJittedFunctions().size() > 1 ||
m_execution_unit_sp->GetJittedGlobalVariables().size() > 1) {
register_execution_unit = true;
}
}
if (register_execution_unit) {
// We currently key off there being more than one external
// function in the execution unit to determine whether it needs
// to live in the process.
GetPersistentState(exe_ctx.GetTargetPtr(), exe_ctx)
->RegisterExecutionUnit(m_execution_unit_sp);
}
}
StreamString jit_module_name;
jit_module_name.Printf("%s%u", FunctionName(),
m_options.GetExpressionNumber());
auto module =
m_execution_unit_sp->CreateJITModule(jit_module_name.GetString().data());
Process *process = exe_ctx.GetProcessPtr();
auto *swift_runtime = SwiftLanguageRuntime::Get(process);
if (module && swift_runtime) {
ModuleList modules;
modules.Append(module, false);
swift_runtime->ModulesDidLoad(modules);
}
if (jit_error.Success()) {
if (process && m_jit_start_addr != LLDB_INVALID_ADDRESS)
m_jit_process_wp = lldb::ProcessWP(process->shared_from_this());
return true;
}
const char *error_cstr = jit_error.AsCString();
if (!error_cstr || !error_cstr[0])
error_cstr = "expression can't be interpreted or run";
return error(error_cstr);
}
bool SwiftUserExpression::AddArguments(ExecutionContext &exe_ctx,
std::vector<lldb::addr_t> &args,
lldb::addr_t struct_address,
DiagnosticManager &diagnostic_manager) {
if (m_options.GetPlaygroundTransformEnabled() || m_options.GetREPLEnabled()) {
// When calling the playground function we are calling a main
// function which takes two arguments: argc and argv So we pass
// two zeroes as arguments.
args.push_back(0); // argc
args.push_back(0); // argv
return true;
}
args.push_back(struct_address);
return true;
}
lldb::ExpressionVariableSP SwiftUserExpression::GetResultAfterDematerialization(
ExecutionContextScope *exe_scope) {
LLDB_SCOPED_TIMER();
lldb::ExpressionVariableSP in_result_sp = m_result_delegate.GetVariable();
lldb::ExpressionVariableSP in_error_sp = m_error_delegate.GetVariable();
lldb::ExpressionVariableSP result_sp;
if (in_error_sp) {
bool error_is_valid = false;
if (in_error_sp->GetCompilerType().GetTypeSystem()->SupportsLanguage(
lldb::eLanguageTypeSwift)) {
lldb::ValueObjectSP val_sp = in_error_sp->GetValueObject();
if (val_sp) {
if (exe_scope) {
lldb::ProcessSP process_sp = exe_scope->CalculateProcess();
if (process_sp) {
auto *swift_runtime = SwiftLanguageRuntime::Get(process_sp);
if (swift_runtime)
error_is_valid = swift_runtime->IsValidErrorValue(*val_sp.get());
}
}
}
}
lldb::TargetSP target_sp = exe_scope->CalculateTarget();
if (target_sp) {
if (auto *persistent_state =
target_sp->GetSwiftPersistentExpressionState(*exe_scope)) {
if (error_is_valid) {
persistent_state->RemovePersistentVariable(in_result_sp);
result_sp = in_error_sp;
} else {
persistent_state->RemovePersistentVariable(in_error_sp);
result_sp = in_result_sp;
}
}
}
} else
result_sp = in_result_sp;
return result_sp;
}
SwiftUserExpression::ResultDelegate::ResultDelegate(
lldb::TargetSP target, SwiftUserExpression &, bool is_error)
: m_target_sp(target), m_is_error(is_error) {}
ConstString SwiftUserExpression::ResultDelegate::GetName() {
return m_persistent_state->GetNextPersistentVariableName(m_is_error);
}
void SwiftUserExpression::ResultDelegate::DidDematerialize(
lldb::ExpressionVariableSP &variable) {
m_variable = variable;
}
void SwiftUserExpression::ResultDelegate::RegisterPersistentState(
PersistentExpressionState *persistent_state) {
m_persistent_state = persistent_state;
}
lldb::ExpressionVariableSP &SwiftUserExpression::ResultDelegate::GetVariable() {
return m_variable;
}
SwiftUserExpression::PersistentVariableDelegate::PersistentVariableDelegate(
SwiftUserExpression &) {}
ConstString SwiftUserExpression::PersistentVariableDelegate::GetName() {
return ConstString();
}
void SwiftUserExpression::PersistentVariableDelegate::DidDematerialize(
lldb::ExpressionVariableSP &variable) {
if (SwiftExpressionVariable *swift_var =
llvm::dyn_cast<SwiftExpressionVariable>(variable.get())) {
swift_var->m_swift_flags &= ~SwiftExpressionVariable::EVSNeedsInit;
}
}
|