Home | History | Annotate | Download | only in Interp

Lines Matching defs:Function

1 //===--- Function.h - Bytecode function for the VM --------------*- C++ -*-===//
9 #include "Function.h"
18 Function::Function(Program &P, const FunctionDecl *F, unsigned ArgSize,
24 CodePtr Function::getCodeBegin() const { return Code.data(); }
26 CodePtr Function::getCodeEnd() const { return Code.data() + Code.size(); }
28 Function::ParamDescriptor Function::getParamDescriptor(unsigned Offset) const {
34 SourceInfo Function::getSource(CodePtr PC) const {
44 bool Function::isVirtual() const {