use of com.jetbrains.cidr.execution.debugger.backend.LLValue in project intellij-plugins by JetBrains.
the class MotionObjectRenderer method doComputeChildren.
@Override
protected void doComputeChildren(@NotNull EvaluationContext context, @NotNull XCompositeNode container) throws ExecutionException, DebuggerCommandException {
final Collection<CidrValue> children = new ArrayList<>();
final LLValue names = getInstanceVariablesNames(context);
final int count = count(context, names);
for (int i = 0; i < count; i++) {
final String selName = EvaluationContext.cast("sel_registerName(\"objectAtIndex:\")", "id");
final String nameExpr = EvaluationContext.cast("objc_msgSend(" + getSelf(names, context) + ", " + selName + ", " + i + ")", "id");
final LLValueData name = context.evaluateData(nameExpr);
final String namePointer = "(char *)[[" + name.getPointer() + " description] UTF8String]";
final String ivarName = TextUtil.removeQuoting(context.evaluateData(namePointer).getPresentableValue());
final String ivarExpr = getChildEvaluationExpression(context, ivarName);
final LLValue ivar = context.evaluate(ivarExpr);
children.add(new MotionMemberValue(ivar, ivarName, myValue));
}
CidrValue.addAllTo(children, container);
}
use of com.jetbrains.cidr.execution.debugger.backend.LLValue in project intellij-plugins by JetBrains.
the class MotionEvaluatorHelper method convertAndEvaluate.
@Override
public Pair<LLValue, String> convertAndEvaluate(@NotNull CidrDebugProcess process, @NotNull DebuggerDriver driver, @NotNull XExpression expression, XSourcePosition sourcePosition, long threadId, int frameIndex) throws ExecutionException, DebuggerCommandException {
final String stringExpression = expression.getExpression();
final LLValue result = driver.evaluate(threadId, frameIndex, stringExpression);
return Pair.create(result, stringExpression);
}
use of com.jetbrains.cidr.execution.debugger.backend.LLValue in project intellij-plugins by JetBrains.
the class MotionObjectRenderer method doComputeValueAndEvaluator.
@NotNull
@Override
protected Pair<String, XFullValueEvaluator> doComputeValueAndEvaluator(@NotNull EvaluationContext context) throws ExecutionException, DebuggerCommandException {
LLValue value = context.evaluate("(char *)[[(id)rb_inspect(" + myValue.getVarData(context).getPointer() + ") description] UTF8String]");
LLValueData data = context.getData(value);
return doComputeValueAndEvaluator(context, value, data);
}
Aggregations