/third_party/node/deps/v8/src/compiler/ |
H A D | simplified-operator-reducer.cc | 27 return IsSmiDouble(m.ResolvedValue()) ? Decision::kTrue : Decision::kFalse; in DecideObjectIsSmi() 29 if (m.IsAllocate()) return Decision::kFalse; in DecideObjectIsSmi() 30 if (m.IsChangeBitToTagged()) return Decision::kFalse; in DecideObjectIsSmi() 32 if (m.IsHeapConstant()) return Decision::kFalse; in DecideObjectIsSmi() 185 if (DecideObjectIsSmi(input) == Decision::kFalse) { in Reduce() 217 case Decision::kFalse: in Reduce()
|
H A D | common-operator-reducer.cc | 76 return m.ResolvedValue() ? Decision::kTrue : Decision::kFalse; in DecideCondition() 85 return *maybe_result ? Decision::kTrue : Decision::kFalse; in DecideCondition() 102 DecideCondition(cond->InputAt(1)) == Decision::kFalse && in ReduceBranch() 134 Replace(use, (decision == Decision::kFalse) ? control : dead()); in ReduceBranch() 398 case Decision::kFalse: in ReduceSelect()
|
H A D | raw-machine-assembler.cc | 458 if (parameters.hint() != BranchHint::kFalse) { in MarkControlDeferred() 462 BranchHint::kFalse)); in MarkControlDeferred() 467 if (BranchHintOf(control_node->op()) != BranchHint::kFalse) { in MarkControlDeferred() 469 common()->IfDefault(BranchHint::kFalse)); in MarkControlDeferred() 481 new_branch_hint = BranchHint::kFalse; in MarkControlDeferred() 488 if (hint == BranchHint::kFalse) { in MarkControlDeferred()
|
H A D | common-operator.h | 43 enum class BranchHint : uint8_t { kNone, kTrue, kFalse }; 50 return BranchHint::kFalse; in NegateBranchHint() 51 case BranchHint::kFalse: in NegateBranchHint()
|
H A D | graph-reducer.h | 30 enum class Decision : uint8_t { kUnknown, kTrue, kFalse };
|
H A D | scheduler.cc | 484 hint_from_profile = BranchHint::kFalse; in ConnectBranch() 497 case BranchHint::kFalse: in ConnectBranch() 505 case BranchHint::kFalse: in ConnectBranch() 553 BranchHint::kFalse) { in ConnectSwitch()
|
H A D | wasm-compiler.cc | 245 ? AllowLargeObjects::kFalse in Allocate() 1433 return gasm_->Branch(cond, true_node, false_node, BranchHint::kFalse); in BranchExpectFalse() 2186 Diamond tl_d(graph(), mcgraph()->common(), test, BranchHint::kFalse); in BuildIntConvertFloat() member in v8::internal::compiler::BranchHint 2189 Diamond nan_d(graph(), mcgraph()->common(), nan_test, BranchHint::kFalse); in BuildIntConvertFloat() member in v8::internal::compiler::BranchHint 2441 Diamond tl_d(graph(), mcgraph()->common(), test, BranchHint::kFalse); in BuildCcallConvertFloat() member in v8::internal::compiler::BranchHint 2444 Diamond nan_d(graph(), mcgraph()->common(), nan_test, BranchHint::kFalse); in BuildCcallConvertFloat() member in v8::internal::compiler::BranchHint 2707 gasm_->Word32Equal(right, Int32Constant(-1)), BranchHint::kFalse); in BuildI32RemS() member in v8::internal::compiler::BranchHint 2748 gasm_->Word32Equal(right, Int32Constant(0)), BranchHint::kFalse); in BuildI32AsmjsDivS() member in v8::internal::compiler::BranchHint 2753 gasm_->Word32Equal(right, Int32Constant(-1)), BranchHint::kFalse); in BuildI32AsmjsDivS() member in v8::internal::compiler::BranchHint 2822 graph()->NewNode(c->Branch(BranchHint::kFalse), check in BuildI32AsmjsRemS() 2872 gasm_->Word32Equal(right, Int32Constant(0)), BranchHint::kFalse); BuildI32AsmjsDivU() member in v8::internal::compiler::BranchHint 2884 gasm_->Word32Equal(right, Int32Constant(0)), BranchHint::kFalse); BuildI32AsmjsRemU() member in v8::internal::compiler::BranchHint [all...] |
H A D | js-call-reducer.cc | 132 hint_ = BranchHint::kFalse; in ExpectFalse() 157 auto if_true = (hint_ == BranchHint::kFalse) ? gasm_->MakeDeferredLabel() in ~IfBuilder0() 208 hint_ = BranchHint::kFalse; in ExpectFalse() 224 auto if_true = (hint_ == BranchHint::kFalse) ? gasm_->MakeDeferredLabel() in Value() 757 BranchHint::kFalse, vars...); in MaybeSkipHole() member in v8::IteratingArrayBuiltinReducerAssembler::BranchHint 1221 GotoIf(search_string_too_long, &out, BranchHint::kFalse, FalseConstant()); 1264 GotoIf(search_string_too_long, &out, BranchHint::kFalse, FalseConstant()); 2625 control = graph()->NewNode(common()->Branch(BranchHint::kFalse), check_null, 2634 control = graph()->NewNode(common()->Branch(BranchHint::kFalse), 5369 graph()->NewNode(common()->Branch(BranchHint::kFalse), chec [all...] |
H A D | simplified-operator.h | 596 AllowLargeObjects allow_large_objects = AllowLargeObjects::kFalse) in AllocateParameters() 991 AllowLargeObjects allow_large_objects = AllowLargeObjects::kFalse);
|
H A D | graph-assembler.h | 700 hint = if_false->IsDeferred() ? BranchHint::kTrue : BranchHint::kFalse; in Branch() 773 label->IsDeferred() ? BranchHint::kFalse : BranchHint::kNone; in GotoIf()
|
H A D | js-typed-lowering.cc | 1207 graph()->NewNode(common()->Branch(BranchHint::kFalse), check0, control); in ReduceJSHasInPrototypeChain() 1239 graph()->NewNode(common()->Branch(BranchHint::kFalse), check1, control); in ReduceJSHasInPrototypeChain() 2243 graph()->NewNode(common()->Branch(BranchHint::kFalse), check, control); in ReduceObjectIsArray() 2277 graph()->NewNode(common()->Branch(BranchHint::kFalse), check, control); in ReduceObjectIsArray()
|
H A D | graph-assembler.cc | 562 hint = if_false->IsDeferred() ? BranchHint::kTrue : BranchHint::kFalse; in BranchWithCriticalSafetyCheck()
|
H A D | machine-operator-reducer.cc | 201 BranchHint::kFalse); in Float64PowHalf() member in v8::internal::compiler::BranchHint 1213 BranchHint::kFalse); in ReduceInt32Mod() member in v8::internal::compiler::BranchHint
|
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/ |
H A D | marshalling.cc | 47 const char* kFalse[] = {"0", "f", "false", "n", "no"}; in AbslParseFlag() local 48 static_assert(sizeof(kTrue) == sizeof(kFalse), "true_false_equal"); in AbslParseFlag() 56 } else if (absl::EqualsIgnoreCase(text, kFalse[i])) { in AbslParseFlag()
|
/third_party/node/deps/v8/src/objects/ |
H A D | js-collator.cc | 44 enum class CaseFirst { kUndefined, kUpper, kLower, kFalse }; 50 {CaseFirst::kUpper, CaseFirst::kLower, CaseFirst::kFalse}, in GetCaseFirst() 242 if (strcmp(str, "false") == 0) return CaseFirst::kFalse; in ToCaseFirst() 252 case CaseFirst::kFalse: in ToUColAttributeValue()
|
H A D | oddball.h | 61 static const byte kFalse = 0; member in v8::internal::Oddball
|
H A D | value-serializer.cc | 102 kFalse = 'F', member in v8::internal::SerializationTag 484 case Oddball::kFalse: in WriteOddball() 485 tag = SerializationTag::kFalse; in WriteOddball() 1456 case SerializationTag::kFalse: in ReadObjectInternal()
|
/third_party/skia/third_party/externals/tint/src/reader/wgsl/ |
H A D | token.h | 151 kFalse, member in tint::reader::wgsl::Token::Type 383 return type_ == Type::kSintLiteral || type_ == Type::kFalse || in IsLiteral()
|
H A D | token.cc | 142 case Token::Type::kFalse: in TypeToName()
|
H A D | lexer.cc | 950 return {Token::Type::kFalse, source, "false"}; in check_keyword()
|
H A D | lexer_test.cc | 626 TokenData{"false", Token::Type::kFalse},
|
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-macro-assembler.cc | 190 static constexpr uint32_t kFalse = 0; in IsCharacterInRangeArray() local 199 if (current_char < ranges.get_uint16(0)) return kFalse; in IsCharacterInRangeArray() 202 return (length % 2) == 0 ? kFalse : kTrue; in IsCharacterInRangeArray() 228 return (current_range_start_index % 2) == 0 ? kTrue : kFalse; in IsCharacterInRangeArray()
|
/third_party/node/deps/v8/src/heap/ |
H A D | setup-heap-internal.cc | 609 Oddball::cast(obj).set_kind(Oddball::kFalse); in CreateInitialMaps() 723 Oddball::kFalse); in CreateInitialObjects() member in v8::internal::Oddball
|
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/ |
H A D | mutex_test.cc | 226 const bool kFalse = false; in TestTime() local 227 absl::Condition false_cond(&kFalse); in TestTime()
|
/third_party/node/deps/v8/src/common/ |
H A D | globals.h | 904 enum class AllowLargeObjects { kFalse, kTrue }; member in v8::internal::AllowLargeObjects
|