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

1 2

  /external/v8/src/compiler/
frame-elider.cc 26 if (instr->IsCall() || instr->IsDeoptimizeCall() ||
move-optimizer.cc 114 if (instruction->IsCall()) return;
158 if (from->IsCall()) return;
338 if (last_instr->IsCall()) return;
instruction.h 843 bool IsCall() const { return IsCallField::decode(bit_field_); }
844 bool NeedsReferenceMap() const { return IsCall(); }
847 bool ClobbersRegisters() const { return IsCall(); }
848 bool ClobbersTemps() const { return IsCall(); }
849 bool ClobbersDoubleRegisters() const { return IsCall(); }
    [all...]
register-allocator-verifier.cc 508 if (instr->IsCall()) {
  /external/v8/test/unittests/compiler/
node-test-utils.h 103 Matcher<Node*> IsCall(const Matcher<const CallDescriptor*>& descriptor_matcher,
107 Matcher<Node*> IsCall(const Matcher<const CallDescriptor*>& descriptor_matcher,
112 Matcher<Node*> IsCall(const Matcher<const CallDescriptor*>& descriptor_matcher,
118 Matcher<Node*> IsCall(const Matcher<const CallDescriptor*>& descriptor_matcher,
125 Matcher<Node*> IsCall(const Matcher<const CallDescriptor*>& descriptor_matcher,
133 Matcher<Node*> IsCall(const Matcher<const CallDescriptor*>& descriptor_matcher,
142 Matcher<Node*> IsCall(
node-test-utils.cc     [all...]
int64-lowering-unittest.cc 288 IsCall(testing::_, IsInt32Constant(function), start(), start());
321 IsReturn(IsCall(testing::_, IsInt32Constant(function),
    [all...]
js-typed-lowering-unittest.cc 838 IsCall(_, IsHeapConstant(CodeFactory::StringAdd(
    [all...]
  /external/v8/test/unittests/interpreter/
interpreter-assembler-unittest.cc 636 IsCall(_, _, arg1, arg2, _, IsInt32Constant(2), context, _, _));
664 IsCall(_, IsHeapConstant(builtin.code()), arg_count,
684 EXPECT_THAT(call_js, IsCall(_, IsHeapConstant(builtin.code()), arg_count,
  /external/v8/src/crankshaft/arm/
lithium-arm.h 224 bool IsCall() const { return IsCallBits::decode(bit_field_); }
234 bool ClobbersTemps() const { return IsCall(); }
235 bool ClobbersRegisters() const { return IsCall(); }
237 return IsCall();
241 bool IsMarkedAsCall() const { return IsCall(); }
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-arm64.h 235 bool IsCall() const { return IsCallBits::decode(bit_field_); }
245 bool ClobbersTemps() const { return IsCall(); }
246 bool ClobbersRegisters() const { return IsCall(); }
248 return IsCall();
250 bool IsMarkedAsCall() const { return IsCall(); }
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-mips.h 222 bool IsCall() const { return IsCallBits::decode(bit_field_); }
232 bool ClobbersTemps() const { return IsCall(); }
233 bool ClobbersRegisters() const { return IsCall(); }
235 return IsCall();
239 bool IsMarkedAsCall() const { return IsCall(); }
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-mips64.h 225 bool IsCall() const { return IsCallBits::decode(bit_field_); }
235 bool ClobbersTemps() const { return IsCall(); }
236 bool ClobbersRegisters() const { return IsCall(); }
238 return IsCall();
242 bool IsMarkedAsCall() const { return IsCall(); }
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-ppc.h 222 bool IsCall() const { return IsCallBits::decode(bit_field_); }
232 bool ClobbersTemps() const { return IsCall(); }
233 bool ClobbersRegisters() const { return IsCall(); }
235 return IsCall();
239 bool IsMarkedAsCall() const { return IsCall(); }
    [all...]
  /external/v8/src/crankshaft/s390/
lithium-s390.h 218 bool IsCall() const { return IsCallBits::decode(bit_field_); }
228 bool ClobbersTemps() const { return IsCall(); }
229 bool ClobbersRegisters() const { return IsCall(); }
231 return IsCall();
235 bool IsMarkedAsCall() const { return IsCall(); }
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-x64.h 223 bool IsCall() const { return IsCallBits::decode(bit_field_); }
233 bool ClobbersTemps() const { return IsCall(); }
234 bool ClobbersRegisters() const { return IsCall(); }
236 return IsCall();
240 bool IsMarkedAsCall() const { return IsCall(); }
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-ia32.h 227 bool IsCall() const { return IsCallBits::decode(bit_field_); }
237 bool ClobbersTemps() const { return IsCall(); }
238 bool ClobbersRegisters() const { return IsCall(); }
240 return IsCall();
    [all...]
  /external/v8/src/crankshaft/
lithium.cc 514 if (!instr->IsCall()) return;
  /external/v8/src/crankshaft/x87/
lithium-x87.h 226 bool IsCall() const { return IsCallBits::decode(bit_field_); }
236 bool ClobbersTemps() const { return IsCall(); }
237 bool ClobbersRegisters() const { return IsCall(); }
239 return IsCall() ||
    [all...]
  /external/v8/src/debug/
debug.h 84 inline bool IsCall() const { return type_ == DEBUG_BREAK_SLOT_AT_CALL; }
  /external/v8/src/
typing-asm.cc     [all...]
  /external/v8/src/parsing/
parser-base.h 404 DCHECK(expression->IsCall());
    [all...]
preparser.h 248 bool IsCall() const {
    [all...]
parser.h 376 if (!expression->IsCall()) return false;
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp     [all...]

Completed in 980 milliseconds

1 2