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

  /external/v8/src/crankshaft/
lithium.cc 313 if (cur->IsGap()) {
382 return instructions_[index]->IsGap();
  /external/v8/src/crankshaft/arm/
lithium-arm.h 213 virtual bool IsGap() const { return false; }
321 bool IsGap() const override { return true; }
324 DCHECK(instr->IsGap());
    [all...]
lithium-codegen-arm.cc 245 if (!instr->IsLazyBailout() && !instr->IsGap()) {
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-arm64.h 224 virtual bool IsGap() const { return false; }
376 bool IsGap() const override { return true; }
379 DCHECK(instr->IsGap());
    [all...]
lithium-codegen-arm64.cc 725 if (!instr->IsLazyBailout() && !instr->IsGap()) {
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-ia32.h 214 virtual bool IsGap() const { return false; }
321 bool IsGap() const final { return true; }
324 DCHECK(instr->IsGap());
    [all...]
lithium-codegen-ia32.cc 356 if (!instr->IsLazyBailout() && !instr->IsGap()) {
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-mips.h 210 virtual bool IsGap() const { return false; }
318 bool IsGap() const final { return true; }
321 DCHECK(instr->IsGap());
    [all...]
lithium-codegen-mips.cc 260 if (!instr->IsLazyBailout() && !instr->IsGap()) {
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-mips64.h 213 virtual bool IsGap() const { return false; }
321 bool IsGap() const final { return true; }
324 DCHECK(instr->IsGap());
    [all...]
lithium-codegen-mips64.cc 235 if (!instr->IsLazyBailout() && !instr->IsGap()) {
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-ppc.h 209 virtual bool IsGap() const { return false; }
316 bool IsGap() const override { return true; }
319 DCHECK(instr->IsGap());
    [all...]
lithium-codegen-ppc.cc 246 if (!instr->IsLazyBailout() && !instr->IsGap()) {
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-x64.h 210 virtual bool IsGap() const { return false; }
324 bool IsGap() const final { return true; }
327 DCHECK(instr->IsGap());
    [all...]
lithium-codegen-x64.cc 255 if (!instr->IsLazyBailout() && !instr->IsGap()) {
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-x87.h 215 virtual bool IsGap() const { return false; }
326 bool IsGap() const final { return true; }
329 DCHECK(instr->IsGap());
    [all...]
lithium-codegen-x87.cc 327 if (!instr->IsLazyBailout() && !instr->IsGap()) {
351 !instr->IsGap() && !instr->IsReturn()) {
    [all...]

Completed in 74 milliseconds