HomeSort by relevance Sort by last modified time
    Searched refs:AstNode (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/v8/test/cctest/
test-ast.cc 39 List<AstNode*>* list = new List<AstNode*>(0);
45 AstNode* node = factory.NewEmptyStatement();
  /external/v8/test/cctest/
test-ast.cc 39 List<AstNode*>* list = new List<AstNode*>(0);
44 AstNode* node = factory.NewEmptyStatement();
  /external/chromium_org/v8/src/
prettyprinter.h 46 const char* Print(AstNode* node);
53 static void PrintOut(AstNode* node);
98 void PrintIndentedVisit(const char* s, AstNode* node);
ast.h 170 virtual AstNode::NodeType node_type() const { return AstNode::k##type; } \
199 class AstNode: public ZoneObject {
212 AstNode() { }
214 virtual ~AstNode() { }
221 bool Is##type() { return node_type() == AstNode::k##type; } \
257 class Statement: public AstNode {
313 class Expression: public AstNode {
489 class Declaration: public AstNode {
618 class Module: public AstNode {
    [all...]
prettyprinter.cc 459 const char* PrettyPrinter::Print(AstNode* node) {
483 void PrettyPrinter::PrintOut(AstNode* node) {
711 void AstPrinter::PrintIndentedVisit(const char* s, AstNode* node) {
ast.cc     [all...]
parser.cc 429 Target(Target** variable, AstNode* node)
439 AstNode* node() { return node_; }
443 AstNode* node_;
    [all...]
  /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...]
  /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...]
  /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...]
  /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...]

Completed in 469 milliseconds

1 2