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

1 2

  /external/v8/src/crankshaft/
lithium-allocator-inl.h 43 LGap* LAllocator::GapAt(int index) {
lithium.cc 307 LGap* gap = LGap::cast(cur);
368 LGap* LChunk::GetGapAt(int index) const {
369 return LGap::cast(instructions_[index]);
386 LGap::START, zone())->AddMove(from, to, zone());
lithium-allocator.cc 663 LGap* LAllocator::GetLastGap(HBasicBlock* block) {
732 LGap* gap = GapAt(index);
733 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::START,
810 LGap* gap = GapAt(gap_index);
811 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::BEFORE,
896 LGap* gap = GapAt(index);
897 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::START,
    [all...]
lithium-allocator.h 29 class LGap;
503 LGap* GetLastGap(HBasicBlock* block);
511 inline LGap* GapAt(int index);
lithium.h 626 class LGap;
654 LGap* GetGapAt(int index) const;
  /external/v8/src/crankshaft/arm/
lithium-arm.h 311 class LGap : public LTemplateInstruction<0, 0, 0> {
313 explicit LGap(HBasicBlock* block)
324 static LGap* cast(LInstruction* instr) {
326 return reinterpret_cast<LGap*>(instr);
359 class LInstructionGap final : public LGap {
361 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
433 class LLabel final : public LGap {
436 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-codegen-arm.h 119 void DoGap(LGap* instr);
lithium-arm.cc 83 LGap::PrintDataTo(stream);
91 bool LGap::IsRedundant() const {
102 void LGap::PrintDataTo(StringStream* stream) {
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-arm64.h 366 class LGap : public LTemplateInstruction<0, 0, 0> {
368 explicit LGap(HBasicBlock* block)
379 static LGap* cast(LInstruction* instr) {
381 return reinterpret_cast<LGap*>(instr);
414 class LInstructionGap final : public LGap {
416 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
493 class LLabel final : public LGap {
496 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-codegen-arm64.h 137 void DoGap(LGap* instr);
lithium-arm64.cc 46 LGap::PrintDataTo(stream);
212 bool LGap::IsRedundant() const {
223 void LGap::PrintDataTo(StringStream* stream) {
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-ia32.h 314 class LGap : public LTemplateInstruction<0, 0, 0> {
316 explicit LGap(HBasicBlock* block) : block_(block) {
326 static LGap* cast(LInstruction* instr) {
328 return reinterpret_cast<LGap*>(instr);
361 class LInstructionGap final : public LGap {
363 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
430 class LLabel final : public LGap {
433 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-codegen-ia32.h 105 void DoGap(LGap* instr);
  /external/v8/src/crankshaft/mips/
lithium-mips.h 309 class LGap : public LTemplateInstruction<0, 0, 0> {
311 explicit LGap(HBasicBlock* block)
322 static LGap* cast(LInstruction* instr) {
324 return reinterpret_cast<LGap*>(instr);
357 class LInstructionGap final : public LGap {
359 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
431 class LLabel final : public LGap {
434 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-codegen-mips.h 118 void DoGap(LGap* instr);
  /external/v8/src/crankshaft/mips64/
lithium-mips64.h 312 class LGap : public LTemplateInstruction<0, 0, 0> {
314 explicit LGap(HBasicBlock* block)
325 static LGap* cast(LInstruction* instr) {
327 return reinterpret_cast<LGap*>(instr);
360 class LInstructionGap final : public LGap {
362 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
434 class LLabel final : public LGap {
437 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-codegen-mips64.h 120 void DoGap(LGap* instr);
  /external/v8/src/crankshaft/ppc/
lithium-ppc.h 309 class LGap : public LTemplateInstruction<0, 0, 0> {
311 explicit LGap(HBasicBlock* block) : block_(block) {
321 static LGap* cast(LInstruction* instr) {
323 return reinterpret_cast<LGap*>(instr);
356 class LInstructionGap final : public LGap {
358 explicit LInstructionGap(HBasicBlock* block) : LGap(block) {}
428 class LLabel final : public LGap {
430 explicit LLabel(HBasicBlock* block) : LGap(block), replacement_(NULL) {}
    [all...]
lithium-codegen-ppc.h 115 void DoGap(LGap* instr);
  /external/v8/src/crankshaft/s390/
lithium-s390.h 302 class LGap : public LTemplateInstruction<0, 0, 0> {
304 explicit LGap(HBasicBlock* block) : block_(block) {
314 static LGap* cast(LInstruction* instr) {
316 return reinterpret_cast<LGap*>(instr);
348 class LInstructionGap final : public LGap {
350 explicit LInstructionGap(HBasicBlock* block) : LGap(block) {}
413 class LLabel final : public LGap {
415 explicit LLabel(HBasicBlock* block) : LGap(block), replacement_(NULL) {}
    [all...]
lithium-codegen-s390.h 114 void DoGap(LGap* instr);
  /external/v8/src/crankshaft/x64/
lithium-x64.h 316 class LGap : public LTemplateInstruction<0, 0, 0> {
318 explicit LGap(HBasicBlock* block)
329 static LGap* cast(LInstruction* instr) {
331 return reinterpret_cast<LGap*>(instr);
365 class LInstructionGap final : public LGap {
367 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
439 class LLabel final : public LGap {
442 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-codegen-x64.h 103 void DoGap(LGap* instr);
  /external/v8/src/crankshaft/x87/
lithium-x87.h 317 class LGap : public LTemplateInstruction<0, 0, 0> {
319 explicit LGap(HBasicBlock* block) : block_(block) {
329 static LGap* cast(LInstruction* instr) {
331 return reinterpret_cast<LGap*>(instr);
364 class LInstructionGap final : public LGap {
366 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
444 class LLabel final : public LGap {
447 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-codegen-x87.h 140 void DoGap(LGap* instr);

Completed in 108 milliseconds

1 2