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

  /external/v8/src/crankshaft/
lithium.cc 306 if (cur->IsGap()) {
374 return instructions_[index]->IsGap();
  /external/v8/src/crankshaft/arm/
lithium-arm.h 205 virtual bool IsGap() const { return false; }
322 bool IsGap() const override { return true; }
325 DCHECK(instr->IsGap());
    [all...]
lithium-codegen-arm.cc 237 if (!instr->IsLazyBailout() && !instr->IsGap()) {
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-arm64.h 216 virtual bool IsGap() const { return false; }
377 bool IsGap() const override { return true; }
380 DCHECK(instr->IsGap());
    [all...]
lithium-codegen-arm64.cc 672 if (!instr->IsLazyBailout() && !instr->IsGap()) {
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-ia32.h 208 virtual bool IsGap() const { return false; }
324 bool IsGap() const final { return true; }
327 DCHECK(instr->IsGap());
    [all...]
lithium-codegen-ia32.cc 248 if (!instr->IsLazyBailout() && !instr->IsGap()) {
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-mips.h 203 virtual bool IsGap() const { return false; }
320 bool IsGap() const final { return true; }
323 DCHECK(instr->IsGap());
    [all...]
lithium-codegen-mips.cc 251 if (!instr->IsLazyBailout() && !instr->IsGap()) {
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-mips64.h 206 virtual bool IsGap() const { return false; }
323 bool IsGap() const final { return true; }
326 DCHECK(instr->IsGap());
    [all...]
lithium-codegen-mips64.cc 227 if (!instr->IsLazyBailout() && !instr->IsGap()) {
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-ppc.h 203 virtual bool IsGap() const { return false; }
319 bool IsGap() const override { return true; }
322 DCHECK(instr->IsGap());
    [all...]
lithium-codegen-ppc.cc 238 if (!instr->IsLazyBailout() && !instr->IsGap()) {
    [all...]
  /external/v8/src/crankshaft/s390/
lithium-s390.h 199 virtual bool IsGap() const { return false; }
312 bool IsGap() const override { return true; }
315 DCHECK(instr->IsGap());
    [all...]
lithium-codegen-s390.cc 226 if (!instr->IsLazyBailout() && !instr->IsGap()) {
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-x64.h 204 virtual bool IsGap() const { return false; }
327 bool IsGap() const final { return true; }
330 DCHECK(instr->IsGap());
    [all...]
lithium-codegen-x64.cc 247 if (!instr->IsLazyBailout() && !instr->IsGap()) {
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-x87.h 207 virtual bool IsGap() const { return false; }
327 bool IsGap() const final { return true; }
330 DCHECK(instr->IsGap());
    [all...]
lithium-codegen-x87.cc 222 if (!instr->IsLazyBailout() && !instr->IsGap()) {
246 !instr->IsGap() && !instr->IsReturn()) {
    [all...]

Completed in 225 milliseconds