- Nov 04, 2011
-
-
Sean Callanan authored
target is stopped in a C++ or Objective-C method but the "self" pointer's valid range actually doesn't cover the current location. Before, that was confusing Clang to the point where it crashed; now, we sanity-check and fall back to pretending we're in a C function if "self" or "this" isn't available. llvm-svn: 143676
-
Johnny Chen authored
Greps and returns the first svn log entry containing a line matching the regular expression pattern passed as the only arg. Example: svn log -v | grep-svn-log.py '^ D.+why_are_you_missing.h$' llvm-svn: 143671
-
- Nov 03, 2011
-
-
Sean Callanan authored
have the correct value in the IRInterpreter. llvm-svn: 143663
-
Jim Ingham authored
llvm-svn: 143659
-
Greg Clayton authored
on internal only (public API hasn't changed) to simplify the paramter list to the launch calls down into just one argument. Also all of the argument, envronment and stdio things are now handled in a much more centralized fashion. llvm-svn: 143656
-
Benjamin Kramer authored
llvm-svn: 143613
-
Sean Callanan authored
IRInterpreter to get the value, not the location, of references. The location of a reference has type T&&, which is meaningless to Clang. llvm-svn: 143592
-
Greg Clayton authored
llvm-svn: 143587
-
Sean Callanan authored
llvm-svn: 143586
-
- Nov 02, 2011
-
-
Benjamin Kramer authored
llvm-svn: 143566
-
Sean Callanan authored
allows us to set __attribute__ ((used)) on expressions that masquerade as methods. When we are stopped in classes in anonymous namespaces, this fix (and enabling __attribute__ ((used)) on the method) will allow expressions to run. llvm-svn: 143560
-
rdar://problem/10020849Greg Clayton authored
Fixed an issue where the DWARF might mention that a class has a constructor (default, copy or move), destructor, or an assignment operator (copy or move) and it might not have an actual implementation in your code. Then you try and use this struct or class in an expression and the JIT would ask for the address of these methods that were in the declaration, yet there are none. We now "do the right thing" for trivial ctors, dtors and assignment operators by telling the methods that they are are defaulted and trivial, and clang will then just do all of the work with builtins! llvm-svn: 143528
-
Sean Callanan authored
generated special member functions (constructors, destructors, etc.) for classes that don't really have them. We needed to mark these as artificial to reflect the debug information; this bug does that for constructors and destructors. The "etc." case (certain assignment operators, mostly) remains to be fixed. llvm-svn: 143526
-
Sean Callanan authored
correctly, and added a testcase to check that it works. The main problem here is that Objective-C class method selectors are external references stored in a special data structure in the LLVM IR module for an expression. I just had to extract them and ensure that the real class object locations were properly resolved. llvm-svn: 143520
-
- Nov 01, 2011
-
-
Johnny Chen authored
llvm-svn: 143476
-
Johnny Chen authored
'::my_uint_t', 'anon_uint = 0' from: '(my_uint_t) anon_uint = 0' to make the test suite clean with ToT. llvm-svn: 143474
-
Sean Callanan authored
method as __attribute__ ((used)) when adding it to a class. This functionality is useful when stopped in anonymous namespaces: expressions attached to classes in anonymous namespaces are typically elided by Clang's CodeGen because they have no namespaces are intended not to be externally visible. __attribute__ ((used)) forces CodeGen to emit the function. Right now, __attribute__ ((used)) causes the JIT not to emit the function, so we're not enabling it until we fix that. llvm-svn: 143469
-
Sean Callanan authored
the expression makes it to the JIT, and made some logging only appear in verbose mode. llvm-svn: 143467
-
Daniel Dunbar authored
llvm-svn: 143466
-
Jason Molenda authored
RegisterContextLLDBs it contains. Previously RegisterContextLLDB objects had a pointer to their "next" frame down the stack. e.g. stack starts at frame 0; frame 3 has a pointer to frame 2. This is used to retreive callee saved register values. When debugging an inferior that has blown out its own stack, however, this could result in lldb blowing out its own stack while recursing down to retrieve register values. RegisterContextLLDB no longer has a pointer to its next frame; it has a reference to the UnwindLLDB which contains it. When it needs to retrieve a reg value, it asks the UnwindLLDB for that reg value and UnwindLLDB iterates through the frames until it finds a location. llvm-svn: 143423
-
Jim Ingham authored
"object borked"... Also made the error when the checker fails reflect this fact rather than report a crash at 0x0. Also a little cleanup: - StopInfoMachException had a redundant copy of the description string. - ThreadPlanCallFunction had a redundant copy of the thread, and had a copy of the process that it didn't really need. llvm-svn: 143419
-
Greg Clayton authored
llvm-svn: 143408
-
Greg Clayton authored
settings. Also fixed an issue where we weren't creating anonymous namepaces correctly: <rdar://problem/10371295> llvm-svn: 143403
-
Jim Ingham authored
before all the modules, which will then crash when the next modules tries to take itself off it. llvm-svn: 143402
-
Daniel Dunbar authored
llvm-svn: 143398
-
Daniel Dunbar authored
llvm-svn: 143397
-
Johnny Chen authored
rdar://problem/10373783 llvm-svn: 143396
-
Johnny Chen authored
Radar to be filed soon. llvm-svn: 143395
-
Daniel Dunbar authored
tests. llvm-svn: 143394
-
Jim Ingham authored
llvm-svn: 143393
-
- Oct 31, 2011
-
-
Daniel Dunbar authored
llvm-svn: 143390
-
Daniel Dunbar authored
llvm-svn: 143389
-
Daniel Dunbar authored
llvm-svn: 143388
-
Daniel Dunbar authored
llvm-svn: 143387
-
Daniel Dunbar authored
llvm-svn: 143386
-
Daniel Dunbar authored
llvm-svn: 143385
-
Daniel Dunbar authored
llvm-svn: 143384
-
Daniel Dunbar authored
llvm-svn: 143383
-
Daniel Dunbar authored
build: Fix an improperly formed include path (works under Xcode's promiscuous include additions, but not Makefiles). llvm-svn: 143382
-
Daniel Dunbar authored
llvm-svn: 143381
-