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 308 LGap* gap = LGap::cast(cur);
369 LGap* LChunk::GetGapAt(int index) const {
370 return LGap::cast(instructions_[index]);
387 LGap::START, zone())->AddMove(from, to, zone());
lithium-allocator.cc 664 LGap* LAllocator::GetLastGap(HBasicBlock* block) {
733 LGap* gap = GapAt(index);
734 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::START,
811 LGap* gap = GapAt(gap_index);
812 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::BEFORE,
897 LGap* gap = GapAt(index);
898 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 303 class LGap : public LTemplateInstruction<0, 0, 0> {
305 explicit LGap(HBasicBlock* block)
316 static LGap* cast(LInstruction* instr) {
318 return reinterpret_cast<LGap*>(instr);
351 class LInstructionGap final : public LGap {
353 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
425 class LLabel final : public LGap {
428 : 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 358 class LGap : public LTemplateInstruction<0, 0, 0> {
360 explicit LGap(HBasicBlock* block)
371 static LGap* cast(LInstruction* instr) {
373 return reinterpret_cast<LGap*>(instr);
406 class LInstructionGap final : public LGap {
408 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
485 class LLabel final : public LGap {
488 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-codegen-arm64.h 137 void DoGap(LGap* instr);
lithium-arm64.cc 46 LGap::PrintDataTo(stream);
204 bool LGap::IsRedundant() const {
215 void LGap::PrintDataTo(StringStream* stream) {
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-ia32.h 306 class LGap : public LTemplateInstruction<0, 0, 0> {
308 explicit LGap(HBasicBlock* block) : block_(block) {
318 static LGap* cast(LInstruction* instr) {
320 return reinterpret_cast<LGap*>(instr);
353 class LInstructionGap final : public LGap {
355 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
422 class LLabel final : public LGap {
425 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-codegen-ia32.h 105 void DoGap(LGap* instr);
  /external/v8/src/crankshaft/mips/
lithium-mips.h 301 class LGap : public LTemplateInstruction<0, 0, 0> {
303 explicit LGap(HBasicBlock* block)
314 static LGap* cast(LInstruction* instr) {
316 return reinterpret_cast<LGap*>(instr);
349 class LInstructionGap final : public LGap {
351 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
423 class LLabel final : public LGap {
426 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-codegen-mips.h 118 void DoGap(LGap* instr);
  /external/v8/src/crankshaft/mips64/
lithium-mips64.h 304 class LGap : public LTemplateInstruction<0, 0, 0> {
306 explicit LGap(HBasicBlock* block)
317 static LGap* cast(LInstruction* instr) {
319 return reinterpret_cast<LGap*>(instr);
352 class LInstructionGap final : public LGap {
354 explicit LInstructionGap(HBasicBlock* block) : LGap(block) { }
426 class LLabel final : public LGap {
429 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-codegen-mips64.h 120 void DoGap(LGap* instr);
  /external/v8/src/crankshaft/ppc/
lithium-ppc.h 301 class LGap : public LTemplateInstruction<0, 0, 0> {
303 explicit LGap(HBasicBlock* block) : block_(block) {
313 static LGap* cast(LInstruction* instr) {
315 return reinterpret_cast<LGap*>(instr);
348 class LInstructionGap final : public LGap {
350 explicit LInstructionGap(HBasicBlock* block) : LGap(block) {}
420 class LLabel final : public LGap {
422 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 293 class LGap : public LTemplateInstruction<0, 0, 0> {
295 explicit LGap(HBasicBlock* block) : block_(block) {
305 static LGap* cast(LInstruction* instr) {
307 return reinterpret_cast<LGap*>(instr);
339 class LInstructionGap final : public LGap {
341 explicit LInstructionGap(HBasicBlock* block) : LGap(block) {}
404 class LLabel final : public LGap {
406 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 308 class LGap : public LTemplateInstruction<0, 0, 0> {
310 explicit LGap(HBasicBlock* block)
321 static LGap* cast(LInstruction* instr) {
323 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-x64.h 103 void DoGap(LGap* instr);
  /external/v8/src/crankshaft/x87/
lithium-x87.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) { }
436 class LLabel final : public LGap {
439 : LGap(block), replacement_(NULL) { }
    [all...]
lithium-codegen-x87.h 140 void DoGap(LGap* instr);

Completed in 2608 milliseconds

1 2