/external/v8/test/cctest/ |
test-ast.cc | 39 List<AstNode*>* list = new List<AstNode*>(0); 44 AstNode* node = factory.NewEmptyStatement();
|
/external/v8/src/ |
prettyprinter.h | 46 const char* Print(AstNode* node); 53 static void PrintOut(AstNode* node); 96 void PrintIndentedVisit(const char* s, AstNode* node);
|
ast.h | 161 virtual AstNode::Type node_type() const { return AstNode::k##type; } 188 class AstNode: public ZoneObject { 208 AstNode() { } 210 virtual ~AstNode() { } 217 bool Is##type() { return node_type() == AstNode::k##type; } \ 250 class Statement: public AstNode { 296 class Expression: public AstNode { 446 class Declaration: public AstNode { 592 class Module: public AstNode { [all...] |
compiler.cc | 63 osr_ast_id_(AstNode::kNoNumber) { 79 osr_ast_id_(AstNode::kNoNumber) { 96 osr_ast_id_(AstNode::kNoNumber) { 236 (info->osr_ast_id() != AstNode::kNoNumber && 690 optimized.SetOptimizing(AstNode::kNoNumber);
|
prettyprinter.cc | 433 const char* PrettyPrinter::Print(AstNode* node) { 457 void PrettyPrinter::PrintOut(AstNode* node) { 620 IndentedScope(AstPrinter* printer, const char* txt, AstNode* node = NULL) 694 void AstPrinter::PrintIndentedVisit(const char* s, AstNode* node) {
|
ast.cc | 991 compare_id_(AstNode::GetNextId(isolate)), 992 entry_id_(AstNode::GetNextId(isolate)) { [all...] |
hydrogen.cc | 139 ASSERT(ast_id == AstNode::kNoNumber || 173 AddSimulate(AstNode::kNoNumber); 187 AddSimulate(AstNode::kNoNumber); 677 start_environment_->set_ast_id(AstNode::kFunctionEntryId); [all...] |
parser.cc | 425 Target(Target** variable, AstNode* node) 435 AstNode* node() { return node_; } 439 AstNode* node_; 499 isolate->set_ast_node_id(AstNode::kDeclarationsId + 1); [all...] |
deoptimizer.cc | [all...] |
hydrogen-instructions.h | [all...] |
runtime.cc | [all...] |
objects.cc | [all...] |
/external/v8/src/arm/ |
lithium-arm.cc | 738 ASSERT(pending_deoptimization_ast_id_ == AstNode::kNoNumber); 747 pending_deoptimization_ast_id_ = AstNode::kNoNumber; 1003 ASSERT(ast_id != AstNode::kNoNumber || [all...] |
lithium-arm.h | [all...] |
full-codegen-arm.cc | 273 PrepareForBailoutForId(AstNode::kFunctionEntryId, NO_REGISTERS); 288 PrepareForBailoutForId(AstNode::kDeclarationsId, NO_REGISTERS); [all...] |
/external/v8/src/mips/ |
lithium-mips.cc | 738 ASSERT(pending_deoptimization_ast_id_ == AstNode::kNoNumber); 747 pending_deoptimization_ast_id_ = AstNode::kNoNumber; 1003 ASSERT(ast_id != AstNode::kNoNumber || [all...] |
lithium-mips.h | [all...] |
full-codegen-mips.cc | 280 PrepareForBailoutForId(AstNode::kFunctionEntryId, NO_REGISTERS); 295 PrepareForBailoutForId(AstNode::kDeclarationsId, NO_REGISTERS); [all...] |
/external/v8/src/x64/ |
lithium-x64.cc | 733 ASSERT(pending_deoptimization_ast_id_ == AstNode::kNoNumber); 742 pending_deoptimization_ast_id_ = AstNode::kNoNumber; 998 ASSERT(ast_id != AstNode::kNoNumber || [all...] |
lithium-x64.h | [all...] |
full-codegen-x64.cc | 280 PrepareForBailoutForId(AstNode::kFunctionEntryId, NO_REGISTERS); 295 PrepareForBailoutForId(AstNode::kDeclarationsId, NO_REGISTERS); [all...] |
/external/v8/src/ia32/ |
lithium-ia32.cc | 735 ASSERT(pending_deoptimization_ast_id_ == AstNode::kNoNumber); 744 pending_deoptimization_ast_id_ = AstNode::kNoNumber; 1004 ASSERT(ast_id != AstNode::kNoNumber || [all...] |
lithium-ia32.h | [all...] |
full-codegen-ia32.cc | 267 PrepareForBailoutForId(AstNode::kFunctionEntryId, NO_REGISTERS); 282 PrepareForBailoutForId(AstNode::kDeclarationsId, NO_REGISTERS); [all...] |