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

1 2

  /external/chromium_org/v8/src/
hydrogen-mark-deoptimize.cc 14 if (phi->CheckFlag(HValue::kAllowUndefinedAsNaN) &&
23 ASSERT(phi->CheckFlag(HValue::kAllowUndefinedAsNaN));
35 if (input->IsPhi() && input->CheckFlag(HValue::kAllowUndefinedAsNaN)) {
hydrogen-dce.cc 13 if (instr->CheckFlag(HValue::kIsLive)) return; // Already live.
24 if (!input->CheckFlag(HValue::kIsLive)) {
76 if (!instr->CheckFlag(HValue::kIsLive)) {
87 if (!phi->CheckFlag(HValue::kIsLive)) {
hydrogen-uint32-analysis.cc 86 if (!use->CheckFlag(HInstruction::kUint32)) {
107 if (use->IsPhi() && !use->CheckFlag(HInstruction::kUint32)) {
120 if (!phi->CheckFlag(HInstruction::kUint32)) {
127 if (!operand->CheckFlag(HInstruction::kUint32)) {
151 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 ASSERT(!change->CheckFlag(HValue::kUint32));
157 input->CheckFlag(HValue::kTruncatingToInt32)) {
174 input->CheckFlag(HValue::kTruncatingToSmi)) {
hydrogen-instructions.cc 46 if (CheckFlag(kFlexibleRepresentation)) {
56 ASSERT(CheckFlag(kFlexibleRepresentation));
81 (use->CheckFlag(kTruncatingToInt32) ? "-trunc" : ""));
105 if (CheckFlag(kCannotBeTagged) && new_rep.IsTagged()) return;
318 while (tail_ != NULL && tail_->value()->CheckFlag(HValue::kIsDead)) {
328 if (!it.value()->CheckFlag(f)) return false;
337 if (!it.value()->CheckFlag(f)) {
350 if (!it.value()->CheckFlag(f)) return false;
510 if (first != NULL && first->value()->CheckFlag(kIsDead)) {
634 if (CheckFlag(HValue::kHasNoObservableSideEffects))
    [all...]
hydrogen-store-elimination.cc 36 if (instr->CheckFlag(HValue::kIsDead)) continue;
hydrogen-environment-liveness.cc 74 if (!marker->CheckFlag(HValue::kEndsLiveRange)) return;
hydrogen-gvn.cc 608 if (instr->CheckFlag(HValue::kUseGVN)) {
830 if (instr->CheckFlag(HValue::kTrackSideEffectDominators)) {
865 if (instr->CheckFlag(HValue::kUseGVN) &&
866 !instr->CheckFlag(HValue::kCantBeReplaced)) {
  /external/chromium_org/components/signin/core/common/
profile_management_switches.cc 93 bool CheckFlag(std::string command_switch, State min_state) {
115 return CheckFlag(switches::kExtensionsMultiAccount,
128 return CheckFlag(switches::kGoogleProfileInfo,
  /external/chromium_org/third_party/lzma_sdk/
CpuArch.c 13 static UInt32 CheckFlag(UInt32 flag)
47 #define CHECK_CPUID_IS_SUPPORTED if (CheckFlag(1 << 18) == 0 || CheckFlag(1 << 21) == 0) return False;
  /external/lzma/C/
CpuArch.c 13 static UInt32 CheckFlag(UInt32 flag)
46 #define CHECK_CPUID_IS_SUPPORTED if (CheckFlag(1 << 18) == 0 || CheckFlag(1 << 21) == 0) return False;
  /external/chromium_org/v8/src/ia32/
lithium-ia32.cc 748 does_deopt = !instr->CheckFlag(HInstruction::kUint32);
    [all...]
lithium-codegen-ia32.cc     [all...]
  /external/chromium_org/v8/src/x87/
lithium-x87.cc 734 does_deopt = !instr->CheckFlag(HInstruction::kUint32);
    [all...]
lithium-codegen-x87.cc     [all...]
  /external/chromium_org/v8/src/x64/
lithium-x64.cc 721 does_deopt = !instr->CheckFlag(HInstruction::kUint32);
    [all...]
lithium-codegen-x64.cc     [all...]
  /external/chromium_org/v8/src/arm/
lithium-arm.cc 707 does_deopt = !instr->CheckFlag(HInstruction::kUint32);
    [all...]
lithium-codegen-arm.cc     [all...]
  /external/chromium_org/v8/src/mips/
lithium-mips.cc 712 does_deopt = !instr->CheckFlag(HInstruction::kUint32);
    [all...]
lithium-codegen-mips.cc     [all...]
  /external/chromium_org/v8/src/arm64/
lithium-arm64.cc 868 if (instr->CheckFlag(HValue::kCanOverflow)) {
875 ASSERT(!instr->CheckFlag(HValue::kCanOverflow));
940 ASSERT(instr->CheckFlag(HValue::kTruncatingToInt32));
    [all...]
lithium-codegen-arm64.cc     [all...]

Completed in 288 milliseconds

1 2