Home
last modified time | relevance | path

Searched refs:chunk_ (Results 1 – 22 of 22) sorted by relevance

/external/v8/src/
Dlithium-allocator-inl.h48 bool LAllocator::IsGapAt(int index) { return chunk_->IsGapAt(index); } in IsGapAt()
52 return chunk_->instructions()->at(index); in InstructionAt()
57 return chunk_->GetGapAt(index); in GapAt()
Dlithium-allocator.cc535 chunk_(NULL), in LAllocator()
681 int index = chunk_->NearestGapPos(last_instruction); in GetLastGap()
813 chunk_->AddGapMove(gap_index, first_output, output_copy); in MeetConstraintsBetween()
1023 operand = chunk_->DefineConstantOperand(constant); in ResolvePhis()
1033 chunk_->AddGapMove(cur_block->last_instruction_index() - 1, in ResolvePhis()
1057 LLabel* label = chunk_->GetLabel(phi->block()->block_id()); in ResolvePhis()
1066 ASSERT(chunk_ == NULL); in Allocate()
1067 chunk_ = chunk; in Allocate()
1085 HPhase phase("L_Register constraints", chunk_); in MeetRegisterConstraints()
1097 HPhase phase("L_Resolve phis", chunk_); in ResolvePhis()
[all …]
Dlithium-allocator.h458 LChunk* chunk() const { return chunk_; } in chunk()
600 LChunk* chunk_; variable
Dprofile-generator.cc3319 chunk_(chunk_size_), in OutputStreamWriter()
3328 chunk_[chunk_pos_++] = c; in AddCharacter()
3342 memcpy(chunk_.start() + chunk_pos_, s, s_chunk_size); in AddSubstring()
3368 chunk_.SubVector(chunk_pos_, chunk_size_), format, n); in AddNumberImpl()
3388 if (stream_->WriteAsciiChunk(chunk_.start(), chunk_pos_) == in WriteChunk()
3395 ScopedVector<char> chunk_; member in v8::internal::OutputStreamWriter
Dhydrogen.h1285 LChunk* chunk_; variable
Dhydrogen.cc8157 chunk_ = chunk; in Begin()
8159 if (allocator != NULL && chunk_ == NULL) { in Begin()
8160 chunk_ = allocator->chunk(); in Begin()
8179 if (chunk_ != NULL) HTracer::Instance()->TraceLithium(name_, chunk_); in End()
/external/v8/src/mips/
Dlithium-codegen-mips.cc295 Handle<Object> literal = chunk_->LookupLiteral(const_op); in EmitLoadRegister()
296 Representation r = chunk_->LookupLiteralRepresentation(const_op); in EmitLoadRegister()
333 Handle<Object> literal = chunk_->LookupLiteral(const_op); in EmitLoadDoubleRegister()
334 Representation r = chunk_->LookupLiteralRepresentation(const_op); in EmitLoadDoubleRegister()
357 Handle<Object> literal = chunk_->LookupLiteral(op); in ToHandle()
358 ASSERT(chunk_->LookupLiteralRepresentation(op).IsTagged()); in ToHandle()
364 return chunk_->LookupLiteralRepresentation(op).IsInteger32(); in IsInteger32()
369 Handle<Object> value = chunk_->LookupLiteral(op); in ToInteger32()
370 ASSERT(chunk_->LookupLiteralRepresentation(op).IsInteger32()); in ToInteger32()
378 Handle<Object> value = chunk_->LookupLiteral(op); in ToDouble()
[all …]
Dlithium-codegen-mips.h47 : chunk_(chunk), in LCodeGen()
152 LChunk* chunk() const { return chunk_; } in chunk()
154 HGraph* graph() const { return chunk_->graph(); } in graph()
345 LChunk* const chunk_; variable
Dlithium-mips.cc554 chunk_ = new(zone()) LChunk(info(), graph()); in Build()
555 HPhase phase("L_Building chunk", chunk_); in Build()
565 return chunk_; in Build()
636 ? chunk_->DefineConstantOperand(HConstant::cast(value)) in UseOrConstant()
643 ? chunk_->DefineConstantOperand(HConstant::cast(value)) in UseOrConstantAtStart()
650 ? chunk_->DefineConstantOperand(HConstant::cast(value)) in UseRegisterOrConstant()
657 ? chunk_->DefineConstantOperand(HConstant::cast(value)) in UseRegisterOrConstantAtStart()
664 ? chunk_->DefineConstantOperand(HConstant::cast(value)) in UseAny()
855 right = chunk_->DefineConstantOperand(constant); in DoShift()
956 int start = chunk_->instructions()->length(); in DoBasicBlock()
[all …]
Dlithium-mips.h2235 : chunk_(NULL), in LChunkBuilder()
2265 LChunk* chunk() const { return chunk_; } in chunk()
2371 LChunk* chunk_; variable
/external/v8/src/ia32/
Dlithium-codegen-ia32.cc310 Handle<Object> value = chunk_->LookupLiteral(op); in ToInteger32()
311 ASSERT(chunk_->LookupLiteralRepresentation(op).IsInteger32()); in ToInteger32()
319 Handle<Object> literal = chunk_->LookupLiteral(op); in ToHandle()
320 ASSERT(chunk_->LookupLiteralRepresentation(op).IsTagged()); in ToHandle()
326 Handle<Object> value = chunk_->LookupLiteral(op); in ToDouble()
332 return chunk_->LookupLiteralRepresentation(op).IsInteger32(); in IsInteger32()
503 chunk_->LookupLiteral(LConstantOperand::cast(context)); in CallRuntimeFromDeferred()
1393 LLabel* label = chunk_->GetLabel(i); in GetNextEmittedBlock()
1402 right_block = chunk_->LookupDestination(right_block); in EmitBranch()
1403 left_block = chunk_->LookupDestination(left_block); in EmitBranch()
[all …]
Dlithium-codegen-ia32.h50 : chunk_(chunk), in LCodeGen()
148 LChunk* chunk() const { return chunk_; } in chunk()
150 HGraph* graph() const { return chunk_->graph(); } in graph()
319 LChunk* const chunk_; variable
Dlithium-ia32.cc549 chunk_ = new(zone()) LChunk(info(), graph()); in Build()
550 HPhase phase("L_Building chunk", chunk_); in Build()
560 return chunk_; in Build()
631 ? chunk_->DefineConstantOperand(HConstant::cast(value)) in UseOrConstant()
638 ? chunk_->DefineConstantOperand(HConstant::cast(value)) in UseOrConstantAtStart()
645 ? chunk_->DefineConstantOperand(HConstant::cast(value)) in UseRegisterOrConstant()
652 ? chunk_->DefineConstantOperand(HConstant::cast(value)) in UseRegisterOrConstantAtStart()
659 ? chunk_->DefineConstantOperand(HConstant::cast(value)) in UseAny()
855 right = chunk_->DefineConstantOperand(constant); in DoShift()
957 int start = chunk_->instructions()->length(); in DoBasicBlock()
[all …]
Dlithium-ia32.h2353 : chunk_(NULL), in LChunkBuilder()
2383 LChunk* chunk() const { return chunk_; } in chunk()
2492 LChunk* chunk_; variable
/external/v8/src/x64/
Dlithium-codegen-x64.cc312 chunk_->LookupLiteralRepresentation(op).IsInteger32(); in IsInteger32Constant()
318 chunk_->LookupLiteralRepresentation(op).IsTagged(); in IsTaggedConstant()
323 Handle<Object> value = chunk_->LookupLiteral(op); in ToInteger32()
324 ASSERT(chunk_->LookupLiteralRepresentation(op).IsInteger32()); in ToInteger32()
332 Handle<Object> value = chunk_->LookupLiteral(op); in ToDouble()
338 Handle<Object> literal = chunk_->LookupLiteral(op); in ToHandle()
339 ASSERT(chunk_->LookupLiteralRepresentation(op).IsTagged()); in ToHandle()
1355 LLabel* label = chunk_->GetLabel(i); in GetNextEmittedBlock()
1364 right_block = chunk_->LookupDestination(right_block); in EmitBranch()
1365 left_block = chunk_->LookupDestination(left_block); in EmitBranch()
[all …]
Dlithium-codegen-x64.h49 : chunk_(chunk), in LCodeGen()
139 LChunk* chunk() const { return chunk_; } in chunk()
141 HGraph* graph() const { return chunk_->graph(); } in graph()
315 LChunk* const chunk_; variable
Dlithium-x64.cc547 chunk_ = new(zone()) LChunk(info(), graph()); in Build()
548 HPhase phase("L_Building chunk", chunk_); in Build()
558 return chunk_; in Build()
629 ? chunk_->DefineConstantOperand(HConstant::cast(value)) in UseOrConstant()
636 ? chunk_->DefineConstantOperand(HConstant::cast(value)) in UseOrConstantAtStart()
643 ? chunk_->DefineConstantOperand(HConstant::cast(value)) in UseRegisterOrConstant()
650 ? chunk_->DefineConstantOperand(HConstant::cast(value)) in UseRegisterOrConstantAtStart()
657 ? chunk_->DefineConstantOperand(HConstant::cast(value)) in UseAny()
850 right = chunk_->DefineConstantOperand(constant); in DoShift()
951 int start = chunk_->instructions()->length(); in DoBasicBlock()
[all …]
Dlithium-x64.h2217 : chunk_(NULL), in LChunkBuilder()
2247 LChunk* chunk() const { return chunk_; } in chunk()
2356 LChunk* chunk_; variable
/external/v8/src/arm/
Dlithium-codegen-arm.cc325 Handle<Object> literal = chunk_->LookupLiteral(const_op); in EmitLoadRegister()
326 Representation r = chunk_->LookupLiteralRepresentation(const_op); in EmitLoadRegister()
363 Handle<Object> literal = chunk_->LookupLiteral(const_op); in EmitLoadDoubleRegister()
364 Representation r = chunk_->LookupLiteralRepresentation(const_op); in EmitLoadDoubleRegister()
389 Handle<Object> literal = chunk_->LookupLiteral(op); in ToHandle()
390 ASSERT(chunk_->LookupLiteralRepresentation(op).IsTagged()); in ToHandle()
396 return chunk_->LookupLiteralRepresentation(op).IsInteger32(); in IsInteger32()
401 Handle<Object> value = chunk_->LookupLiteral(op); in ToInteger32()
402 ASSERT(chunk_->LookupLiteralRepresentation(op).IsInteger32()); in ToInteger32()
410 Handle<Object> value = chunk_->LookupLiteral(op); in ToDouble()
[all …]
Dlithium-codegen-arm.h47 : chunk_(chunk), in LCodeGen()
156 LChunk* chunk() const { return chunk_; } in chunk()
158 HGraph* graph() const { return chunk_->graph(); } in graph()
330 LChunk* const chunk_; variable
Dlithium-arm.cc554 chunk_ = new(zone()) LChunk(info(), graph()); in Build()
555 HPhase phase("L_Building chunk", chunk_); in Build()
565 return chunk_; in Build()
636 ? chunk_->DefineConstantOperand(HConstant::cast(value)) in UseOrConstant()
643 ? chunk_->DefineConstantOperand(HConstant::cast(value)) in UseOrConstantAtStart()
650 ? chunk_->DefineConstantOperand(HConstant::cast(value)) in UseRegisterOrConstant()
657 ? chunk_->DefineConstantOperand(HConstant::cast(value)) in UseRegisterOrConstantAtStart()
664 ? chunk_->DefineConstantOperand(HConstant::cast(value)) in UseAny()
855 right = chunk_->DefineConstantOperand(constant); in DoShift()
956 int start = chunk_->instructions()->length(); in DoBasicBlock()
[all …]
Dlithium-arm.h2255 : chunk_(NULL), in LChunkBuilder()
2285 LChunk* chunk() const { return chunk_; } in chunk()
2390 LChunk* chunk_; variable