HomeSort by relevance Sort by last modified time
    Searched refs:CheckFlag (Results 1 - 25 of 34) sorted by null

1 2

  /external/v8/src/crankshaft/
hydrogen-mark-deoptimize.cc 14 if (phi->CheckFlag(HValue::kAllowUndefinedAsNaN) &&
23 DCHECK(phi->CheckFlag(HValue::kAllowUndefinedAsNaN));
35 if (input->IsPhi() && input->CheckFlag(HValue::kAllowUndefinedAsNaN)) {
hydrogen-dce.cc 12 if (instr->CheckFlag(HValue::kIsLive)) return; // Already live.
23 if (!input->CheckFlag(HValue::kIsLive)) {
74 if (!instr->CheckFlag(HValue::kIsLive)) {
85 if (!phi->CheckFlag(HValue::kIsLive)) {
hydrogen-uint32-analysis.cc 82 if (!use->CheckFlag(HInstruction::kUint32)) {
103 if (use->IsPhi() && !use->CheckFlag(HInstruction::kUint32)) {
116 if (!phi->CheckFlag(HInstruction::kUint32)) {
123 if (!operand->CheckFlag(HInstruction::kUint32)) {
147 if (operand->CheckFlag(HInstruction::kUint32)) {
hydrogen-redundant-phi.cc 47 if (phi->CheckFlag(HValue::kIsDead)) continue; // Already replaced.
56 updated |= value->IsPhi() && !value->CheckFlag(HValue::kIsDead);
hydrogen-infer-representation.cc 12 if (!current->CheckFlag(HValue::kFlexibleRepresentation)) return;
69 phi_list->at(index)->CheckFlag(HInstruction::kTruncatingToInt32);
71 phi_list->at(index)->CheckFlag(HInstruction::kTruncatingToSmi);
150 current->CheckFlag(HInstruction::kFlexibleRepresentation)) {
151 if (current->CheckFlag(HInstruction::kCannotBeTagged)) {
hydrogen-representation-changes.cc 25 bool is_truncating_to_smi = use_value->CheckFlag(HValue::kTruncatingToSmi);
26 bool is_truncating_to_int = use_value->CheckFlag(HValue::kTruncatingToInt32);
58 DCHECK(!change->CheckFlag(HValue::kUint32));
167 input->CheckFlag(HValue::kTruncatingToInt32)) {
184 input->CheckFlag(HValue::kTruncatingToSmi)) {
hydrogen-instructions.cc 52 if (CheckFlag(kFlexibleRepresentation)) {
62 DCHECK(CheckFlag(kFlexibleRepresentation));
86 (use->CheckFlag(kTruncatingToInt32) ? "-trunc" : ""));
104 if (CheckFlag(kCannotBeTagged) && new_rep.IsTagged()) return;
317 while (tail_ != NULL && tail_->value()->CheckFlag(HValue::kIsDead)) {
327 if (!it.value()->CheckFlag(f)) return false;
336 if (!it.value()->CheckFlag(f)) {
349 if (!it.value()->CheckFlag(f)) return false;
509 if (first != NULL && first->value()->CheckFlag(kIsDead)) {
620 if (CheckFlag(HValue::kHasNoObservableSideEffects)) os << " [noOSE]"
    [all...]
hydrogen-store-elimination.cc 37 if (instr->CheckFlag(HValue::kIsDead)) continue;
  /external/lzma/C/
CpuArch.c 19 static UInt32 CheckFlag(UInt32 flag)
52 #define CHECK_CPUID_IS_SUPPORTED if (CheckFlag(1 << 18) == 0 || CheckFlag(1 << 21) == 0) return False;
  /external/v8/src/crankshaft/ppc/
lithium-ppc.cc 712 does_deopt = !instr->CheckFlag(HInstruction::kUint32);
    [all...]
lithium-codegen-ppc.cc 939 if (hmod->CheckFlag(HValue::kLeftCanBeNegative)) {
947 if (hmod->CheckFlag(HValue::kBailoutOnMinusZero)) {
950 } else if (!hmod->CheckFlag(HValue::kBailoutOnMinusZero)) {
986 if (hmod->CheckFlag(HValue::kBailoutOnMinusZero))
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-arm.cc 701 does_deopt = !instr->CheckFlag(HInstruction::kUint32);
    [all...]
lithium-codegen-arm.cc     [all...]
  /external/v8/src/crankshaft/ia32/
lithium-ia32.cc 739 does_deopt = !instr->CheckFlag(HInstruction::kUint32);
    [all...]
lithium-codegen-ia32.cc     [all...]
  /external/v8/src/crankshaft/mips/
lithium-mips.cc 708 does_deopt = !instr->CheckFlag(HInstruction::kUint32);
    [all...]
lithium-codegen-mips.cc     [all...]
  /external/v8/src/crankshaft/mips64/
lithium-mips64.cc 708 does_deopt = !instr->CheckFlag(HInstruction::kUint32);
    [all...]
lithium-codegen-mips64.cc 978 if (hmod->CheckFlag(HValue::kLeftCanBeNegative)) {
983 if (hmod->CheckFlag(HValue::kBailoutOnMinusZero)) {
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-x87.cc 738 does_deopt = !instr->CheckFlag(HInstruction::kUint32);
    [all...]
lithium-codegen-x87.cc     [all...]
  /external/v8/src/crankshaft/x64/
lithium-x64.cc 724 does_deopt = !instr->CheckFlag(HInstruction::kUint32);
    [all...]
lithium-codegen-x64.cc 955 if (hmod->CheckFlag(HValue::kLeftCanBeNegative)) {
962 if (hmod->CheckFlag(HValue::kBailoutOnMinusZero)) {
991 if (hmod->CheckFlag(HValue::kBailoutOnMinusZero)) {
1015 if (hmod->CheckFlag(HValue::kCanBeDivByZero)) {
1022 if (hmod->CheckFlag(HValue::kCanOverflow)) {
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-arm64.cc 867 if (instr->CheckFlag(HValue::kCanOverflow)) {
873 DCHECK(!instr->CheckFlag(HValue::kCanOverflow));
938 DCHECK(instr->CheckFlag(HValue::kTruncatingToInt32));
    [all...]
lithium-codegen-arm64.cc     [all...]

Completed in 365 milliseconds

1 2