/external/v8/src/compiler/ |
D | instruction-selector-impl.h | 312 bool IsNone() const { return mode_ == kFlags_none; } in IsNone() function 316 DCHECK(!IsNone()); in condition() 333 DCHECK(!IsNone()); in Negate() 338 DCHECK(!IsNone()); in Commute()
|
/external/v8/src/crankshaft/ |
D | hydrogen-representation-changes.cc | 66 if (r.IsNone()) { in InsertRepresentationChangesForValue() 72 DCHECK(req.IsNone()); in InsertRepresentationChangesForValue() 86 if (req.IsNone() || req.Equals(r)) continue; in InsertRepresentationChangesForValue()
|
D | hydrogen-removable-simulates.cc | 31 !current_simulate->ast_id().IsNone()) { in Process() 74 } else if (current_simulate->ast_id().IsNone()) { in Process()
|
D | hydrogen-infer-representation.cc | 143 if (phi->representation().IsNone()) { in Run() 149 if (current->representation().IsNone() && in Run()
|
D | hydrogen-range-analysis.cc | 174 if (!value->representation().IsNone()) { in InferRange()
|
D | hydrogen-instructions.cc | 2760 DCHECK(!type.IsTaggedNumber() || type.IsNone()); in HConstant() 2833 if (r.IsNone()) { in Initialize() 3008 if (observed_output_representation_.IsNone()) { in InferRepresentation() 3370 if (rep.IsNone() || rep.IsSmiOrInteger32()) { in InferRepresentation() 4422 if (rep.IsNone()) { in RepresentationFromUseRequirements() 4426 if (use_rep.IsNone() || rep.Equals(use_rep)) continue; in RepresentationFromUseRequirements() 4442 if (!use_rep.IsNone() && in HasNonSmiUse()
|
D | lithium.cc | 529 DCHECK(!ast_id.IsNone() || in CreateEnvironment()
|
/external/v8/src/arm64/ |
D | assembler-arm64-inl.h | 90 DCHECK(!IsNone()); in IsValid() 93 DCHECK(IsNone()); in IsValid() 113 inline bool CPURegister::IsNone() const { in IsNone() function 150 return IsValid() || IsNone(); in IsValidOrNone() 193 if (!other1.IsNone() && (other1.type() == type_)) Remove(other1.code()); in Remove() 194 if (!other2.IsNone() && (other2.type() == type_)) Remove(other2.code()); in Remove() 195 if (!other3.IsNone() && (other3.type() == type_)) Remove(other3.code()); in Remove() 196 if (!other4.IsNone() && (other4.type() == type_)) Remove(other4.code()); in Remove() 1252 DCHECK(!recorded_ast_id_.IsNone());
|
D | assembler-arm64.h | 99 bool IsNone() const; 154 DCHECK(IsRegister() || IsNone()); in IsValid() 230 DCHECK(IsFPRegister() || IsNone()); in IsValid() 471 if (!other1.IsNone() && (other1.type() == type_)) list |= other1.Bit(); 472 if (!other2.IsNone() && (other2.type() == type_)) list |= other2.Bit(); 473 if (!other3.IsNone() && (other3.type() == type_)) list |= other3.Bit(); 474 if (!other4.IsNone() && (other4.type() == type_)) list |= other4.Bit(); 2066 DCHECK(recorded_ast_id_.IsNone()); in SetRecordedAstId()
|
D | macro-assembler-arm64.cc | 1130 DCHECK(src1.IsNone() && src2.IsNone() && src3.IsNone()); in PushHelper() 1134 DCHECK(src2.IsNone() && src3.IsNone()); in PushHelper() 1138 DCHECK(src3.IsNone()); in PushHelper() 1170 DCHECK(dst1.IsNone() && dst2.IsNone() && dst3.IsNone()); in PopHelper() 1174 DCHECK(dst2.IsNone() && dst3.IsNone()); in PopHelper() 1178 DCHECK(dst3.IsNone()); in PopHelper() 1363 if (fpcr.IsNone()) { in AssertFPCRState() 1976 if ((rmode == RelocInfo::CODE_TARGET) && (!ast_id.IsNone())) { in Call() 4546 DCHECK(args[i].IsNone()); in PrintfNoPreserve()
|
/external/vixl/src/vixl/a64/ |
D | macro-assembler-a64.cc | 1769 VIXL_ASSERT(src1.IsNone() && src2.IsNone() && src3.IsNone()); in PushHelper() 1773 VIXL_ASSERT(src2.IsNone() && src3.IsNone()); in PushHelper() 1777 VIXL_ASSERT(src3.IsNone()); in PushHelper() 1811 VIXL_ASSERT(dst1.IsNone() && dst2.IsNone() && dst3.IsNone()); in PopHelper() 1815 VIXL_ASSERT(dst2.IsNone() && dst3.IsNone()); in PopHelper() 1819 VIXL_ASSERT(dst3.IsNone()); in PopHelper() 2110 VIXL_ASSERT(args[i].IsNone()); in PrintfNoPreserve() 2436 VIXL_ASSERT(reg.IsNone()); in Release() 2518 VIXL_ASSERT(regs[i].IsNone()); in Exclude()
|
D | assembler-a64.h | 64 VIXL_ASSERT(IsNone()); in CPURegister() 130 VIXL_ASSERT(!IsNone()); in IsValid() 136 VIXL_ASSERT(IsNone()); in IsValid() 159 bool IsNone() const { in IsNone() function 235 return IsValid() || IsNone(); in IsValidOrNone() 251 VIXL_ASSERT(IsRegister() || IsNone()); in IsValid() 283 VIXL_ASSERT(IsVRegister() || IsNone()); in IsValid()
|
/external/v8/src/ |
D | property-details.h | 139 if (IsHeapObject()) return other.IsNone(); in is_more_general_than() 156 DCHECK(!IsNone()); in size() 170 bool IsNone() const { return kind_ == kNone; } in IsNone() function
|
D | types.cc | 758 if (type1->IsNone() || type2->IsAny()) return type1; // Shortcut. in Intersect() 759 if (type2->IsNone() || type1->IsAny()) return type2; // Shortcut. in Intersect() 983 if (type1->IsAny() || type2->IsNone()) return type1; in Union() 984 if (type2->IsAny() || type1->IsNone()) return type2; in Union() 1026 if (!range->IsNone()) result->Set(size++, range); in Union()
|
D | compiler.h | 160 bool is_osr() const { return !osr_ast_id_.IsNone(); } in is_osr()
|
/external/v8/src/ia32/ |
D | assembler-ia32-inl.h | 405 if (rmode == RelocInfo::CODE_TARGET && !id.IsNone()) { in emit() 407 } else if (!RelocInfo::IsNone(rmode) in emit() 429 if (!RelocInfo::IsNone(x.rmode_)) RecordRelocInfo(x.rmode_); in emit() 446 DCHECK(RelocInfo::IsNone(x.rmode_)); in emit_w()
|
D | assembler-ia32.cc | 195 if (disp == 0 && RelocInfo::IsNone(rmode) && !base.is(ebp)) { in Operand() 199 } else if (is_int8(disp) && RelocInfo::IsNone(rmode)) { in Operand() 220 if (disp == 0 && RelocInfo::IsNone(rmode) && !base.is(ebp)) { in Operand() 224 } else if (is_int8(disp) && RelocInfo::IsNone(rmode)) { in Operand() 1153 if (RelocInfo::IsNone(imm.rmode_) && is_uint8(imm.x_)) { in test() 1191 if (RelocInfo::IsNone(imm.rmode_) && is_uint8(imm.x_)) { in test() 2854 if (length >= sizeof(int32_t) && !RelocInfo::IsNone(adr.rmode_)) { in emit_operand() 2910 DCHECK(!RelocInfo::IsNone(rmode)); in RecordRelocInfo()
|
D | assembler-ia32.h | 277 bool is_zero() const { return x_ == 0 && RelocInfo::IsNone(rmode_); } in is_zero() 279 return -128 <= x_ && x_ < 128 && RelocInfo::IsNone(rmode_); in is_int8() 282 return -32768 <= x_ && x_ < 32768 && RelocInfo::IsNone(rmode_); in is_int16()
|
/external/v8/src/x87/ |
D | assembler-x87-inl.h | 406 if (rmode == RelocInfo::CODE_TARGET && !id.IsNone()) { in emit() 408 } else if (!RelocInfo::IsNone(rmode) in emit() 430 if (!RelocInfo::IsNone(x.rmode_)) RecordRelocInfo(x.rmode_); in emit() 447 DCHECK(RelocInfo::IsNone(x.rmode_)); in emit_w()
|
D | assembler-x87.cc | 110 if (disp == 0 && RelocInfo::IsNone(rmode) && !base.is(ebp)) { in Operand() 114 } else if (is_int8(disp) && RelocInfo::IsNone(rmode)) { in Operand() 135 if (disp == 0 && RelocInfo::IsNone(rmode) && !base.is(ebp)) { in Operand() 139 } else if (is_int8(disp) && RelocInfo::IsNone(rmode)) { in Operand() 1024 if (RelocInfo::IsNone(imm.rmode_) && is_uint8(imm.x_)) { in test() 1062 if (RelocInfo::IsNone(imm.rmode_) && is_uint8(imm.x_)) { in test() 2022 if (length >= sizeof(int32_t) && !RelocInfo::IsNone(adr.rmode_)) { in emit_operand() 2078 DCHECK(!RelocInfo::IsNone(rmode)); in RecordRelocInfo()
|
D | assembler-x87.h | 277 bool is_zero() const { return x_ == 0 && RelocInfo::IsNone(rmode_); } in is_zero() 279 return -128 <= x_ && x_ < 128 && RelocInfo::IsNone(rmode_); in is_int8() 282 return -32768 <= x_ && x_ < 32768 && RelocInfo::IsNone(rmode_); in is_int16()
|
/external/clang/unittests/AST/ |
D | ASTTypeTraitsTest.cpp | 29 TEST(ASTNodeKind, IsNone) { in TEST() argument
|
/external/v8/src/x64/ |
D | assembler-x64-inl.h | 38 if (!RelocInfo::IsNone(rmode)) { in emitp() 62 if (rmode == RelocInfo::CODE_TARGET && !ast_id.IsNone()) { in emit_code_target()
|
/external/v8/src/runtime/ |
D | runtime-compiler.cc | 242 DCHECK(!ast_id.IsNone()); in RUNTIME_FUNCTION()
|
/external/v8/src/ast/ |
D | ast.h | 388 DCHECK(!BailoutId(base_id_).IsNone()); in base_id() 445 DCHECK(!BailoutId(base_id_).IsNone()); in base_id() 1055 DCHECK(!BailoutId(base_id_).IsNone()); in base_id() 1185 DCHECK(!BailoutId(base_id_).IsNone()); in base_id() 1216 DCHECK(!BailoutId(base_id_).IsNone()); in base_id() 1287 DCHECK(!BailoutId(base_id_).IsNone()); in base_id()
|