Searched refs:chunk_ (Results 1 - 25 of 29) sorted by relevance

12

/external/v8/src/
H A Dlithium-allocator-inl.h31 bool LAllocator::IsGapAt(int index) { return chunk_->IsGapAt(index); }
35 return chunk_->instructions()->at(index);
40 return chunk_->GetGapAt(index);
H A Dlithium-codegen.h34 LPlatformChunk* chunk() const { return chunk_; }
64 LPlatformChunk* const chunk_; member in class:v8::internal::BASE_EMBEDDED
H A Dlithium-codegen.cc46 : chunk_(static_cast<LPlatformChunk*>(chunk)),
162 if (!chunk_->GetLabel(i)->HasReplacement()) return i;
242 chunk_->AddDeprecationDependency(map);
248 chunk_->AddStabilityDependency(map);
H A Dlithium-allocator.cc515 chunk_(NULL),
664 int index = chunk_->NearestGapPos(last_instruction);
799 chunk_->AddGapMove(gap_index, first_output, output_copy);
1026 operand = chunk_->DefineConstantOperand(constant);
1037 chunk_->AddGapMove(cur_block->last_instruction_index() - 1,
1061 LLabel* label = chunk_->GetLabel(phi->block()->block_id());
1070 DCHECK(chunk_ == NULL);
1071 chunk_ = static_cast<LPlatformChunk*>(chunk);
1191 LGap* gap = GapAt(chunk_->NearestGapPos(pos.InstructionIndex()));
1340 if (chunk_
[all...]
H A Dlithium.h703 chunk_(NULL),
717 LPlatformChunk* chunk() const { return chunk_; }
743 LPlatformChunk* chunk_; member in class:v8::internal::BASE_EMBEDDED
765 chunk_(chunk) { }
769 LChunk* chunk_; member in class:v8::internal::LPhase
H A Dlithium-allocator.h349 LPlatformChunk* chunk() const { return chunk_; }
515 LPlatformChunk* chunk_; member in class:v8::internal::BASE_EMBEDDED
H A Dcompiler.h586 chunk_(NULL),
623 LChunk* chunk_; member in class:v8::internal::OptimizedCompileJob
H A Dcompiler.cc465 chunk_ = LChunk::NewChunk(graph_);
466 if (chunk_ != NULL) return SetLastStatus(SUCCEEDED);
488 DCHECK(chunk_ != NULL);
495 Handle<Code> optimized_code = chunk_->Codegen();
/external/compiler-rt/lib/asan/
H A Dasan_allocator.h52 explicit AsanChunkView(AsanChunk *chunk) : chunk_(chunk) {}
60 bool Eq(const AsanChunkView &c) const { return chunk_ == c.chunk_; }
87 AsanChunk *const chunk_; member in class:__asan::AsanChunkView
H A Dasan_allocator.cc657 return chunk_ != 0 && chunk_->chunk_state != CHUNK_AVAILABLE;
659 uptr AsanChunkView::Beg() { return chunk_->Beg(); }
661 uptr AsanChunkView::UsedSize() { return chunk_->UsedSize(); }
662 uptr AsanChunkView::AllocTid() { return chunk_->alloc_tid; }
663 uptr AsanChunkView::FreeTid() { return chunk_->free_tid; }
673 return GetStackTraceFromId(chunk_->alloc_context_id);
677 return GetStackTraceFromId(chunk_->free_context_id);
/external/v8/src/heap/
H A Dmark-compact.h899 explicit MarkBitCellIterator(MemoryChunk* chunk) : chunk_(chunk) {
901 chunk_->AddressToMarkbitIndex(chunk_->area_end())));
902 cell_base_ = chunk_->area_start();
904 Bitmap::CellAlignIndex(chunk_->AddressToMarkbitIndex(cell_base_)));
905 cells_ = chunk_->markbits()->cells();
914 chunk_->AddressToMarkbitIndex(cell_base_))));
920 chunk_->AddressToMarkbitIndex(cell_base_))));
930 MemoryChunk* chunk_; member in class:v8::internal::BASE_EMBEDDED
/external/v8/src/mips/
H A Dlithium-codegen-mips.cc433 HConstant* constant = chunk_->LookupConstant(const_op);
435 Representation r = chunk_->LookupLiteralRepresentation(const_op);
471 HConstant* constant = chunk_->LookupConstant(const_op);
473 Representation r = chunk_->LookupLiteralRepresentation(const_op);
496 HConstant* constant = chunk_->LookupConstant(op);
497 DCHECK(chunk_->LookupLiteralRepresentation(op).IsSmiOrTagged());
503 return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32();
508 return chunk_->LookupLiteralRepresentation(op).IsSmi();
519 HConstant* constant = chunk_->LookupConstant(op);
528 HConstant* constant = chunk_
[all...]
H A Dlithium-mips.cc409 chunk_ = new(zone()) LPlatformChunk(info(), graph());
410 LPhase phase("L_Building chunk", chunk_);
417 chunk_->GetNextSpillIndex(GENERAL_REGISTERS);
429 return chunk_;
485 ? chunk_->DefineConstantOperand(HConstant::cast(value))
492 ? chunk_->DefineConstantOperand(HConstant::cast(value))
499 ? chunk_->DefineConstantOperand(HConstant::cast(value))
506 ? chunk_->DefineConstantOperand(HConstant::cast(value))
512 return chunk_->DefineConstantOperand(HConstant::cast(value));
518 ? chunk_
[all...]
/external/v8/src/x64/
H A Dlithium-codegen-x64.cc421 return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32();
427 chunk_->IsDehoistedKey(chunk_->LookupConstant(op));
432 return chunk_->LookupLiteralRepresentation(op).IsSmi();
443 HConstant* constant = chunk_->LookupConstant(op);
452 HConstant* constant = chunk_->LookupConstant(op);
458 HConstant* constant = chunk_->LookupConstant(op);
465 HConstant* constant = chunk_->LookupConstant(op);
472 HConstant* constant = chunk_->LookupConstant(op);
473 DCHECK(chunk_
[all...]
H A Dlithium-x64.cc428 chunk_ = new(zone()) LPlatformChunk(info(), graph());
429 LPhase phase("L_Building chunk", chunk_);
436 chunk_->GetNextSpillIndex(GENERAL_REGISTERS);
448 return chunk_;
493 ? chunk_->DefineConstantOperand(HConstant::cast(value))
511 ? chunk_->DefineConstantOperand(HConstant::cast(value))
518 ? chunk_->DefineConstantOperand(HConstant::cast(value))
525 ? chunk_->DefineConstantOperand(HConstant::cast(value))
532 ? chunk_->DefineConstantOperand(HConstant::cast(value))
538 return chunk_
[all...]
/external/v8/src/arm/
H A Dlithium-codegen-arm.cc439 HConstant* constant = chunk_->LookupConstant(const_op);
441 Representation r = chunk_->LookupLiteralRepresentation(const_op);
474 HConstant* constant = chunk_->LookupConstant(const_op);
476 Representation r = chunk_->LookupLiteralRepresentation(const_op);
501 HConstant* constant = chunk_->LookupConstant(op);
502 DCHECK(chunk_->LookupLiteralRepresentation(op).IsSmiOrTagged());
508 return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32();
513 return chunk_->LookupLiteralRepresentation(op).IsSmi();
524 HConstant* constant = chunk_->LookupConstant(op);
533 HConstant* constant = chunk_
[all...]
H A Dlithium-arm.cc402 chunk_ = new(zone()) LPlatformChunk(info(), graph());
403 LPhase phase("L_Building chunk", chunk_);
410 chunk_->GetNextSpillIndex(GENERAL_REGISTERS);
422 return chunk_;
478 ? chunk_->DefineConstantOperand(HConstant::cast(value))
485 ? chunk_->DefineConstantOperand(HConstant::cast(value))
492 ? chunk_->DefineConstantOperand(HConstant::cast(value))
499 ? chunk_->DefineConstantOperand(HConstant::cast(value))
505 return chunk_->DefineConstantOperand(HConstant::cast(value));
511 ? chunk_
[all...]
/external/v8/src/ia32/
H A Dlithium-codegen-ia32.cc520 HConstant* constant = chunk_->LookupConstant(op);
529 HConstant* constant = chunk_->LookupConstant(op);
530 DCHECK(chunk_->LookupLiteralRepresentation(op).IsSmiOrTagged());
536 HConstant* constant = chunk_->LookupConstant(op);
543 HConstant* constant = chunk_->LookupConstant(op);
550 return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32();
555 return chunk_->LookupLiteralRepresentation(op).IsSmi();
765 chunk_->LookupConstant(LConstantOperand::cast(context));
2038 int left_block = instr->TrueDestination(chunk_);
2039 int right_block = instr->FalseDestination(chunk_);
[all...]
H A Dlithium-ia32.cc433 chunk_ = new(zone()) LPlatformChunk(info(), graph());
434 LPhase phase("L_Building chunk", chunk_);
439 int alignment_state_index = chunk_->GetNextSpillIndex(GENERAL_REGISTERS);
448 chunk_->GetNextSpillIndex(GENERAL_REGISTERS);
460 return chunk_;
521 ? chunk_->DefineConstantOperand(HConstant::cast(value))
528 ? chunk_->DefineConstantOperand(HConstant::cast(value))
536 ? chunk_->DefineConstantOperand(HConstant::cast(value))
543 ? chunk_->DefineConstantOperand(HConstant::cast(value))
550 ? chunk_
[all...]
/external/v8/src/mips64/
H A Dlithium-codegen-mips64.cc378 HConstant* constant = chunk_->LookupConstant(const_op);
380 Representation r = chunk_->LookupLiteralRepresentation(const_op);
416 HConstant* constant = chunk_->LookupConstant(const_op);
418 Representation r = chunk_->LookupLiteralRepresentation(const_op);
441 HConstant* constant = chunk_->LookupConstant(op);
442 DCHECK(chunk_->LookupLiteralRepresentation(op).IsSmiOrTagged());
448 return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32();
453 return chunk_->LookupLiteralRepresentation(op).IsSmi();
459 HConstant* constant = chunk_->LookupConstant(op);
466 HConstant* constant = chunk_
[all...]
H A Dlithium-mips64.cc409 chunk_ = new(zone()) LPlatformChunk(info(), graph());
410 LPhase phase("L_Building chunk", chunk_);
417 chunk_->GetNextSpillIndex(GENERAL_REGISTERS);
429 return chunk_;
485 ? chunk_->DefineConstantOperand(HConstant::cast(value))
492 ? chunk_->DefineConstantOperand(HConstant::cast(value))
499 ? chunk_->DefineConstantOperand(HConstant::cast(value))
506 ? chunk_->DefineConstantOperand(HConstant::cast(value))
512 return chunk_->DefineConstantOperand(HConstant::cast(value));
518 ? chunk_
[all...]
/external/v8/src/x87/
H A Dlithium-x87.cc444 chunk_ = new(zone()) LPlatformChunk(info(), graph());
445 LPhase phase("L_Building chunk", chunk_);
450 int alignment_state_index = chunk_->GetNextSpillIndex(GENERAL_REGISTERS);
459 chunk_->GetNextSpillIndex(GENERAL_REGISTERS);
471 return chunk_;
527 ? chunk_->DefineConstantOperand(HConstant::cast(value))
534 ? chunk_->DefineConstantOperand(HConstant::cast(value))
542 ? chunk_->DefineConstantOperand(HConstant::cast(value))
549 ? chunk_->DefineConstantOperand(HConstant::cast(value))
556 ? chunk_
[all...]
H A Dlithium-codegen-x87.cc783 HConstant* constant = chunk_->LookupConstant(op);
792 HConstant* constant = chunk_->LookupConstant(op);
793 DCHECK(chunk_->LookupLiteralRepresentation(op).IsSmiOrTagged());
799 HConstant* constant = chunk_->LookupConstant(op);
806 HConstant* constant = chunk_->LookupConstant(op);
813 return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32();
818 return chunk_->LookupLiteralRepresentation(op).IsSmi();
1026 chunk_->LookupConstant(LConstantOperand::cast(context));
2330 int left_block = instr->TrueDestination(chunk_);
2331 int right_block = instr->FalseDestination(chunk_);
[all...]
/external/v8/src/arm64/
H A Dlithium-codegen-arm64.cc503 chunk_->LookupConstant(LConstantOperand::cast(context));
1191 HConstant* constant = chunk_->LookupConstant(op);
1207 Representation r = chunk_->LookupLiteralRepresentation(const_op);
1238 Representation r = chunk_->LookupLiteralRepresentation(const_op);
1300 HConstant* constant = chunk_->LookupConstant(op);
1301 DCHECK(chunk_->LookupLiteralRepresentation(op).IsSmiOrTagged());
1320 return chunk_->LookupLiteralRepresentation(op).IsSmi();
1325 return chunk_->LookupLiteralRepresentation(op).IsSmiOrInteger32();
1330 HConstant* constant = chunk_->LookupConstant(op);
1336 HConstant* constant = chunk_
[all...]
H A Dlithium-arm64.cc418 return chunk_->DefineConstantOperand(HConstant::cast(value));
562 chunk_ = new(zone()) LPlatformChunk(info_, graph_);
563 LPhase phase("L_Building chunk", chunk_);
572 chunk_->GetNextSpillIndex();
582 return chunk_;
637 int start = chunk_->instructions()->length();
645 int end = chunk_->instructions()->length() - 1;
673 chunk_->AddInstruction(dummy, current_block_);
739 chunk_->AddInstruction(instr, current_block_);
752 chunk_
[all...]

Completed in 3992 milliseconds

12