/external/v8/src/ |
D | lithium-allocator-inl.h | 48 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()
|
D | lithium-allocator.cc | 535 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 …]
|
D | lithium-allocator.h | 458 LChunk* chunk() const { return chunk_; } in chunk() 600 LChunk* chunk_; variable
|
D | profile-generator.cc | 3319 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
|
D | hydrogen.h | 1285 LChunk* chunk_; variable
|
D | hydrogen.cc | 8157 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/ |
D | lithium-codegen-mips.cc | 295 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 …]
|
D | lithium-codegen-mips.h | 47 : 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
|
D | lithium-mips.cc | 554 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 …]
|
D | lithium-mips.h | 2235 : chunk_(NULL), in LChunkBuilder() 2265 LChunk* chunk() const { return chunk_; } in chunk() 2371 LChunk* chunk_; variable
|
/external/v8/src/ia32/ |
D | lithium-codegen-ia32.cc | 310 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 …]
|
D | lithium-codegen-ia32.h | 50 : 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
|
D | lithium-ia32.cc | 549 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 …]
|
D | lithium-ia32.h | 2353 : chunk_(NULL), in LChunkBuilder() 2383 LChunk* chunk() const { return chunk_; } in chunk() 2492 LChunk* chunk_; variable
|
/external/v8/src/x64/ |
D | lithium-codegen-x64.cc | 312 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 …]
|
D | lithium-codegen-x64.h | 49 : 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
|
D | lithium-x64.cc | 547 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 …]
|
D | lithium-x64.h | 2217 : chunk_(NULL), in LChunkBuilder() 2247 LChunk* chunk() const { return chunk_; } in chunk() 2356 LChunk* chunk_; variable
|
/external/v8/src/arm/ |
D | lithium-codegen-arm.cc | 325 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 …]
|
D | lithium-codegen-arm.h | 47 : 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
|
D | lithium-arm.cc | 554 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 …]
|
D | lithium-arm.h | 2255 : chunk_(NULL), in LChunkBuilder() 2285 LChunk* chunk() const { return chunk_; } in chunk() 2390 LChunk* chunk_; variable
|