reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/clang/lib/AST/Interp/Block.h
   31 class Function;
tools/clang/lib/AST/Interp/ByteCodeExprGen.h
   30 class Function;
tools/clang/lib/AST/Interp/ByteCodeStmtGen.h
   31 class Function;
tools/clang/lib/AST/Interp/Context.h
   32 class Function;
tools/clang/lib/AST/Interp/EvalEmitter.h
   29 class Function;
tools/clang/lib/AST/Interp/InterpFrame.h
   25 class Function;
tools/clang/lib/AST/Interp/InterpState.h
   28 class Function;
tools/clang/lib/AST/Interp/Pointer.h
   32 class Function;
tools/clang/lib/AST/Interp/Source.h
   22 class Function;

References

tools/clang/lib/AST/Interp/ByteCodeEmitter.cpp
   21 Expected<Function *> ByteCodeEmitter::compileFunc(const FunctionDecl *F) {
   29   llvm::DenseMap<unsigned, Function::ParamDescriptor> ParamDescriptors;
   57   Function *Func = P.createFunction(F, ParamOffset, std::move(ParamTypes),
tools/clang/lib/AST/Interp/ByteCodeEmitter.h
   40   llvm::Expected<Function *> compileFunc(const FunctionDecl *F);
tools/clang/lib/AST/Interp/Context.cpp
   32   Function *Func = P->getFunction(FD);
  119 InterpResult Context::Run(State &Parent, Function *Func, APValue &Result) {
tools/clang/lib/AST/Interp/Context.h
   81   InterpResult Run(State &Parent, Function *Func, APValue &Result);
tools/clang/lib/AST/Interp/EvalEmitter.h
   74   SourceInfo getSource(Function *F, CodePtr PC) const override {
  116   bool ExecuteCall(Function *F, Pointer &&This, const SourceInfo &Info);
tools/clang/lib/AST/Interp/Function.cpp
   28 Function::ParamDescriptor Function::getParamDescriptor(unsigned Offset) const {
tools/clang/lib/AST/Interp/Interp.cpp
  333 bool CheckCallable(InterpState &S, CodePtr OpPC, Function *F) {
tools/clang/lib/AST/Interp/Interp.h
   86 bool CheckCallable(InterpState &S, CodePtr OpPC, Function *F);
tools/clang/lib/AST/Interp/InterpFrame.cpp
   20 InterpFrame::InterpFrame(InterpState &S, Function *Func, InterpFrame *Caller,
tools/clang/lib/AST/Interp/InterpFrame.h
   35   InterpFrame(InterpState &S, Function *Func, InterpFrame *Caller,
   60   Function *getFunction() const { return Func; }
  133   Function *Func;
tools/clang/lib/AST/Interp/InterpState.h
   84   SourceInfo getSource(Function *F, CodePtr PC) const override {
tools/clang/lib/AST/Interp/Program.cpp
  188 Function *Program::getFunction(const FunctionDecl *F) {
  194 llvm::Expected<Function *> Program::getOrCreateFunction(const FunctionDecl *F) {
  195   if (Function *Func = getFunction(F)) {
tools/clang/lib/AST/Interp/Program.h
   76   Function *createFunction(const FunctionDecl *Def, Ts &&... Args) {
   77     auto *Func = new Function(*this, Def, std::forward<Ts>(Args)...);
   77     auto *Func = new Function(*this, Def, std::forward<Ts>(Args)...);
   83   Function *createFunction(Ts &&... Args) {
   84     auto *Func = new Function(*this, std::forward<Ts>(Args)...);
   84     auto *Func = new Function(*this, std::forward<Ts>(Args)...);
   90   Function *getFunction(const FunctionDecl *F);
   95   llvm::Expected<Function *> getOrCreateFunction(const FunctionDecl *F);
  139   llvm::DenseMap<const FunctionDecl *, std::unique_ptr<Function>> Funcs;
  141   std::vector<std::unique_ptr<Function>> AnonFuncs;
tools/clang/lib/AST/Interp/Source.h
  107   virtual SourceInfo getSource(Function *F, CodePtr PC) const = 0;
  110   const Expr *getExpr(Function *F, CodePtr PC) const;
  112   SourceLocation getLocation(Function *F, CodePtr PC) const;
usr/include/c++/7.4.0/bits/unique_ptr.h
   68         default_delete(const default_delete<_Up>&) noexcept { }
   72       operator()(_Tp* __ptr) const
   74 	static_assert(!is_void<_Tp>::value,
   76 	static_assert(sizeof(_Tp)>0,
  122 	  using type = _Up*;
  137       using pointer = typename _Ptr<_Tp, _Dp>::type;
  161 	typename __uniq_ptr_impl<_Tp, _Up>::_DeleterConstraint::type;
  163       __uniq_ptr_impl<_Tp, _Dp> _M_t;
  166       using pointer	  = typename __uniq_ptr_impl<_Tp, _Dp>::pointer;
  167       using element_type  = _Tp;
  252 	unique_ptr(unique_ptr<_Up, _Ep>&& __u) noexcept
  297           __safe_conversion_up<_Up, _Ep>,
  301 	operator=(unique_ptr<_Up, _Ep>&& __u) noexcept
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1645     { typedef _Tp&   type; };
 1650     : public __add_lvalue_reference_helper<_Tp>