本文整理汇总了C++中ciSignature类的典型用法代码示例。如果您正苦于以下问题:C++ ciSignature类的具体用法?C++ ciSignature怎么用?C++ ciSignature使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ciSignature类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: type
ciType* type() {
if (at_return_type()) {
return _sig->return_type();
} else {
return _sig->type_at(_pos);
}
}
示例2: invoke_arg_size
// Report the number of elements on stack when invoking this method.
// This is different than the regular arg_size because invokdynamic
// has an implicit receiver.
int invoke_arg_size(Bytecodes::Code code) const {
int arg_size = _signature->size();
// Add a receiver argument, maybe:
if (code != Bytecodes::_invokestatic &&
code != Bytecodes::_invokedynamic) {
arg_size++;
}
return arg_size;
}
示例3:
// Can only be used on loaded ciMethods
int arg_size() const {
check_is_loaded();
return _signature->size() + (_flags.is_static() ? 0 : 1);
}
示例6: at_return_type
bool at_return_type() { return _pos == _sig->count(); }