Lines Matching defs:rep

278   Node* LoadImmutable(LoadRepresentation rep, Node* base, Node* offset) {
279 return AddNode(graph()->NewNode(mcgraph()->machine()->LoadImmutable(rep),
283 Node* LoadImmutable(LoadRepresentation rep, Node* base, int offset) {
284 return LoadImmutable(rep, base, IntPtrConstant(offset));
3536 #define INTRODUCE_PHI(field, rep) \
3537 instance_cache->field = graph()->NewNode(mcgraph()->common()->Phi(rep, 1), \
3548 #define INTRODUCE_PHI(field, rep) \
3551 to->field = graph()->NewNode(mcgraph()->common()->Phi(rep, 2), 3, vals); \
3568 Node* WasmGraphBuilder::CreateOrMergeIntoPhi(MachineRepresentation rep,
3582 tnode = graph()->NewNode(mcgraph()->common()->Phi(rep, count), count + 1,
3904 MachineRepresentation rep = type.machine_representation();
3905 if (COMPRESS_POINTERS_BOOL && IsAnyTagged(rep)) {
3908 rep = MachineType::PointerRepresentation();
3910 if (alignment == 0 || mcgraph()->machine()->UnalignedStoreSupported(rep)) {
3911 StoreRepresentation store_rep(rep, WriteBarrierKind::kNoWriteBarrier);
3914 UnalignedStoreRepresentation store_rep(rep);
3929 MachineRepresentation rep = return_type.machine_representation();
3930 int size = ElementSizeInBytes(rep);
3933 gasm_->Store(StoreRepresentation(rep, kNoWriteBarrier), info,
3942 MachineRepresentation rep,
3950 auto store = [&](int field_offset, MachineRepresentation rep, Node* data) {
3951 gasm_->Store(StoreRepresentation(rep, kNoWriteBarrier), info,
3960 MachineRepresentation::kWord8, Int32Constant(static_cast<int>(rep)));
7053 MachineRepresentation rep) {
7056 auto resume = gasm_->MakeLabel(rep);
7145 MachineRepresentation rep =
7149 call = BuildSuspend(call, Param(0), rep);
8531 LinkageLocation Next(MachineRepresentation rep) {
8532 MachineType type = MachineType::TypeForRepresentation(rep);
8533 if (IsFloatingPoint(rep)) {
8534 if (allocator_.CanAllocateFP(rep)) {
8535 int reg_code = allocator_.NextFpReg(rep);
8543 int index = -1 - (slot_offset_ + allocator_.NextStackSlot(rep));