Home
last modified time | relevance | path

Searched refs:kRepBit (Results 1 – 12 of 12) sorted by relevance

/external/v8/test/cctest/compiler/
Dtest-representation-change.cc92 static const MachineType all_reps[] = {kRepBit, kRepWord32, kRepWord64,
120 r.changer()->GetRepresentationFor(true_node, kRepTagged, kRepBit); in TEST()
125 r.changer()->GetRepresentationFor(false_node, kRepTagged, kRepBit); in TEST()
135 Node* val = r.changer()->GetRepresentationFor(node, kRepBit, kRepTagged); in TEST()
181 CheckChange(IrOpcode::kChangeBoolToBit, kRepTagged, kRepBit); in TEST()
182 CheckChange(IrOpcode::kChangeBitToBool, kRepBit, kRepTagged); in TEST()
235 r.CheckNop(kRepWord32, kRepBit); in TEST()
236 r.CheckNop(kRepWord32, kRepBit | kTypeBool); in TEST()
237 r.CheckNop(kRepWord64, kRepBit); in TEST()
238 r.CheckNop(kRepWord64, kRepBit | kTypeBool); in TEST()
[all …]
Dtest-simplified-lowering.cc708 } else if (type & kRepBit) { in ExampleWithOutput()
763 Node* b = t.ExampleWithOutput(kRepBit); in TEST()
778 Node* b = t.ExampleWithOutput(kRepBit); in TEST()
827 Node* b = t.ExampleWithOutput(kRepBit); in TEST()
854 Node* b = t.ExampleWithOutput(kRepBit); in TEST()
1296 kRepBit, kMachInt8, kMachInt16, kMachInt32,
Dcall-tester.h55 static MachineType Representation() { return kRepBit; }
/external/v8/src/compiler/
Dsimplified-lowering.cc264 void VisitFloat64Cmp(Node* node) { VisitBinop(node, kMachFloat64, kRepBit); } in VisitFloat64Cmp()
265 void VisitInt32Cmp(Node* node) { VisitBinop(node, kMachInt32, kRepBit); } in VisitInt32Cmp()
266 void VisitUint32Cmp(Node* node) { VisitBinop(node, kMachUint32, kRepBit); } in VisitUint32Cmp()
267 void VisitInt64Cmp(Node* node) { VisitBinop(node, kMachInt64, kRepBit); } in VisitInt64Cmp()
268 void VisitUint64Cmp(Node* node) { VisitBinop(node, kMachUint64, kRepBit); } in VisitUint64Cmp()
297 } else if (use_rep & kRepBit) { in VisitPhi()
298 rep = kRepBit; in VisitPhi()
311 rep = kRepBit; in VisitPhi()
401 ProcessInput(node, 0, kRepBit); in VisitNode()
428 if (input & kRepBit) { in VisitNode()
[all …]
Drepresentation-change.h33 kRepBit | kRepWord8 | kRepWord16 | kRepWord32;
58 } else if (use_type & kRepBit) { in GetRepresentationFor()
83 } else if (output_type & kRepBit) { in GetTaggedRepresentationFor()
96 if (output_type & kRepBit) { in GetTaggedRepresentationFor()
134 if (output_type & kRepBit) { in GetFloat64RepresentationFor()
219 return TypeError(node, output_type, kRepBit); in GetBitRepresentationFor()
225 if (output_type & kRepBit) { in GetWord64RepresentationFor()
Dmachine-type.h23 kRepBit = 1 << 0, enumerator
62 const MachineTypeUnion kRepMask = kRepBit | kRepWord8 | kRepWord16 |
85 case kRepBit: in ElementSizeOf()
Dmachine-type.cc22 PRINT(kRepBit); in operator <<()
Dmachine-operator-unittest.cc49 kMachPtr, kMachAnyTagged, kRepBit, kRepWord8, kRepWord16,
/external/v8/src/compiler/ia32/
Dinstruction-selector-ia32.cc59 case kRepBit: // Fall through. in VisitLoad()
117 } else if (rep == kRepWord8 || rep == kRepBit) { in VisitStore()
130 case kRepBit: // Fall through. in VisitStore()
/external/v8/src/compiler/x64/
Dinstruction-selector-x64.cc74 case kRepBit: // Fall through. in VisitLoad()
130 } else if (rep == kRepWord8 || rep == kRepBit) { in VisitStore()
143 case kRepBit: // Fall through. in VisitStore()
/external/v8/src/compiler/arm64/
Dinstruction-selector-arm64.cc175 case kRepBit: // Fall through. in VisitLoad()
238 case kRepBit: // Fall through. in VisitStore()
/external/v8/src/compiler/arm/
Dinstruction-selector-arm.cc299 case kRepBit: // Fall through. in VisitLoad()
354 case kRepBit: // Fall through. in VisitStore()