Home
last modified time | relevance | path

Searched refs:LGap (Results 1 – 25 of 33) sorted by relevance

12

/external/chromium_org/v8/src/
Dlithium-allocator.cc662 LGap* LAllocator::GetLastGap(HBasicBlock* block) { in GetLastGap()
731 LGap* gap = GapAt(index); in AddConstraintsGapMove()
732 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::START, in AddConstraintsGapMove()
809 LGap* gap = GapAt(gap_index); in MeetConstraintsBetween()
810 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::BEFORE, in MeetConstraintsBetween()
895 LGap* gap = GapAt(index); in ProcessInstructions()
896 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::START, in ProcessInstructions()
1062 label->GetOrCreateParallelMove(LGap::START, chunk()->zone())-> in ResolvePhis()
1144 LGap* gap = NULL; in ResolveControlFlow()
1170 LGap::START, chunk()->zone())->AddMove(pred_op, cur_op, in ResolveControlFlow()
[all …]
Dlithium.cc318 LGap* gap = LGap::cast(cur); in MarkEmptyBlocks()
380 LGap* LChunk::GetGapAt(int index) const { in GetGapAt()
381 return LGap::cast(instructions_[index]); in GetGapAt()
398 LGap::START, zone())->AddMove(from, to, zone()); in AddGapMove()
Dlithium-allocator-inl.h39 LGap* LAllocator::GapAt(int index) { in GapAt()
Dlithium-allocator.h29 class LGap; variable
503 LGap* GetLastGap(HBasicBlock* block);
511 inline LGap* GapAt(int index);
Dlithium.h614 class LGap; variable
636 LGap* GetGapAt(int index) const;
/external/chromium_org/v8/src/arm/
Dlithium-arm.h324 class LGap : public LTemplateInstruction<0, 0, 0> {
326 explicit LGap(HBasicBlock* block) in LGap() function
337 static LGap* cast(LInstruction* instr) { in cast()
339 return reinterpret_cast<LGap*>(instr); in cast()
372 class LInstructionGap FINAL : public LGap {
374 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { } in LInstructionGap()
440 class LLabel FINAL : public LGap {
443 : LGap(block), replacement_(NULL) { } in LLabel()
Dlithium-codegen-arm.h128 void DoGap(LGap* instr);
Dlithium-arm.cc81 LGap::PrintDataTo(stream); in PrintDataTo()
89 bool LGap::IsRedundant() const { in IsRedundant()
100 void LGap::PrintDataTo(StringStream* stream) { in PrintDataTo()
/external/chromium_org/v8/src/mips64/
Dlithium-mips64.h320 class LGap : public LTemplateInstruction<0, 0, 0> {
322 explicit LGap(HBasicBlock* block) in LGap() function
333 static LGap* cast(LInstruction* instr) { in cast()
335 return reinterpret_cast<LGap*>(instr); in cast()
368 class LInstructionGap FINAL : public LGap {
370 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { } in LInstructionGap()
436 class LLabel FINAL : public LGap {
439 : LGap(block), replacement_(NULL) { } in LLabel()
Dlithium-codegen-mips64.h128 void DoGap(LGap* instr);
Dlithium-mips64.cc83 LGap::PrintDataTo(stream); in PrintDataTo()
91 bool LGap::IsRedundant() const { in IsRedundant()
102 void LGap::PrintDataTo(StringStream* stream) { in PrintDataTo()
/external/chromium_org/v8/src/x64/
Dlithium-x64.h328 class LGap : public LTemplateInstruction<0, 0, 0> {
330 explicit LGap(HBasicBlock* block) in LGap() function
341 static LGap* cast(LInstruction* instr) { in cast()
343 return reinterpret_cast<LGap*>(instr); in cast()
377 class LInstructionGap FINAL : public LGap {
379 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { } in LInstructionGap()
445 class LLabel FINAL : public LGap {
448 : LGap(block), replacement_(NULL) { } in LLabel()
Dlithium-codegen-x64.h110 void DoGap(LGap* instr);
Dlithium-x64.cc84 LGap::PrintDataTo(stream); in PrintDataTo()
92 bool LGap::IsRedundant() const { in IsRedundant()
103 void LGap::PrintDataTo(StringStream* stream) { in PrintDataTo()
/external/chromium_org/v8/src/ia32/
Dlithium-ia32.h325 class LGap : public LTemplateInstruction<0, 0, 0> {
327 explicit LGap(HBasicBlock* block) : block_(block) { in LGap() function
337 static LGap* cast(LInstruction* instr) { in cast()
339 return reinterpret_cast<LGap*>(instr); in cast()
372 class LInstructionGap FINAL : public LGap {
374 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { } in LInstructionGap()
435 class LLabel FINAL : public LGap {
438 : LGap(block), replacement_(NULL) { } in LLabel()
Dlithium-codegen-ia32.h116 void DoGap(LGap* instr);
Dlithium-ia32.cc100 LGap::PrintDataTo(stream); in PrintDataTo()
108 bool LGap::IsRedundant() const { in IsRedundant()
119 void LGap::PrintDataTo(StringStream* stream) { in PrintDataTo()
/external/chromium_org/v8/src/x87/
Dlithium-x87.h330 class LGap : public LTemplateInstruction<0, 0, 0> {
332 explicit LGap(HBasicBlock* block) : block_(block) { in LGap() function
342 static LGap* cast(LInstruction* instr) { in cast()
344 return reinterpret_cast<LGap*>(instr); in cast()
377 class LInstructionGap FINAL : public LGap {
379 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { } in LInstructionGap()
453 class LLabel FINAL : public LGap {
456 : LGap(block), replacement_(NULL) { } in LLabel()
Dlithium-codegen-x87.h150 void DoGap(LGap* instr);
Dlithium-x87.cc111 LGap::PrintDataTo(stream); in PrintDataTo()
119 bool LGap::IsRedundant() const { in IsRedundant()
130 void LGap::PrintDataTo(StringStream* stream) { in PrintDataTo()
/external/chromium_org/v8/src/mips/
Dlithium-mips.h321 class LGap : public LTemplateInstruction<0, 0, 0> {
323 explicit LGap(HBasicBlock* block) in LGap() function
334 static LGap* cast(LInstruction* instr) { in cast()
336 return reinterpret_cast<LGap*>(instr); in cast()
369 class LInstructionGap FINAL : public LGap {
371 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { } in LInstructionGap()
437 class LLabel FINAL : public LGap {
440 : LGap(block), replacement_(NULL) { } in LLabel()
Dlithium-codegen-mips.h127 void DoGap(LGap* instr);
Dlithium-mips.cc83 LGap::PrintDataTo(stream); in PrintDataTo()
91 bool LGap::IsRedundant() const { in IsRedundant()
102 void LGap::PrintDataTo(StringStream* stream) { in PrintDataTo()
/external/chromium_org/v8/src/arm64/
Dlithium-arm64.h402 class LGap : public LTemplateInstruction<0, 0, 0> {
404 explicit LGap(HBasicBlock* block) in LGap() function
415 static LGap* cast(LInstruction* instr) { in cast()
417 return reinterpret_cast<LGap*>(instr); in cast()
450 class LInstructionGap FINAL : public LGap {
452 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { } in LInstructionGap()
523 class LLabel FINAL : public LGap {
526 : LGap(block), replacement_(NULL) { } in LLabel()
Dlithium-codegen-arm64.h149 void DoGap(LGap* instr);

12