Lines Matching defs:from
635 void WasmGraphBuilder::AppendToMerge(Node* merge, Node* from) {
637 merge->AppendInput(mcgraph()->zone(), from);
643 void WasmGraphBuilder::AppendToPhi(Node* phi, Node* from) {
646 phi->InsertInput(mcgraph()->zone(), phi->InputCount() - 1, from);
701 // For wasm functions, the IsolateRoot is loaded from the instance node so
1477 // stub. This code should only be called from a cctest.
2336 // function, and after calling the C function we collect the return value from
3089 // Load the imported function refs array from the instance.
3097 // Load the target from the imported_targets array at the offset of
3315 // Compute the call target from the (on-heap) wrapper code. The cached
3546 WasmInstanceCacheNodes* from,
3549 if (to->field != from->field) { \
3550 Node* vals[] = {to->field, from->field, merge}; \
3560 WasmInstanceCacheNodes* from,
3563 merge, to->mem_size, from->mem_size);
3565 merge, to->mem_start, from->mem_start);
3636 // CurrentMemoryPages can not be called from asm.js.
3658 // The CEntryStub is loaded from the IsolateRoot so that generated code is
3703 // Load the base from the ImportedMutableGlobalsBuffer of the instance.
3890 // We are loading tagged value from off-heap location, so we need to load
4368 // Parameters coming from JavaScript are always tagged values. Especially
6381 Param(i + 1); // Start from index 1 to drop the instance_node.
6441 // Treat i31 as externref because they are indistinguishable from
6648 // i64 values can only come from BigInt.
6819 // Load function index from {WasmExportedFunctionData}.
7004 // simplified-lowering and we need to add here a conversion from Float64
7280 // Start from the parameter with index 1 to drop the instance_node.
7481 // Load the original callable from the closure.
7509 Node* param = Param(i + 1); // Start from index 1 to skip receiver.
8675 wasm::ValueType from,
8679 std::count(sig->parameters().begin(), sig->parameters().end(), from);
8681 std::count(sig->returns().begin(), sig->returns().end(), from);
8689 if (ret == from) {
8697 if (param == from) {