Searched defs:IsCall (Results 1 - 11 of 11) sorted by relevance

/external/v8/src/compiler/
H A Dgraph-unittest.cc705 Matcher<Node*> IsCall(const Matcher<CallDescriptor*>& descriptor_matcher, function in namespace:v8::internal::compiler
/external/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp2697 bool Sema::SubstExprs(Expr **Exprs, unsigned NumExprs, bool IsCall, argument
2706 return Instantiator.TransformExprs(Exprs, NumExprs, IsCall, Outputs);
H A DTreeTransform.h382 /// \param IsCall If \c true, then this transform is being performed on
393 bool TransformExprs(Expr **Inputs, unsigned NumInputs, bool IsCall,
2993 /*IsCall*/true, NewArgs, &ArgChanged))
3018 bool IsCall,
3023 if (IsCall && getDerived().DropCallArgument(Inputs[I])) {
3116 IsCall ? getDerived().TransformInitializer(Inputs[I], /*DirectInit*/false)
9865 /*IsCall=*/false, Elements, &ArgChanged))
3016 TransformExprs(Expr **Inputs, unsigned NumInputs, bool IsCall, SmallVectorImpl<Expr *> &Outputs, bool *ArgChanged) argument
/external/v8/src/arm/
H A Dlithium-arm.h244 bool IsCall() const { return IsCallBits::decode(bit_field_); } function in class:v8::internal::LInstruction
247 bool ClobbersTemps() const { return IsCall(); }
248 bool ClobbersRegisters() const { return IsCall(); }
250 return IsCall();
254 bool IsMarkedAsCall() const { return IsCall(); }
/external/v8/src/ia32/
H A Dlithium-ia32.h245 bool IsCall() const { return IsCallBits::decode(bit_field_); } function in class:v8::internal::LInstruction
248 bool ClobbersTemps() const { return IsCall(); }
249 bool ClobbersRegisters() const { return IsCall(); }
251 return IsCall();
/external/v8/src/mips/
H A Dlithium-mips.h241 bool IsCall() const { return IsCallBits::decode(bit_field_); } function in class:v8::internal::LInstruction
244 bool ClobbersTemps() const { return IsCall(); }
245 bool ClobbersRegisters() const { return IsCall(); }
247 return IsCall();
251 bool IsMarkedAsCall() const { return IsCall(); }
/external/v8/src/mips64/
H A Dlithium-mips64.h240 bool IsCall() const { return IsCallBits::decode(bit_field_); } function in class:v8::internal::LInstruction
243 bool ClobbersTemps() const { return IsCall(); }
244 bool ClobbersRegisters() const { return IsCall(); }
246 return IsCall();
250 bool IsMarkedAsCall() const { return IsCall(); }
/external/v8/src/x64/
H A Dlithium-x64.h239 bool IsCall() const { return IsCallBits::decode(bit_field_); } function in class:v8::internal::LInstruction
242 bool ClobbersTemps() const { return IsCall(); }
243 bool ClobbersRegisters() const { return IsCall(); }
245 return IsCall();
251 bool IsMarkedAsCall() const { return IsCall(); }
/external/v8/src/x87/
H A Dlithium-x87.h246 bool IsCall() const { return IsCallBits::decode(bit_field_); } function in class:v8::internal::LInstruction
249 bool ClobbersTemps() const { return IsCall(); }
250 bool ClobbersRegisters() const { return IsCall(); }
252 return IsCall() ||
/external/v8/src/arm64/
H A Dlithium-arm64.h255 bool IsCall() const { return IsCallBits::decode(bit_field_); } function in class:v8::internal::LInstruction
258 bool ClobbersTemps() const { return IsCall(); }
259 bool ClobbersRegisters() const { return IsCall(); }
261 return IsCall();
263 bool IsMarkedAsCall() const { return IsCall(); }
/external/v8/src/
H A Dpreparser.h758 bool IsCall() const { return (code_ & kCallExpression) == kCallExpression; } function in class:v8::internal::PreParserExpression
2194 && (!right->IsCall() && !right->IsCallNew())) {
2792 } else if (expression->IsCall()) {

Completed in 358 milliseconds