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

1 2

  /external/v8/src/compiler/
frame-elider.cc 25 if (InstructionAt(i)->IsCall() ||
instruction.h 761 bool IsCall() const { return IsCallField::decode(bit_field_); }
762 bool NeedsReferenceMap() const { return IsCall(); }
765 bool ClobbersRegisters() const { return IsCall(); }
766 bool ClobbersTemps() const { return IsCall(); }
767 bool ClobbersDoubleRegisters() const { return IsCall(); }
    [all...]
move-optimizer.cc 216 if (last_instr->IsCall()) return;
greedy-allocator.cc 506 if (!code()->InstructionAt(instruction_index)->IsCall()) continue;
register-allocator-verifier.cc 710 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(
interpreter-assembler-unittest.cc 589 IsCall(_, _, arg1, arg2, _, IsInt32Constant(2),
619 IsCall(_, IsHeapConstant(builtin.code()), arg_count, first_arg,
639 IsCall(_, target, arg1, arg2, arg3, arg4,
655 IsCall(_, IsHeapConstant(builtin.code()), arg_count, first_arg,
js-typed-lowering-unittest.cc     [all...]
node-test-utils.cc     [all...]
change-lowering-unittest.cc 53 return IsCall(
  /external/v8/src/crankshaft/arm/
lithium-arm.h 232 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/arm64/
lithium-arm64.h 243 bool IsCall() const { return IsCallBits::decode(bit_field_); }
246 bool ClobbersTemps() const { return IsCall(); }
247 bool ClobbersRegisters() const { return IsCall(); }
249 return IsCall();
251 bool IsMarkedAsCall() const { return IsCall(); }
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-mips.h 229 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 232 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 228 bool IsCall() const { return IsCallBits::decode(bit_field_); }
231 bool ClobbersTemps() const { return IsCall(); }
232 bool ClobbersRegisters() const { return IsCall(); }
234 return IsCall();
238 bool IsMarkedAsCall() const { return IsCall(); }
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-x64.h 229 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/ia32/
lithium-ia32.h 233 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/crankshaft/x87/
lithium-x87.h 234 bool IsCall() const { return IsCallBits::decode(bit_field_); }
237 bool ClobbersTemps() const { return IsCall(); }
238 bool ClobbersRegisters() const { return IsCall(); }
240 return IsCall() ||
    [all...]
lithium-codegen-x87.cc 324 if (instr->IsCall()) {
336 if (instr->IsCall() && instr->ClobbersDoubleRegisters(isolate())) {
    [all...]
  /external/v8/src/debug/
debug.h 80 inline bool IsCall() const {
debug.cc     [all...]
  /external/v8/src/parsing/
preparser.h 238 bool IsCall() const {
    [all...]
parser-base.h     [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp     [all...]
TreeTransform.h 383 /// \param IsCall If \c true, then this transform is being performed on
394 bool TransformExprs(Expr **Inputs, unsigned NumInputs, bool IsCall,
    [all...]

Completed in 552 milliseconds

1 2