Home
last modified time | relevance | path

Searched full:bot (Results 1 – 18 of 18) sorted by relevance

/arkcompiler/runtime_core/verification/type/tests/
Dtype_system_test.cpp45 auto bot = typesystem.Bot(); in TEST_F() local
60 auto top_method_of3args = method(-bot >> -bot >> +top); in TEST_F()
61 auto bot_method_of3args = method(-top >> -top >> +bot); in TEST_F()
71 EXPECT_TRUE(bot <= i8); in TEST_F()
72 EXPECT_TRUE(bot <= u64); in TEST_F()
116 auto bot = typesystem.Bot(); in TEST_F() local
131 auto top_method_of3args = method(-bot >> -bot >> +top); in TEST_F()
132 auto bot_method_of3args = method(-top >> -top >> +bot); in TEST_F()
196 In current Panda type system design with Top and Bot, this issue is not in TEST_F()
/arkcompiler/runtime_core/verification/models/contexts_merge/
Djava_typing.als20 one sig Bot extends Type {} { no Bot.@subtypes }
26 let ProperType = Type - Top - Bot - NullType
32 all t: ProperType + NullType | t in Bot.~subtypes and t in Top.subtypes
Dcheck_set_intersection_as_lub.als87 -- Sig java_typing/Bot scope <= 1
97 -- Sig java_typing/Type in [[java_typing/Top$0], [java_typing/Bot$0], [java_typing/Object$0], [j…
99 -- Sig java_typing/Bot == [[java_typing/Bot$0]]
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcircuit_optimizer.cpp43 return GetStatus() == LatticeStatus::BOT; in IsBot()
68 return ValueLattice(LatticeStatus::BOT); in Meet()
72 return ValueLattice(LatticeStatus::BOT); in Meet()
139 os << "BOT"; in Print()
544 return UpdateValueLattice(gate, ValueLattice(LatticeStatus::BOT)); in RunDependEntry()
700 value = ValueLattice(LatticeStatus::BOT); in RunDependSelector()
710 value = ValueLattice(LatticeStatus::BOT); in RunDependRelay()
717 ValueLattice value = ValueLattice(LatticeStatus::BOT); in RunDependAnd()
730 … UpdateValueLattice(gate, reachabilityLatticeMap_(gate).Implies(ValueLattice(LatticeStatus::BOT))); in RunJSBytecode()
748 ValueLattice(LatticeStatus::BOT))); in RunGetException()
[all …]
Dcircuit_optimizer.h29 BOT, enumerator
/arkcompiler/runtime_core/verification/type/
Dtype_sort.h27 SortNames(const PandaString &bot, const PandaString &top) in SortNames() argument
29 operator[](bot); in SortNames()
Dtype_system.h66 6. There are special initial and final types, named as Bot and Top, and all types are implicitly re…
67 as Bot <: type <: Top
72 …TypeSystem(SortIdx bot, SortIdx top, ThreadNum threadnum = 0, TypeSystemKind kind = TypeSystemKind…
75 BotNum_ {FindNumOrCreate({bot, {}})},
357 Type Bot() const in Bot() function
Dtype_systems.cpp38 : sort_ {"Bot", "Top"}, in FullTypeSystem()
40 bot_sort_ {sort_["Bot"]},
Dtype_type.cpp143 return GetTypeSystem().Bot() == *this; in IsBot()
/arkcompiler/runtime_core/verification/value/tests/
Dabstract_typed_value_test.cpp30 SortNames sort {"Bot", "Top"}; in TEST_F()
31 TypeSystem type_system {sort["Bot"], sort["Top"]}; in TEST_F()
/arkcompiler/runtime_core/verification/absint/tests/
Dreg_context_test.cpp33 SortNames sort {"Bot", "Top"}; in TEST_F()
34 TypeSystem type_system {sort["Bot"], sort["Top"]}; in TEST_F()
Dexec_context_test.cpp36 SortNames sort {"Bot", "Top"}; in TEST_F()
37 TypeSystem type_system {sort["Bot"], sort["Top"]}; in TEST_F()
/arkcompiler/runtime_core/docs/bc_verification/
Dtypes_n_values.md73 - `Bot` - is a subtype of all types
76 So for every type `Bot <: T <: Top`
Dtype_system.md9 - Bot() - subtype of all types, subtyping relation is made implicitly upon type creation.
/arkcompiler/runtime_core/verification/absint/
Dpanda_types.h99 Type Bot() const in Bot() function
101 return TypeSystem_.Bot(); in Bot()
Dabs_int_inl.h3365 LOG_VERIFIER_CALL_FORMAL_ACTUAL_BOTH_BOT_OR_TOP("Bot"); in CheckMethodArgs()
/arkcompiler/runtime_core/verification/
Dmessages.yaml357 …Cannot make a call to '${name}'. Formal parameter is of type 'Bot', but actual parameter is of typ…
/arkcompiler/ets_runtime/ecmascript/regexp/tests/
Dregexp_test.cpp1800 CString source("\\bot"); in HWTEST_F_L0()