/external/v8/src/compiler/ |
H A D | frame-elider.cc | 26 if (instr->IsCall() || instr->IsDeoptimizeCall() ||
|
H A D | move-optimizer.cc | 114 if (instruction->IsCall()) return; 158 if (from->IsCall()) return; 338 if (last_instr->IsCall()) return;
|
H A D | 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(); } 1443 if (instr->IsCall()) return true;
|
H A D | register-allocator-verifier.cc | 508 if (instr->IsCall()) {
|
/external/v8/test/unittests/compiler/ |
H A D | 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(
|
H A D | node-test-utils.cc | 1817 Matcher<Node*> IsCall(const Matcher<const CallDescriptor*>& descriptor_matcher, function in namespace:v8::internal::compiler 1827 Matcher<Node*> IsCall(const Matcher<const CallDescriptor*>& descriptor_matcher, function in namespace:v8::internal::compiler 1840 Matcher<Node*> IsCall(const Matcher<const CallDescriptor*>& descriptor_matcher, function in namespace:v8::internal::compiler 1855 Matcher<Node*> IsCall(const Matcher<const CallDescriptor*>& descriptor_matcher, function in namespace:v8::internal::compiler 1872 Matcher<Node*> IsCall(const Matcher<const CallDescriptor*>& descriptor_matcher, function in namespace:v8::internal::compiler 1891 Matcher<Node*> IsCall(const Matcher<const CallDescriptor*>& descriptor_matcher, function in namespace:v8::internal::compiler 1912 Matcher<Node*> IsCall( function in namespace:v8::internal::compiler
|
H A D | int64-lowering-unittest.cc | 288 IsCall(testing::_, IsInt32Constant(function), start(), start()); 321 IsReturn(IsCall(testing::_, IsInt32Constant(function),
|
H A D | js-typed-lowering-unittest.cc | 838 IsCall(_, IsHeapConstant(CodeFactory::StringAdd(
|
/external/v8/test/unittests/interpreter/ |
H A D | 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/ |
H A D | lithium-arm.h | 224 bool IsCall() const { return IsCallBits::decode(bit_field_); } function in class:v8::internal::LInstruction 234 bool ClobbersTemps() const { return IsCall(); } 235 bool ClobbersRegisters() const { return IsCall(); } 237 return IsCall(); 241 bool IsMarkedAsCall() const { return IsCall(); }
|
/external/v8/src/crankshaft/mips/ |
H A D | lithium-mips.h | 222 bool IsCall() const { return IsCallBits::decode(bit_field_); } function in class:v8::internal::LInstruction 232 bool ClobbersTemps() const { return IsCall(); } 233 bool ClobbersRegisters() const { return IsCall(); } 235 return IsCall(); 239 bool IsMarkedAsCall() const { return IsCall(); }
|
/external/v8/src/crankshaft/mips64/ |
H A D | lithium-mips64.h | 225 bool IsCall() const { return IsCallBits::decode(bit_field_); } function in class:v8::internal::LInstruction 235 bool ClobbersTemps() const { return IsCall(); } 236 bool ClobbersRegisters() const { return IsCall(); } 238 return IsCall(); 242 bool IsMarkedAsCall() const { return IsCall(); }
|
/external/v8/src/crankshaft/ppc/ |
H A D | lithium-ppc.h | 222 bool IsCall() const { return IsCallBits::decode(bit_field_); } function in class:v8::internal::LInstruction 232 bool ClobbersTemps() const { return IsCall(); } 233 bool ClobbersRegisters() const { return IsCall(); } 235 return IsCall(); 239 bool IsMarkedAsCall() const { return IsCall(); }
|
/external/v8/src/crankshaft/s390/ |
H A D | lithium-s390.h | 218 bool IsCall() const { return IsCallBits::decode(bit_field_); } function in class:v8::internal::LInstruction 228 bool ClobbersTemps() const { return IsCall(); } 229 bool ClobbersRegisters() const { return IsCall(); } 231 return IsCall(); 235 bool IsMarkedAsCall() const { return IsCall(); }
|
/external/v8/src/crankshaft/x64/ |
H A D | lithium-x64.h | 223 bool IsCall() const { return IsCallBits::decode(bit_field_); } function in class:v8::internal::LInstruction 233 bool ClobbersTemps() const { return IsCall(); } 234 bool ClobbersRegisters() const { return IsCall(); } 236 return IsCall(); 240 bool IsMarkedAsCall() const { return IsCall(); }
|
/external/v8/src/crankshaft/ia32/ |
H A D | lithium-ia32.h | 227 bool IsCall() const { return IsCallBits::decode(bit_field_); } function in class:v8::internal::LInstruction 237 bool ClobbersTemps() const { return IsCall(); } 238 bool ClobbersRegisters() const { return IsCall(); } 240 return IsCall();
|
/external/v8/src/crankshaft/ |
H A D | lithium.cc | 514 if (!instr->IsCall()) return;
|
/external/v8/src/crankshaft/x87/ |
H A D | lithium-x87.h | 226 bool IsCall() const { return IsCallBits::decode(bit_field_); } function in class:v8::internal::LInstruction 236 bool ClobbersTemps() const { return IsCall(); } 237 bool ClobbersRegisters() const { return IsCall(); } 239 return IsCall() ||
|
/external/v8/src/debug/ |
H A D | debug.h | 84 inline bool IsCall() const { return type_ == DEBUG_BREAK_SLOT_AT_CALL; } function in class:v8::internal::BreakLocation
|
/external/v8/src/crankshaft/arm64/ |
H A D | lithium-arm64.h | 235 bool IsCall() const { return IsCallBits::decode(bit_field_); } function in class:v8::internal::LInstruction 245 bool ClobbersTemps() const { return IsCall(); } 246 bool ClobbersRegisters() const { return IsCall(); } 248 return IsCall(); 250 bool IsMarkedAsCall() const { return IsCall(); }
|
/external/v8/src/ |
H A D | typing-asm.cc | 1208 if (expr->left()->IsCall() && expr->op() == Token::BIT_OR && 1310 if (expr->left()->IsCall() &&
|
/external/v8/src/parsing/ |
H A D | parser-base.h | 404 DCHECK(expression->IsCall()); 2391 (!right->IsCall() && !right->IsCallNew())) { 2486 if (!expression->IsCall()) { 3557 if (expression->IsCall()) {
|
H A D | preparser.h | 248 bool IsCall() const { function in class:v8::internal::PreParserExpression
|
H A D | parser.h | 376 if (!expression->IsCall()) return false;
|
/external/clang/lib/Sema/ |
H A D | SemaTemplateInstantiate.cpp | 2669 bool Sema::SubstExprs(Expr **Exprs, unsigned NumExprs, bool IsCall, argument 2678 return Instantiator.TransformExprs(Exprs, NumExprs, IsCall, Outputs);
|