[lldb-dev] Expressions on baremetal target

Colin Riley colin at codeplay.com
Tue Mar 31 04:41:32 PDT 2015


Hi Bhushan

We ran into this problem whilst doing the Hexagon DSP support in LLDB.

This review was up (http://reviews.llvm.org/D4672) but is now stale 
without reviewers. Basically we added the ability to the IR interpreter 
to call functions on the target using a threadplan which manipulated the 
stack and registers to call functions and capture any return values, 
which works well on bare metal without ability to jit.

Maybe the patches can be of help to you. I doubt they would apply 
cleanly now given the length of time since it was uploaded. It's a 
valuable feature, but priorities on the list were elsewhere :)

Colin


On 31/03/2015 12:30, Bhushan Attarde wrote:
>
> Hi,
>
> We are debugging a baremetal application using LLDB which is connected 
> to a remote target (supporting GDB remote protocol).
>
> We are able to execute expressions involving global and frame 
> variables such as:
>
> (lldb) expr var+4
>
> However, LLDB is unable to execute expressions involving function calls.
>
> (lldb) expr (int) bar(1,2)
>
> error: Can't run the expression locally: Interpreter doesn't handle 
> one of the expression's opcodes
>
> Function bar is defined as int bar(int, int).
>
> The expression execution_policy is set to eExecutionPolicyNever as 
> CanJIT() returns false for baremetal applications.
>
> This is because JIT is disabled for static dynamic loader targets.
>
> TheIRInterpreter::CanInterpret returns false as it fails to interpret 
> call instruction (call to 'bar' is not an intrinsic).
>
> Could you please help us on this?
>
> -Regards
>
> Bhushan
>
>
>
> _______________________________________________
> lldb-dev mailing list
> lldb-dev at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev

-- 
- Colin Riley
Games Technology Director

Codeplay Software Ltd
45 York Place, Edinburgh, EH1 3HP
Tel: 0131 466 0503
Fax: 0131 557 6600
Website: http://www.codeplay.com
Twitter: https://twitter.com/codeplaysoft

This email and any attachments may contain confidential and /or privileged information and is for use by the addressee only. If you are not the intended recipient, please notify Codeplay Software Ltd immediately and delete the message from your computer. You may not copy or forward it,or use or disclose its contents to any other person. Any views or other information in this message which do not relate to our business are not authorized by Codeplay software Ltd, nor does this message form part of any contract unless so stated.
As internet communications are capable of data corruption Codeplay Software Ltd does not accept any responsibility for any changes made to this message after it was sent. Please note that Codeplay Software Ltd does not accept any liability or responsibility for viruses and it is your responsibility to scan any attachments.
Company registered in England and Wales, number: 04567874
Registered office: 81 Linkfield Street, Redhill RH1 6BY

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/lldb-dev/attachments/20150331/2f04ae7b/attachment.html>


More information about the lldb-dev mailing list