Searched refs:kRepWord32 (Results 1 – 13 of 13) sorted by relevance
/external/chromium_org/v8/test/cctest/compiler/ |
D | test-representation-change.cc | 92 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/ |
D | machine-type.h | 26 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()
|
D | simplified-lowering.cc | 295 } 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 …]
|
D | machine-type.cc | 25 PRINT(kRepWord32); in operator <<()
|
D | change-lowering-unittest.cc | 44 bool Is32() const { return WordRepresentation() == kRepWord32; } in Is32() 47 case kRepWord32: in PointerSize() 180 ::testing::Values(kRepWord32, kRepWord64)); 191 return kRepWord32; in WordRepresentation()
|
D | machine-operator-unittest.cc | 43 const MachineType kMachineReps[] = {kRepWord32, kRepWord64}; 50 kRepWord32, kRepWord64, kRepFloat32, kRepFloat64, kRepTagged}; 281 MachineOperatorBuilder machine(kRepWord32); in TEST()
|
D | representation-change.h | 33 kRepBit | kRepWord8 | kRepWord16 | kRepWord32; 187 return TypeError(node, output_type, kRepWord32); in GetWord32RepresentationFor()
|
D | machine-operator.h | 146 bool Is32() const { return word() == kRepWord32; } in Is32()
|
D | machine-operator.cc | 195 DCHECK(word == kRepWord32 || word == kRepWord64); in MachineOperatorBuilder()
|
/external/chromium_org/v8/src/compiler/ia32/ |
D | instruction-selector-ia32.cc | 67 case kRepWord32: in VisitLoad() 138 case kRepWord32: in VisitStore()
|
/external/chromium_org/v8/src/compiler/arm64/ |
D | instruction-selector-arm64.cc | 184 case kRepWord32: in VisitLoad() 247 case kRepWord32: in VisitStore()
|
/external/chromium_org/v8/src/compiler/x64/ |
D | instruction-selector-x64.cc | 81 case kRepWord32: in VisitLoad() 150 case kRepWord32: in VisitStore()
|
/external/chromium_org/v8/src/compiler/arm/ |
D | instruction-selector-arm.cc | 307 case kRepWord32: in VisitLoad() 362 case kRepWord32: in VisitStore()
|