Home
last modified time | relevance | path

Searched refs:kRepWord32 (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/v8/test/cctest/compiler/
Dtest-representation-change.cc92 static const MachineType all_reps[] = {kRepBit, kRepWord32, kRepWord64,
153 Node* c = r.changer()->GetRepresentationFor(n, kRepWord32 | kTypeInt32, in TEST()
160 Node* c = r.changer()->GetRepresentationFor(n, kRepWord32 | kTypeUint32, in TEST()
184 CheckChange(IrOpcode::kChangeInt32ToTagged, kRepWord32 | kTypeInt32, in TEST()
186 CheckChange(IrOpcode::kChangeUint32ToTagged, kRepWord32 | kTypeUint32, in TEST()
191 kRepWord32); in TEST()
193 kRepWord32); in TEST()
197 CheckChange(IrOpcode::kChangeInt32ToFloat64, kRepWord32 | kTypeInt32, in TEST()
199 CheckChange(IrOpcode::kChangeUint32ToFloat64, kRepWord32 | kTypeUint32, in TEST()
202 kRepWord32); in TEST()
[all …]
/external/chromium_org/v8/src/compiler/
Dmachine-type.h26 kRepWord32 = 1 << 3, enumerator
49 kMachInt32 = kRepWord32 | kTypeInt32,
50 kMachUint32 = kRepWord32 | kTypeUint32,
53 kMachPtr = (kPointerSize == 4) ? kRepWord32 : kRepWord64,
63 kRepWord32 | kRepWord64 | kRepFloat32 |
90 case kRepWord32: in ElementSizeOf()
Dsimplified-lowering.cc295 } else if (use_rep & kRepWord32) { in VisitPhi()
296 rep = kRepWord32; in VisitPhi()
309 rep = kRepWord32; in VisitPhi()
380 return VisitLeaf(node, kRepWord32); in VisitNode()
514 if ((in & kTypeMask) == kTypeInt32 || (in & kRepMask) == kRepWord32) { in VisitNode()
522 VisitUnop(node, kTypeInt32 | kRepFloat64, kTypeInt32 | kRepWord32); in VisitNode()
536 (in & kRepMask) == kRepWord32) { in VisitNode()
544 kTypeUint32 | kRepWord32); in VisitNode()
643 return VisitBinop(node, kRepWord32, kRepWord32 | kTypeUint32); in VisitNode()
652 return VisitBinop(node, kRepWord32, kRepWord32 | kTypeInt32); in VisitNode()
[all …]
Dmachine-type.cc25 PRINT(kRepWord32); in operator <<()
Dchange-lowering-unittest.cc44 bool Is32() const { return WordRepresentation() == kRepWord32; } in Is32()
47 case kRepWord32: in PointerSize()
180 ::testing::Values(kRepWord32, kRepWord64));
191 return kRepWord32; in WordRepresentation()
Dmachine-operator-unittest.cc43 const MachineType kMachineReps[] = {kRepWord32, kRepWord64};
50 kRepWord32, kRepWord64, kRepFloat32, kRepFloat64, kRepTagged};
281 MachineOperatorBuilder machine(kRepWord32); in TEST()
Drepresentation-change.h33 kRepBit | kRepWord8 | kRepWord16 | kRepWord32;
187 return TypeError(node, output_type, kRepWord32); in GetWord32RepresentationFor()
Dmachine-operator.h146 bool Is32() const { return word() == kRepWord32; } in Is32()
Dmachine-operator.cc195 DCHECK(word == kRepWord32 || word == kRepWord64); in MachineOperatorBuilder()
/external/chromium_org/v8/src/compiler/ia32/
Dinstruction-selector-ia32.cc67 case kRepWord32: in VisitLoad()
138 case kRepWord32: in VisitStore()
/external/chromium_org/v8/src/compiler/arm64/
Dinstruction-selector-arm64.cc184 case kRepWord32: in VisitLoad()
247 case kRepWord32: in VisitStore()
/external/chromium_org/v8/src/compiler/x64/
Dinstruction-selector-x64.cc81 case kRepWord32: in VisitLoad()
150 case kRepWord32: in VisitStore()
/external/chromium_org/v8/src/compiler/arm/
Dinstruction-selector-arm.cc307 case kRepWord32: in VisitLoad()
362 case kRepWord32: in VisitStore()