Home
last modified time | relevance | path

Searched refs:ast_context (Results 1 – 16 of 16) sorted by relevance

/external/v8/src/compiler/
Dast-graph-builder.cc237 : kind_(kind), owner_(own), outer_(own->ast_context()) { in AstContext()
811 ast_context()->ProduceValue(value); in VisitFunctionLiteral()
836 ast_context()->ReplaceValue(); in VisitConditional()
842 ast_context()->ProduceValue(value); in VisitVariableProxy()
848 ast_context()->ProduceValue(value); in VisitLiteral()
864 ast_context()->ProduceValue(literal); in VisitRegExpLiteral()
975 ast_context()->ProduceValue(environment()->Pop()); in VisitObjectLiteral()
1012 ast_context()->ProduceValue(environment()->Pop()); in VisitArrayLiteral()
1148 ast_context()->ProduceValue(value); in VisitAssignment()
1158 ast_context()->ProduceValue(jsgraph()->UndefinedConstant()); in VisitYield()
[all …]
Dast-graph-builder.h47 AstContext* ast_context() const { return ast_context_; } in ast_context() function
/external/lldb/source/Commands/
DCommandObjectArgs.cpp158 ClangASTContext &ast_context = thread_module_sp->GetClangASTContext(); in DoExecute() local
210 clang_type = ast_context.GetBuiltinTypeForEncodingAndBitSize(encoding, width); in DoExecute()
226 clang_type = ast_context.GetBasicType(eBasicTypeVoid).GetPointerType(); in DoExecute()
228 clang_type = ast_context.GetCStringType (false); in DoExecute()
/external/lldb/include/lldb/Symbol/
DTaggedASTType.h28 TaggedASTType (lldb::clang_type_t type, clang::ASTContext *ast_context) : in TaggedASTType() argument
29 ClangASTType(ast_context, type) in TaggedASTType()
DClangASTType.h62 ClangASTType (clang::ASTContext *ast_context, lldb::clang_type_t type) : in ClangASTType() argument
64 m_ast (ast_context) in ClangASTType()
68 ClangASTType (clang::ASTContext *ast_context, clang::QualType qual_type);
/external/v8/src/
Dhydrogen.cc3939 if (owner->ast_context()->IsTest()) { in FunctionState()
3944 TestContext* outer_test_context = TestContext::cast(owner->ast_context()); in FunctionState()
3954 call_context_ = owner->ast_context(); in FunctionState()
3988 outer_(owner->ast_context()), in AstContext()
5241 return ast_context()->ReturnInstruction(instr, expr->id()); in VisitFunctionLiteral()
5290 if (!ast_context()->IsTest()) { in VisitConditional()
5293 if (join != NULL && !ast_context()->IsEffect()) { in VisitConditional()
5294 return ast_context()->ReturnValue(Pop()); in VisitConditional()
5359 return ast_context()->ReturnInstruction(instr, expr->id()); in VisitVariableProxy()
5377 return ast_context()->ReturnInstruction(constant, expr->id()); in VisitVariableProxy()
[all …]
Dhydrogen.h2163 AstContext* ast_context() const { return ast_context_; } in ast_context() function
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleObjCRuntime.cpp96 ClangASTContext *ast_context = target->GetScratchClangASTContext(); in GetObjectDescription() local
97 ClangASTType opaque_type = ast_context->GetBasicType(eBasicTypeObjCID); in GetObjectDescription()
99 opaque_type = ast_context->GetBasicType(eBasicTypeVoid).GetPointerType(); in GetObjectDescription()
108 ClangASTContext *ast_context = target->GetScratchClangASTContext(); in GetObjectDescription() local
110 ClangASTType return_clang_type = ast_context->GetCStringType(true); in GetObjectDescription()
/external/lldb/include/lldb/Expression/
DClangASTSource.h75 void InstallASTContext (clang::ASTContext *ast_context) in InstallASTContext() argument
77 m_ast_context = ast_context; in InstallASTContext()
78 m_ast_importer->InstallMapCompleter(ast_context, *this); in InstallASTContext()
DClangFunction.h90 ClangASTContext *ast_context,
/external/lldb/source/Expression/
DClangExpressionParser.cpp352 std::unique_ptr<clang::ASTContext> ast_context(new ASTContext(m_compiler->getLangOpts(), in ClangExpressionParser() local
365 decl_map->InstallASTContext(ast_context.get()); in ClangExpressionParser()
366 ast_context->setExternalSource(ast_source); in ClangExpressionParser()
369 m_compiler->setASTContext(ast_context.release()); in ClangExpressionParser()
DClangFunction.cpp77 ClangASTContext *ast_context, in ClangFunction() argument
83 m_clang_ast_context (ast_context), in ClangFunction()
DClangASTSource.cpp832 clang::ASTContext *ast_context, in FindObjCMethodDeclsWithOrigin() argument
886 …Decl *copied_decl = ast_importer->CopyDecl(ast_context, &result_method->getASTContext(), result_me… in FindObjCMethodDeclsWithOrigin()
1195 clang::ASTContext &ast_context, in FindObjCPropertyAndIvarDeclsWithOrigin() argument
1214 …ser<ObjCPropertyDecl> parser_property_decl(origin_property_decl.Import(ast_importer, ast_context)); in FindObjCPropertyAndIvarDeclsWithOrigin()
1232 … DeclFromParser<ObjCIvarDecl> parser_ivar_decl(origin_ivar_decl.Import(ast_importer, ast_context)); in FindObjCPropertyAndIvarDeclsWithOrigin()
DClangExpressionDeclMap.cpp1360 ASTContext *ast_context, in MaybePromoteToBlockPointerType() argument
1389 QualType generic_function_type = ast_context->getFunctionNoProtoType(ast_context->UnknownAnyTy); in MaybePromoteToBlockPointerType()
1390 QualType block_pointer_type = ast_context->getBlockPointerType(generic_function_type); in MaybePromoteToBlockPointerType()
/external/lldb/source/Breakpoint/
DWatchpoint.cpp56 ClangASTContext *ast_context = target.GetScratchClangASTContext(); in Watchpoint() local
57 m_type = ast_context->GetBuiltinTypeForEncodingAndBitSize(eEncodingUint, 8 * size); in Watchpoint()
/external/lldb/source/Plugins/ABI/MacOSX-arm/
DABIMacOSX_arm.cpp430 clang::ASTContext *ast_context = clang_type.GetASTContext(); in GetReturnValueObjectImpl() local
431 if (!ast_context) in GetReturnValueObjectImpl()