HomeSort by relevance Sort by last modified time
    Searched refs:LGap (Results 1 - 13 of 13) sorted by null

  /external/v8/src/mips/
lithium-mips.h 151 class LGap: public LInstruction {
153 explicit LGap(HBasicBlock* block) { }
181 class LLabel: public LGap {
183 explicit LLabel(HBasicBlock* block) : LGap(block) { }
257 LGap* GetGapAt(int index) const {
  /external/v8/src/
lithium-allocator-inl.h 56 LGap* LAllocator::GapAt(int index) {
lithium-allocator.cc 685 LGap* LAllocator::GetLastGap(HBasicBlock* block) {
754 LGap* gap = GapAt(index);
755 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::START);
827 LGap* gap = GapAt(gap_index);
828 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::BEFORE);
905 LGap* gap = GapAt(index);
906 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::START);
    [all...]
lithium-allocator.h 55 class LGap;
583 LGap* GetLastGap(HBasicBlock* block);
591 inline LGap* GapAt(int index);
  /external/v8/src/arm/
lithium-arm.cc 135 LGap::PrintDataTo(stream);
143 bool LGap::IsRedundant() const {
154 void LGap::PrintDataTo(StringStream* stream) const {
433 LGap* gap = LGap::cast(cur);
452 LGap* gap = new LGap(block);
493 LGap* LChunk::GetGapAt(int index) const {
494 return LGap::cast(instructions_[index]);
510 GetGapAt(index)->GetOrCreateParallelMove(LGap::START)->AddMove(from, to)
    [all...]
lithium-arm.h 327 class LGap: public LTemplateInstruction<0, 0, 0> {
329 explicit LGap(HBasicBlock* block)
408 class LLabel: public LGap {
411 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-codegen-arm.cc 758 void LCodeGen::DoGap(LGap* gap) {
759 for (int i = LGap::FIRST_INNER_POSITION;
760 i <= LGap::LAST_INNER_POSITION;
762 LGap::InnerPosition inner_pos = static_cast<LGap::InnerPosition>(i);
    [all...]
  /external/v8/src/ia32/
lithium-ia32.cc 137 LGap::PrintDataTo(stream);
145 bool LGap::IsRedundant() const {
156 void LGap::PrintDataTo(StringStream* stream) {
389 LGap* gap = LGap::cast(cur);
444 LGap* gap = new LGap(block);
485 LGap* LChunk::GetGapAt(int index) const {
486 return LGap::cast(instructions_[index]);
502 GetGapAt(index)->GetOrCreateParallelMove(LGap::START)->AddMove(from, to)
    [all...]
lithium-ia32.h 328 class LGap: public LTemplateInstruction<0, 0, 0> {
330 explicit LGap(HBasicBlock* block)
409 class LLabel: public LGap {
412 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-codegen-ia32.cc 701 void LCodeGen::DoGap(LGap* gap) {
702 for (int i = LGap::FIRST_INNER_POSITION;
703 i <= LGap::LAST_INNER_POSITION;
705 LGap::InnerPosition inner_pos = static_cast<LGap::InnerPosition>(i);
    [all...]
  /external/v8/src/x64/
lithium-x64.cc 137 LGap::PrintDataTo(stream);
145 bool LGap::IsRedundant() const {
156 void LGap::PrintDataTo(StringStream* stream) {
390 LGap* gap = LGap::cast(cur);
445 LGap* gap = new LGap(block);
486 LGap* LChunk::GetGapAt(int index) const {
487 return LGap::cast(instructions_[index]);
503 GetGapAt(index)->GetOrCreateParallelMove(LGap::START)->AddMove(from, to)
    [all...]
lithium-x64.h 328 class LGap: public LTemplateInstruction<0, 0, 0> {
330 explicit LGap(HBasicBlock* block)
409 class LLabel: public LGap {
412 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-codegen-x64.cc 702 void LCodeGen::DoGap(LGap* gap) {
703 for (int i = LGap::FIRST_INNER_POSITION;
704 i <= LGap::LAST_INNER_POSITION;
706 LGap::InnerPosition inner_pos = static_cast<LGap::InnerPosition>(i);
    [all...]

Completed in 811 milliseconds