Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: src/compiler/interpreter-assembler.cc

Issue 1512543002: [Interpreter] Save bytecode offset in interpreter stack frames. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Minor tweak Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/compiler/interpreter-assembler.h" 5 #include "src/compiler/interpreter-assembler.h"
6 6
7 #include <ostream> 7 #include <ostream>
8 8
9 #include "src/code-factory.h" 9 #include "src/code-factory.h"
10 #include "src/compiler/graph.h" 10 #include "src/compiler/graph.h"
(...skipping 16 matching lines...) Expand all
27 27
28 InterpreterAssembler::InterpreterAssembler(Isolate* isolate, Zone* zone, 28 InterpreterAssembler::InterpreterAssembler(Isolate* isolate, Zone* zone,
29 interpreter::Bytecode bytecode) 29 interpreter::Bytecode bytecode)
30 : bytecode_(bytecode), 30 : bytecode_(bytecode),
31 raw_assembler_(new RawMachineAssembler( 31 raw_assembler_(new RawMachineAssembler(
32 isolate, new (zone) Graph(zone), 32 isolate, new (zone) Graph(zone),
33 Linkage::GetInterpreterDispatchDescriptor(zone), kMachPtr, 33 Linkage::GetInterpreterDispatchDescriptor(zone), kMachPtr,
34 InstructionSelector::SupportedMachineOperatorFlags())), 34 InstructionSelector::SupportedMachineOperatorFlags())),
35 accumulator_( 35 accumulator_(
36 raw_assembler_->Parameter(Linkage::kInterpreterAccumulatorParameter)), 36 raw_assembler_->Parameter(Linkage::kInterpreterAccumulatorParameter)),
37 bytecode_offset_(raw_assembler_->Parameter(
38 Linkage::kInterpreterBytecodeOffsetParameter)),
37 context_( 39 context_(
38 raw_assembler_->Parameter(Linkage::kInterpreterContextParameter)), 40 raw_assembler_->Parameter(Linkage::kInterpreterContextParameter)),
39 code_generated_(false) {} 41 code_generated_(false) {}
40 42
41 43
42 InterpreterAssembler::~InterpreterAssembler() {} 44 InterpreterAssembler::~InterpreterAssembler() {}
43 45
44 46
45 Handle<Code> InterpreterAssembler::GenerateCode() { 47 Handle<Code> InterpreterAssembler::GenerateCode() {
46 DCHECK(!code_generated_); 48 DCHECK(!code_generated_);
(...skipping 25 matching lines...) Expand all
72 74
73 void InterpreterAssembler::SetAccumulator(Node* value) { accumulator_ = value; } 75 void InterpreterAssembler::SetAccumulator(Node* value) { accumulator_ = value; }
74 76
75 77
76 Node* InterpreterAssembler::GetContext() { return context_; } 78 Node* InterpreterAssembler::GetContext() { return context_; }
77 79
78 80
79 void InterpreterAssembler::SetContext(Node* value) { context_ = value; } 81 void InterpreterAssembler::SetContext(Node* value) { context_ = value; }
80 82
81 83
84 Node* InterpreterAssembler::BytecodeOffset() { return bytecode_offset_; }
85
86
82 Node* InterpreterAssembler::RegisterFileRawPointer() { 87 Node* InterpreterAssembler::RegisterFileRawPointer() {
83 return raw_assembler_->Parameter(Linkage::kInterpreterRegisterFileParameter); 88 return raw_assembler_->Parameter(Linkage::kInterpreterRegisterFileParameter);
84 } 89 }
85 90
86 91
87 Node* InterpreterAssembler::BytecodeArrayTaggedPointer() { 92 Node* InterpreterAssembler::BytecodeArrayTaggedPointer() {
88 return raw_assembler_->Parameter(Linkage::kInterpreterBytecodeArrayParameter); 93 return raw_assembler_->Parameter(Linkage::kInterpreterBytecodeArrayParameter);
89 } 94 }
90 95
91 96
92 Node* InterpreterAssembler::BytecodeOffset() {
93 return raw_assembler_->Parameter(
94 Linkage::kInterpreterBytecodeOffsetParameter);
95 }
96
97
98 Node* InterpreterAssembler::DispatchTableRawPointer() { 97 Node* InterpreterAssembler::DispatchTableRawPointer() {
99 return raw_assembler_->Parameter(Linkage::kInterpreterDispatchTableParameter); 98 return raw_assembler_->Parameter(Linkage::kInterpreterDispatchTableParameter);
100 } 99 }
101 100
102 101
102 Node* InterpreterAssembler::RegisterLocation(Node* reg_index) {
103 return IntPtrAdd(RegisterFileRawPointer(), RegisterFrameOffset(reg_index));
104 }
105
106
107 Node* InterpreterAssembler::LoadRegister(int offset) {
108 return raw_assembler_->Load(kMachAnyTagged, RegisterFileRawPointer(),
109 Int32Constant(offset));
110 }
111
112
113 Node* InterpreterAssembler::LoadRegister(interpreter::Register reg) {
114 return LoadRegister(reg.ToOperand() << kPointerSizeLog2);
115 }
116
117
103 Node* InterpreterAssembler::RegisterFrameOffset(Node* index) { 118 Node* InterpreterAssembler::RegisterFrameOffset(Node* index) {
104 return WordShl(index, kPointerSizeLog2); 119 return WordShl(index, kPointerSizeLog2);
105 } 120 }
106 121
107 122
108 Node* InterpreterAssembler::RegisterLocation(Node* reg_index) {
109 return IntPtrAdd(RegisterFileRawPointer(), RegisterFrameOffset(reg_index));
110 }
111
112
113 Node* InterpreterAssembler::LoadRegister(interpreter::Register reg) {
114 return raw_assembler_->Load(
115 kMachAnyTagged, RegisterFileRawPointer(),
116 RegisterFrameOffset(Int32Constant(reg.ToOperand())));
117 }
118
119
120 Node* InterpreterAssembler::LoadRegister(Node* reg_index) { 123 Node* InterpreterAssembler::LoadRegister(Node* reg_index) {
121 return raw_assembler_->Load(kMachAnyTagged, RegisterFileRawPointer(), 124 return raw_assembler_->Load(kMachAnyTagged, RegisterFileRawPointer(),
122 RegisterFrameOffset(reg_index)); 125 RegisterFrameOffset(reg_index));
123 } 126 }
124 127
125 128
129 Node* InterpreterAssembler::StoreRegister(Node* value, int offset) {
130 return raw_assembler_->Store(kMachAnyTagged, RegisterFileRawPointer(),
131 Int32Constant(offset), value, kNoWriteBarrier);
132 }
133
134
135 Node* InterpreterAssembler::StoreRegister(Node* value,
136 interpreter::Register reg) {
137 return StoreRegister(value, reg.ToOperand() << kPointerSizeLog2);
138 }
139
140
126 Node* InterpreterAssembler::StoreRegister(Node* value, Node* reg_index) { 141 Node* InterpreterAssembler::StoreRegister(Node* value, Node* reg_index) {
127 return raw_assembler_->Store(kMachAnyTagged, RegisterFileRawPointer(), 142 return raw_assembler_->Store(kMachAnyTagged, RegisterFileRawPointer(),
128 RegisterFrameOffset(reg_index), value, 143 RegisterFrameOffset(reg_index), value,
129 kNoWriteBarrier); 144 kNoWriteBarrier);
130 } 145 }
131 146
132 147
133 Node* InterpreterAssembler::BytecodeOperand(int operand_index) { 148 Node* InterpreterAssembler::BytecodeOperand(int operand_index) {
134 DCHECK_LT(operand_index, interpreter::Bytecodes::NumberOfOperands(bytecode_)); 149 DCHECK_LT(operand_index, interpreter::Bytecodes::NumberOfOperands(bytecode_));
135 DCHECK_EQ(interpreter::OperandSize::kByte, 150 DCHECK_EQ(interpreter::OperandSize::kByte,
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 386
372 Node* code_target = HeapConstant(callable.code()); 387 Node* code_target = HeapConstant(callable.code());
373 388
374 Node** args = zone()->NewArray<Node*>(5); 389 Node** args = zone()->NewArray<Node*>(5);
375 args[0] = arg_count; 390 args[0] = arg_count;
376 args[1] = new_target; 391 args[1] = new_target;
377 args[2] = constructor; 392 args[2] = constructor;
378 args[3] = first_arg; 393 args[3] = first_arg;
379 args[4] = GetContext(); 394 args[4] = GetContext();
380 395
381 return CallN(descriptor, code_target, args); 396 return CallN(descriptor, code_target, args,
397 SaveAccumulatorMode::kClobberAccumulator);
398 }
399
400
401 void InterpreterAssembler::CallPrologue(
402 SaveAccumulatorMode save_accumulator_mode) {
403 if (save_accumulator_mode == SaveAccumulatorMode::kSaveAccumulator) {
404 StoreRegister(
405 accumulator_,
406 InterpreterFrameConstants::kSavedAccumulatorFromRegisterPointer);
407 } else {
408 DCHECK(save_accumulator_mode == SaveAccumulatorMode::kClobberAccumulator);
409 }
410
411 StoreRegister(SmiTag(bytecode_offset_),
412 InterpreterFrameConstants::kBytecodeOffsetFromRegisterPointer);
413 }
414
415
416 void InterpreterAssembler::CallEpilogue(
417 SaveAccumulatorMode save_accumulator_mode) {
418 // Restore the bytecode offset from the stack frame.
419 bytecode_offset_ = SmiUntag(LoadRegister(
420 InterpreterFrameConstants::kBytecodeOffsetFromRegisterPointer));
421
422 if (save_accumulator_mode == SaveAccumulatorMode::kSaveAccumulator) {
423 // Restore accumulator from stack frame.
424 accumulator_ = LoadRegister(
425 InterpreterFrameConstants::kSavedAccumulatorFromRegisterPointer);
426 } else {
427 // Clobber the accumulator.
428 DCHECK(save_accumulator_mode == SaveAccumulatorMode::kClobberAccumulator);
429 accumulator_ = nullptr;
430 }
382 } 431 }
383 432
384 433
385 Node* InterpreterAssembler::CallN(CallDescriptor* descriptor, Node* code_target, 434 Node* InterpreterAssembler::CallN(CallDescriptor* descriptor, Node* code_target,
386 Node** args) { 435 Node** args,
436 SaveAccumulatorMode save_accumulator_mode) {
437 CallPrologue(save_accumulator_mode);
438
387 Node* stack_pointer_before_call = nullptr; 439 Node* stack_pointer_before_call = nullptr;
388 if (FLAG_debug_code) { 440 if (FLAG_debug_code) {
389 stack_pointer_before_call = raw_assembler_->LoadStackPointer(); 441 stack_pointer_before_call = raw_assembler_->LoadStackPointer();
390 } 442 }
391 Node* return_val = raw_assembler_->CallN(descriptor, code_target, args); 443 Node* return_val = raw_assembler_->CallN(descriptor, code_target, args);
392 if (FLAG_debug_code) { 444 if (FLAG_debug_code) {
393 Node* stack_pointer_after_call = raw_assembler_->LoadStackPointer(); 445 Node* stack_pointer_after_call = raw_assembler_->LoadStackPointer();
394 AbortIfWordNotEqual(stack_pointer_before_call, stack_pointer_after_call, 446 AbortIfWordNotEqual(stack_pointer_before_call, stack_pointer_after_call,
395 kUnexpectedStackPointer); 447 kUnexpectedStackPointer);
396 } 448 }
449
450 CallEpilogue(save_accumulator_mode);
397 return return_val; 451 return return_val;
398 } 452 }
399 453
400 454
401 Node* InterpreterAssembler::CallJS(Node* function, Node* first_arg, 455 Node* InterpreterAssembler::CallJS(Node* function, Node* first_arg,
402 Node* arg_count) { 456 Node* arg_count) {
403 Callable callable = CodeFactory::InterpreterPushArgsAndCall(isolate()); 457 Callable callable = CodeFactory::InterpreterPushArgsAndCall(isolate());
404 CallDescriptor* descriptor = Linkage::GetStubCallDescriptor( 458 CallDescriptor* descriptor = Linkage::GetStubCallDescriptor(
405 isolate(), zone(), callable.descriptor(), 0, CallDescriptor::kNoFlags); 459 isolate(), zone(), callable.descriptor(), 0, CallDescriptor::kNoFlags);
406 460
407 Node* code_target = HeapConstant(callable.code()); 461 Node* code_target = HeapConstant(callable.code());
408 462
409 Node** args = zone()->NewArray<Node*>(4); 463 Node** args = zone()->NewArray<Node*>(4);
410 args[0] = arg_count; 464 args[0] = arg_count;
411 args[1] = first_arg; 465 args[1] = first_arg;
412 args[2] = function; 466 args[2] = function;
413 args[3] = GetContext(); 467 args[3] = GetContext();
414 468
415 return CallN(descriptor, code_target, args); 469 return CallN(descriptor, code_target, args,
470 SaveAccumulatorMode::kClobberAccumulator);
416 } 471 }
417 472
418 473
419 Node* InterpreterAssembler::CallIC(CallInterfaceDescriptor descriptor, 474 Node* InterpreterAssembler::CallIC(CallInterfaceDescriptor descriptor,
420 Node* target, Node** args) { 475 Node* target, Node** args,
476 SaveAccumulatorMode save_accumulator_mode) {
421 CallDescriptor* call_descriptor = Linkage::GetStubCallDescriptor( 477 CallDescriptor* call_descriptor = Linkage::GetStubCallDescriptor(
422 isolate(), zone(), descriptor, 0, CallDescriptor::kNoFlags); 478 isolate(), zone(), descriptor, 0, CallDescriptor::kNoFlags);
423 return CallN(call_descriptor, target, args); 479 return CallN(call_descriptor, target, args, save_accumulator_mode);
424 } 480 }
425 481
426 482
427 Node* InterpreterAssembler::CallIC(CallInterfaceDescriptor descriptor, 483 Node* InterpreterAssembler::CallIC(CallInterfaceDescriptor descriptor,
428 Node* target, Node* arg1, Node* arg2, 484 Node* target, Node* arg1, Node* arg2,
429 Node* arg3) { 485 Node* arg3,
486 SaveAccumulatorMode save_accumulator_mode) {
430 Node** args = zone()->NewArray<Node*>(4); 487 Node** args = zone()->NewArray<Node*>(4);
431 args[0] = arg1; 488 args[0] = arg1;
432 args[1] = arg2; 489 args[1] = arg2;
433 args[2] = arg3; 490 args[2] = arg3;
434 args[3] = GetContext(); 491 args[3] = GetContext();
435 return CallIC(descriptor, target, args); 492 return CallIC(descriptor, target, args, save_accumulator_mode);
436 } 493 }
437 494
438 495
439 Node* InterpreterAssembler::CallIC(CallInterfaceDescriptor descriptor, 496 Node* InterpreterAssembler::CallIC(CallInterfaceDescriptor descriptor,
440 Node* target, Node* arg1, Node* arg2, 497 Node* target, Node* arg1, Node* arg2,
441 Node* arg3, Node* arg4) { 498 Node* arg3, Node* arg4,
499 SaveAccumulatorMode save_accumulator_mode) {
442 Node** args = zone()->NewArray<Node*>(5); 500 Node** args = zone()->NewArray<Node*>(5);
443 args[0] = arg1; 501 args[0] = arg1;
444 args[1] = arg2; 502 args[1] = arg2;
445 args[2] = arg3; 503 args[2] = arg3;
446 args[3] = arg4; 504 args[3] = arg4;
447 args[4] = GetContext(); 505 args[4] = GetContext();
448 return CallIC(descriptor, target, args); 506 return CallIC(descriptor, target, args, save_accumulator_mode);
449 } 507 }
450 508
451 509
452 Node* InterpreterAssembler::CallIC(CallInterfaceDescriptor descriptor, 510 Node* InterpreterAssembler::CallIC(CallInterfaceDescriptor descriptor,
453 Node* target, Node* arg1, Node* arg2, 511 Node* target, Node* arg1, Node* arg2,
454 Node* arg3, Node* arg4, Node* arg5) { 512 Node* arg3, Node* arg4, Node* arg5,
513 SaveAccumulatorMode save_accumulator_mode) {
455 Node** args = zone()->NewArray<Node*>(6); 514 Node** args = zone()->NewArray<Node*>(6);
456 args[0] = arg1; 515 args[0] = arg1;
457 args[1] = arg2; 516 args[1] = arg2;
458 args[2] = arg3; 517 args[2] = arg3;
459 args[3] = arg4; 518 args[3] = arg4;
460 args[4] = arg5; 519 args[4] = arg5;
461 args[5] = GetContext(); 520 args[5] = GetContext();
462 return CallIC(descriptor, target, args); 521 return CallIC(descriptor, target, args, save_accumulator_mode);
463 } 522 }
464 523
465 524
466 Node* InterpreterAssembler::CallRuntime(Node* function_id, Node* first_arg, 525 Node* InterpreterAssembler::CallRuntime(
467 Node* arg_count) { 526 Node* function_id, Node* first_arg, Node* arg_count,
527 SaveAccumulatorMode save_accumulator_mode) {
468 Callable callable = CodeFactory::InterpreterCEntry(isolate()); 528 Callable callable = CodeFactory::InterpreterCEntry(isolate());
469 CallDescriptor* descriptor = Linkage::GetStubCallDescriptor( 529 CallDescriptor* descriptor = Linkage::GetStubCallDescriptor(
470 isolate(), zone(), callable.descriptor(), 0, CallDescriptor::kNoFlags); 530 isolate(), zone(), callable.descriptor(), 0, CallDescriptor::kNoFlags);
471 531
472 Node* code_target = HeapConstant(callable.code()); 532 Node* code_target = HeapConstant(callable.code());
473 533
474 // Get the function entry from the function id. 534 // Get the function entry from the function id.
475 Node* function_table = raw_assembler_->ExternalConstant( 535 Node* function_table = raw_assembler_->ExternalConstant(
476 ExternalReference::runtime_function_table_address(isolate())); 536 ExternalReference::runtime_function_table_address(isolate()));
477 Node* function_offset = raw_assembler_->Int32Mul( 537 Node* function_offset = raw_assembler_->Int32Mul(
478 function_id, Int32Constant(sizeof(Runtime::Function))); 538 function_id, Int32Constant(sizeof(Runtime::Function)));
479 Node* function = IntPtrAdd(function_table, function_offset); 539 Node* function = IntPtrAdd(function_table, function_offset);
480 Node* function_entry = raw_assembler_->Load( 540 Node* function_entry = raw_assembler_->Load(
481 kMachPtr, function, Int32Constant(offsetof(Runtime::Function, entry))); 541 kMachPtr, function, Int32Constant(offsetof(Runtime::Function, entry)));
482 542
483 Node** args = zone()->NewArray<Node*>(4); 543 Node** args = zone()->NewArray<Node*>(4);
484 args[0] = arg_count; 544 args[0] = arg_count;
485 args[1] = first_arg; 545 args[1] = first_arg;
486 args[2] = function_entry; 546 args[2] = function_entry;
487 args[3] = GetContext(); 547 args[3] = GetContext();
488 548
489 return CallN(descriptor, code_target, args); 549 return CallN(descriptor, code_target, args, save_accumulator_mode);
490 } 550 }
491 551
492 552
493 Node* InterpreterAssembler::CallRuntime(Runtime::FunctionId function_id, 553 Node* InterpreterAssembler::CallRuntime(
494 Node* arg1) { 554 Runtime::FunctionId function_id, Node* arg1,
495 return raw_assembler_->CallRuntime1(function_id, arg1, GetContext()); 555 SaveAccumulatorMode save_accumulator_mode) {
556 CallPrologue(save_accumulator_mode);
557 Node* return_val =
558 raw_assembler_->CallRuntime1(function_id, arg1, GetContext());
559 CallEpilogue(save_accumulator_mode);
560 return return_val;
496 } 561 }
497 562
498 563
499 Node* InterpreterAssembler::CallRuntime(Runtime::FunctionId function_id, 564 Node* InterpreterAssembler::CallRuntime(
500 Node* arg1, Node* arg2) { 565 Runtime::FunctionId function_id, Node* arg1, Node* arg2,
501 return raw_assembler_->CallRuntime2(function_id, arg1, arg2, GetContext()); 566 SaveAccumulatorMode save_accumulator_mode) {
567 CallPrologue(save_accumulator_mode);
568 Node* return_val =
569 raw_assembler_->CallRuntime2(function_id, arg1, arg2, GetContext());
570 CallEpilogue(save_accumulator_mode);
571 return return_val;
502 } 572 }
503 573
504 574
505 Node* InterpreterAssembler::CallRuntime(Runtime::FunctionId function_id, 575 Node* InterpreterAssembler::CallRuntime(
506 Node* arg1, Node* arg2, Node* arg3, 576 Runtime::FunctionId function_id, Node* arg1, Node* arg2, Node* arg3,
507 Node* arg4) { 577 Node* arg4, SaveAccumulatorMode save_accumulator_mode) {
508 return raw_assembler_->CallRuntime4(function_id, arg1, arg2, arg3, arg4, 578 CallPrologue(save_accumulator_mode);
509 GetContext()); 579 Node* return_val = raw_assembler_->CallRuntime4(function_id, arg1, arg2, arg3,
580 arg4, GetContext());
581 CallEpilogue(save_accumulator_mode);
582 return return_val;
510 } 583 }
511 584
512 585
513 void InterpreterAssembler::Return() { 586 void InterpreterAssembler::Return() {
514 Node* exit_trampoline_code_object = 587 Node* exit_trampoline_code_object =
515 HeapConstant(isolate()->builtins()->InterpreterExitTrampoline()); 588 HeapConstant(isolate()->builtins()->InterpreterExitTrampoline());
516 // If the order of the parameters you need to change the call signature below. 589 // If the order of the parameters you need to change the call signature below.
517 STATIC_ASSERT(0 == Linkage::kInterpreterAccumulatorParameter); 590 STATIC_ASSERT(0 == Linkage::kInterpreterAccumulatorParameter);
518 STATIC_ASSERT(1 == Linkage::kInterpreterRegisterFileParameter); 591 STATIC_ASSERT(1 == Linkage::kInterpreterRegisterFileParameter);
519 STATIC_ASSERT(2 == Linkage::kInterpreterBytecodeOffsetParameter); 592 STATIC_ASSERT(2 == Linkage::kInterpreterBytecodeOffsetParameter);
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 new_bytecode_offset, 656 new_bytecode_offset,
584 BytecodeArrayTaggedPointer(), 657 BytecodeArrayTaggedPointer(),
585 DispatchTableRawPointer(), 658 DispatchTableRawPointer(),
586 GetContext() }; 659 GetContext() };
587 raw_assembler_->TailCallN(call_descriptor(), target_code_object, args); 660 raw_assembler_->TailCallN(call_descriptor(), target_code_object, args);
588 } 661 }
589 662
590 663
591 void InterpreterAssembler::Abort(BailoutReason bailout_reason) { 664 void InterpreterAssembler::Abort(BailoutReason bailout_reason) {
592 Node* abort_id = SmiTag(Int32Constant(bailout_reason)); 665 Node* abort_id = SmiTag(Int32Constant(bailout_reason));
593 CallRuntime(Runtime::kAbort, abort_id); 666 Node* ret_value = CallRuntime(Runtime::kAbort, abort_id);
594 Return(); 667 // Unreached, but keeps turbofan happy.
668 raw_assembler_->Return(ret_value);
595 } 669 }
596 670
597 671
598 void InterpreterAssembler::AbortIfWordNotEqual(Node* lhs, Node* rhs, 672 void InterpreterAssembler::AbortIfWordNotEqual(Node* lhs, Node* rhs,
599 BailoutReason bailout_reason) { 673 BailoutReason bailout_reason) {
600 RawMachineLabel match, no_match; 674 RawMachineLabel match, no_match;
601 Node* condition = raw_assembler_->WordEqual(lhs, rhs); 675 Node* condition = raw_assembler_->WordEqual(lhs, rhs);
602 raw_assembler_->Branch(condition, &match, &no_match); 676 raw_assembler_->Branch(condition, &match, &no_match);
603 raw_assembler_->Bind(&no_match); 677 raw_assembler_->Bind(&no_match);
604 Abort(bailout_reason); 678 Abort(bailout_reason);
(...skipping 26 matching lines...) Expand all
631 return raw_assembler_->call_descriptor(); 705 return raw_assembler_->call_descriptor();
632 } 706 }
633 707
634 708
635 Zone* InterpreterAssembler::zone() { return raw_assembler_->zone(); } 709 Zone* InterpreterAssembler::zone() { return raw_assembler_->zone(); }
636 710
637 711
638 } // namespace compiler 712 } // namespace compiler
639 } // namespace internal 713 } // namespace internal
640 } // namespace v8 714 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698