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

1 2

  /external/v8/src/
lithium-allocator-inl.h 56 LGap* LAllocator::GapAt(int index) {
lithium-allocator.cc 679 LGap* LAllocator::GetLastGap(HBasicBlock* block) {
748 LGap* gap = GapAt(index);
749 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::START);
823 LGap* gap = GapAt(gap_index);
824 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::BEFORE);
903 LGap* gap = GapAt(index);
904 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::START);
    [all...]
lithium-allocator.h 55 class LGap;
588 LGap* GetLastGap(HBasicBlock* block);
596 inline LGap* GapAt(int index);
  /external/chromium_org/v8/src/
lithium.cc 328 LGap* gap = LGap::cast(cur);
389 LGap* LChunk::GetGapAt(int index) const {
390 return LGap::cast(instructions_[index]);
407 LGap::START, zone())->AddMove(from, to, zone());
lithium-allocator-inl.h 56 LGap* LAllocator::GapAt(int index) {
lithium-allocator.cc 690 LGap* LAllocator::GetLastGap(HBasicBlock* block) {
759 LGap* gap = GapAt(index);
760 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::START,
837 LGap* gap = GapAt(gap_index);
838 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::BEFORE,
923 LGap* gap = GapAt(index);
924 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::START,
    [all...]
lithium-allocator.h 55 class LGap;
590 LGap* GetLastGap(HBasicBlock* block);
598 inline LGap* GapAt(int index);
lithium.h 734 class LGap;
756 LGap* GetGapAt(int index) const;
  /external/v8/src/arm/
lithium-arm.h 319 class LGap: public LTemplateInstruction<0, 0, 0> {
321 explicit LGap(HBasicBlock* block)
332 static LGap* cast(LInstruction* instr) {
334 return reinterpret_cast<LGap*>(instr);
365 class LInstructionGap: public LGap {
367 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
410 class LLabel: public LGap {
413 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-arm.cc 131 LGap::PrintDataTo(stream);
139 bool LGap::IsRedundant() const {
150 void LGap::PrintDataTo(StringStream* stream) {
460 LGap* gap = LGap::cast(cur);
520 LGap* LChunk::GetGapAt(int index) const {
521 return LGap::cast(instructions_[index]);
537 GetGapAt(index)->GetOrCreateParallelMove(LGap::START)->AddMove(from, to);
    [all...]
  /external/v8/src/ia32/
lithium-ia32.h 312 class LGap: public LTemplateInstruction<0, 0, 0> {
314 explicit LGap(HBasicBlock* block) : block_(block) {
324 static LGap* cast(LInstruction* instr) {
326 return reinterpret_cast<LGap*>(instr);
357 class LInstructionGap: public LGap {
359 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
392 class LLabel: public LGap {
395 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-codegen-ia32.h 119 void DoGap(LGap* instr);
  /external/v8/src/mips/
lithium-mips.h 318 class LGap: public LTemplateInstruction<0, 0, 0> {
320 explicit LGap(HBasicBlock* block)
331 static LGap* cast(LInstruction* instr) {
333 return reinterpret_cast<LGap*>(instr);
364 class LInstructionGap: public LGap {
366 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
409 class LLabel: public LGap {
412 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-mips.cc 131 LGap::PrintDataTo(stream);
139 bool LGap::IsRedundant() const {
150 void LGap::PrintDataTo(StringStream* stream) {
460 LGap* gap = LGap::cast(cur);
520 LGap* LChunk::GetGapAt(int index) const {
521 return LGap::cast(instructions_[index]);
537 GetGapAt(index)->GetOrCreateParallelMove(LGap::START)->AddMove(from, to);
    [all...]
  /external/v8/src/x64/
lithium-x64.h 320 class LGap: public LTemplateInstruction<0, 0, 0> {
322 explicit LGap(HBasicBlock* block)
333 static LGap* cast(LInstruction* instr) {
335 return reinterpret_cast<LGap*>(instr);
366 class LInstructionGap: public LGap {
368 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
411 class LLabel: public LGap {
414 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-x64.cc 133 LGap::PrintDataTo(stream);
141 bool LGap::IsRedundant() const {
152 void LGap::PrintDataTo(StringStream* stream) {
402 LGap* gap = LGap::cast(cur);
513 LGap* LChunk::GetGapAt(int index) const {
514 return LGap::cast(instructions_[index]);
530 GetGapAt(index)->GetOrCreateParallelMove(LGap::START)->AddMove(from, to);
    [all...]
lithium-codegen-x64.h 112 void DoGap(LGap* instr);
  /external/chromium_org/v8/src/arm/
lithium-arm.h 339 class LGap: public LTemplateInstruction<0, 0, 0> {
341 explicit LGap(HBasicBlock* block)
352 static LGap* cast(LInstruction* instr) {
354 return reinterpret_cast<LGap*>(instr);
387 class LInstructionGap: public LGap {
389 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
447 class LLabel: public LGap {
450 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-codegen-arm.h 162 void DoGap(LGap* instr);
  /external/chromium_org/v8/src/ia32/
lithium-ia32.h 346 class LGap: public LTemplateInstruction<0, 0, 0> {
348 explicit LGap(HBasicBlock* block) : block_(block) {
358 static LGap* cast(LInstruction* instr) {
360 return reinterpret_cast<LGap*>(instr);
393 class LInstructionGap: public LGap {
395 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
443 class LLabel: public LGap {
446 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-codegen-ia32.h 171 void DoGap(LGap* instr);
  /external/chromium_org/v8/src/mips/
lithium-mips.h 335 class LGap: public LTemplateInstruction<0, 0, 0> {
337 explicit LGap(HBasicBlock* block)
348 static LGap* cast(LInstruction* instr) {
350 return reinterpret_cast<LGap*>(instr);
383 class LInstructionGap: public LGap {
385 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
443 class LLabel: public LGap {
446 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-codegen-mips.h 161 void DoGap(LGap* instr);
  /external/chromium_org/v8/src/x64/
lithium-x64.h 337 class LGap: public LTemplateInstruction<0, 0, 0> {
339 explicit LGap(HBasicBlock* block)
350 static LGap* cast(LInstruction* instr) {
352 return reinterpret_cast<LGap*>(instr);
386 class LInstructionGap: public LGap {
388 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
446 class LLabel: public LGap {
449 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-codegen-x64.h 139 void DoGap(LGap* instr);

Completed in 919 milliseconds

1 2