Home
last modified time | relevance | path

Searched refs:IsExactly (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/wasm/
Dasm-types.cc42 bool AsmType::IsExactly(AsmType* that) { in IsExactly() function in v8::internal::wasm::AsmType
215 if (!ReturnType()->IsExactly(return_type)) { in ValidateCall()
224 if (!Arguments()[0]->IsExactly(args[ii])) { in ValidateCall()
254 if (!return_type_->IsExactly(return_type)) { in ValidateCall()
263 if (!args_[ii]->IsExactly(args[ii])) { in ValidateCall()
Dasm-types.h269 bool IsExactly(AsmType* that);
/external/v8/test/unittests/wasm/
Dasm-types-unittest.cc238 TEST_F(AsmTypeTest, IsExactly) { in TEST_F() argument
255 EXPECT_EQ(ii == jj, test_types[ii]->IsExactly(test_types[jj])) in TEST_F()