HomeSort by relevance Sort by last modified time
    Searched refs:kRepBit (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/v8/test/cctest/compiler/
test-representation-change.cc 92 static const MachineType all_reps[] = {kRepBit, kRepWord32, kRepWord64,
120 r.changer()->GetRepresentationFor(true_node, kRepTagged, kRepBit);
125 r.changer()->GetRepresentationFor(false_node, kRepTagged, kRepBit);
135 Node* val = r.changer()->GetRepresentationFor(node, kRepBit, kRepTagged);
181 CheckChange(IrOpcode::kChangeBoolToBit, kRepTagged, kRepBit);
182 CheckChange(IrOpcode::kChangeBitToBool, kRepBit, kRepTagged);
234 // 32-bit or 64-bit words can be used as branch conditions (kRepBit).
235 r.CheckNop(kRepWord32, kRepBit);
236 r.CheckNop(kRepWord32, kRepBit | kTypeBool);
237 r.CheckNop(kRepWord64, kRepBit);
    [all...]
test-simplified-lowering.cc 708 } else if (type & kRepBit) {
761 // BooleanNot(x: kRepBit) used as kRepBit
763 Node* b = t.ExampleWithOutput(kRepBit);
776 // BooleanNot(x: kRepBit) used as kRepTagged
778 Node* b = t.ExampleWithOutput(kRepBit);
793 // BooleanNot(x: kRepTagged) used as kRepBit
825 // BooleanToNumber(x: kRepBit) used as kMachInt32
827 Node* b = t.ExampleWithOutput(kRepBit);
852 // BooleanToNumber(x: kRepBit) used as kMachAnyTagge
    [all...]
call-tester.h 55 static MachineType Representation() { return kRepBit; }
  /external/chromium_org/v8/src/compiler/
machine-type.cc 22 PRINT(kRepBit);
representation-change.h 33 kRepBit | kRepWord8 | kRepWord16 | kRepWord32;
58 } else if (use_type & kRepBit) {
83 } else if (output_type & kRepBit) {
96 if (output_type & kRepBit) {
134 if (output_type & kRepBit) {
219 return TypeError(node, output_type, kRepBit);
225 if (output_type & kRepBit) {
machine-type.h 23 kRepBit = 1 << 0,
62 const MachineTypeUnion kRepMask = kRepBit | kRepWord8 | kRepWord16 |
85 case kRepBit:
simplified-lowering.cc 264 void VisitFloat64Cmp(Node* node) { VisitBinop(node, kMachFloat64, kRepBit); }
265 void VisitInt32Cmp(Node* node) { VisitBinop(node, kMachInt32, kRepBit); }
266 void VisitUint32Cmp(Node* node) { VisitBinop(node, kMachUint32, kRepBit); }
267 void VisitInt64Cmp(Node* node) { VisitBinop(node, kMachInt64, kRepBit); }
268 void VisitUint64Cmp(Node* node) { VisitBinop(node, kMachUint64, kRepBit); }
297 } else if (use_rep & kRepBit) {
298 rep = kRepBit;
311 rep = kRepBit;
401 ProcessInput(node, 0, kRepBit);
428 if (input & kRepBit) {
    [all...]
machine-operator-unittest.cc 49 kMachPtr, kMachAnyTagged, kRepBit, kRepWord8, kRepWord16,
  /external/chromium_org/v8/src/compiler/ia32/
instruction-selector-ia32.cc 59 case kRepBit: // Fall through.
117 } else if (rep == kRepWord8 || rep == kRepBit) {
130 case kRepBit: // Fall through.
  /external/chromium_org/v8/src/compiler/x64/
instruction-selector-x64.cc 74 case kRepBit: // Fall through.
130 } else if (rep == kRepWord8 || rep == kRepBit) {
143 case kRepBit: // Fall through.
  /external/chromium_org/v8/src/compiler/arm64/
instruction-selector-arm64.cc 175 case kRepBit: // Fall through.
238 case kRepBit: // Fall through.
  /external/chromium_org/v8/src/compiler/arm/
instruction-selector-arm.cc 299 case kRepBit: // Fall through.
354 case kRepBit: // Fall through.

Completed in 3725 milliseconds