Lines Matching defs:load
101 // Use MachineType::Pointer() over Tagged() to load root pointers because they
791 // them in contexts where load elimination would eliminate the reload.
792 // Therefore, we use plain Load nodes which are not subject to load
2451 Node* load = gasm_->LoadFromObject(int_ty, stack_slot, 0);
2454 return tl_d.Phi(int_ty.representation(), nan_val, load);
3201 // First we have to load the table.
3516 // them in contexts where load elimination would eliminate the reload.
3517 // Therefore, we use plain Load nodes which are not subject to load
3890 // We are loading tagged value from off-heap location, so we need to load
4036 Node* load;
4047 load = SetEffect(graph()->NewNode(
4052 SetSourcePosition(load, position);
4059 return load;
4069 Node* load;
4076 // Load extends always load 8 bytes.
4088 load = SetEffect(graph()->NewNode(
4093 SetSourcePosition(load, position);
4100 return load;
4107 Node* load;
4125 load = gasm_->LoadUnaligned(memtype, MemBuffer(capped_offset), index);
4128 load = gasm_->ProtectedLoad(memtype, MemBuffer(capped_offset), index);
4129 SetSourcePosition(load, position);
4132 load = gasm_->Load(memtype, MemBuffer(capped_offset), index);
4137 load = BuildChangeEndiannessLoad(load, memtype, type);
4143 load = memtype.IsSigned()
4144 ? gasm_->ChangeInt32ToInt64(load) // sign extend
4145 : gasm_->ChangeUint32ToUint64(load); // zero extend
4153 return load;
4243 Node* load = graph()->NewNode(mcgraph()->machine()->Load(type), mem_start,
4245 SetEffectControl(bounds_check.EffectPhi(load, effect()), bounds_check.merge);
4267 return bounds_check.Phi(type.representation(), load, oob_value);
5357 // Reverse the value bytes after load.