Home
last modified time | relevance | path

Searched refs:IsCall (Results 1 - 15 of 15) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
H A DX86VZeroUpper.cpp203 bool IsCall = MI.isCall(); in processBasicBlock() local
205 bool IsControlFlow = IsCall || IsReturn; in processBasicBlock()
239 if (IsCall && !callHasRegMask(MI)) in processBasicBlock()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DMemorySSA.cpp131 bool IsCall = false; member in __anon23925::MemoryLocOrCall
140 IsCall = true; in MemoryLocOrCall()
143 IsCall = false; in MemoryLocOrCall()
154 assert(IsCall); in getCall()
159 assert(!IsCall); in getLoc()
164 if (IsCall != Other.IsCall) in operator ==()
167 if (!IsCall) in operator ==()
199 if (!MLOC.IsCall) in getHashValue()
201 MLOC.IsCall, in getHashValue()
338 bool IsCall = false; global() member
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
H A DLLParser.h205 bool IsCall);
206 GlobalValue *GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc, bool IsCall);
434 Value *GetVal(const std::string &Name, Type *Ty, LocTy Loc, bool IsCall);
435 Value *GetVal(unsigned ID, Type *Ty, LocTy Loc, bool IsCall);
457 PerFunctionState *PFS, bool IsCall);
460 Value *Val, bool IsCall);
H A DLLParser.cpp1377 Value *Val, bool IsCall) { in checkValidVariableType()
1382 if (IsCall && isa<PointerType>(Ty)) { in checkValidVariableType()
1402 LocTy Loc, bool IsCall) { in GetGlobalVal()
1424 checkValidVariableType(Loc, "@" + Name, Ty, Val, IsCall)); in GetGlobalVal()
1433 bool IsCall) { in GetGlobalVal()
1453 checkValidVariableType(Loc, "@" + Twine(ID), Ty, Val, IsCall)); in GetGlobalVal()
2880 LocTy Loc, bool IsCall) {
2894 return P.checkValidVariableType(Loc, "%" + Name, Ty, Val, IsCall);
2915 bool IsCall) {
2929 return P.checkValidVariableType(Loc, "%" + Twine(ID), Ty, Val, IsCall);
1376 checkValidVariableType(LocTy Loc, const Twine &Name, Type *Ty, Value *Val, bool IsCall) checkValidVariableType() argument
1401 GetGlobalVal(const std::string &Name, Type *Ty, LocTy Loc, bool IsCall) GetGlobalVal() argument
1432 GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc, bool IsCall) GetGlobalVal() argument
[all...]
/third_party/skia/third_party/externals/tint/src/ast/
H A Dcall_statement_test.cc33 TEST_F(CallStatementTest, IsCall) { in TEST_F()
H A Dcall_expression_test.cc78 TEST_F(CallExpressionTest, IsCall) { in TEST_F()
/third_party/node/deps/v8/src/compiler/backend/
H A Dmove-optimizer.cc166 if (instruction->IsCall()) return; in RemoveClobberedDestinations()
210 if (from->IsCall()) return; in MigrateMoves()
387 if (last_instr->IsCall()) return; in OptimizeMerge()
H A Dframe-elider.cc26 if (instr->IsCall() || instr->IsDeoptimizeCall() || in MarkBlocks()
H A Dinstruction.h929 bool IsCall() const { return IsCallField::decode(bit_field_); } in IsCall() function in v8::internal::compiler::final
930 bool NeedsReferenceMap() const { return IsCall(); } in NeedsReferenceMap()
933 bool ClobbersRegisters() const { return IsCall(); } in ClobbersRegisters()
934 bool ClobbersTemps() const { return IsCall(); } in ClobbersTemps()
935 bool ClobbersDoubleRegisters() const { return IsCall(); } in ClobbersDoubleRegisters()
1824 if (instr->IsCall()) return true; in ContainsCall()
H A Dregister-allocator-verifier.cc579 if (instr->IsCall()) { in VerifyGapMoves()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/
H A DAVRISelLowering.cpp938 CCState &CCInfo, bool IsCall, bool IsVarArg) { in analyzeStandardArguments()
947 if (IsCall) { in analyzeStandardArguments()
957 if (IsCall) { in analyzeStandardArguments()
975 MVT LocVT = (IsCall) ? (*Outs)[pos].VT : (*Ins)[pos].VT; in analyzeStandardArguments()
1014 CCState &CCInfo, bool IsCall, bool IsVarArg) { in analyzeBuiltinArguments()
1022 IsCall, IsVarArg); in analyzeBuiltinArguments()
1032 CCState &CCInfo, bool IsCall, bool IsVarArg) { in analyzeArguments()
1037 IsCall, IsVarArg); in analyzeArguments()
1043 IsCall, IsVarArg); in analyzeArguments()
932 analyzeStandardArguments(TargetLowering::CallLoweringInfo *CLI, const Function *F, const DataLayout *TD, const SmallVectorImpl<ISD::OutputArg> *Outs, const SmallVectorImpl<ISD::InputArg> *Ins, CallingConv::ID CallConv, SmallVectorImpl<CCValAssign> &ArgLocs, CCState &CCInfo, bool IsCall, bool IsVarArg) analyzeStandardArguments() argument
1008 analyzeBuiltinArguments(TargetLowering::CallLoweringInfo &CLI, const Function *F, const DataLayout *TD, const SmallVectorImpl<ISD::OutputArg> *Outs, const SmallVectorImpl<ISD::InputArg> *Ins, CallingConv::ID CallConv, SmallVectorImpl<CCValAssign> &ArgLocs, CCState &CCInfo, bool IsCall, bool IsVarArg) analyzeBuiltinArguments() argument
1026 analyzeArguments(TargetLowering::CallLoweringInfo *CLI, const Function *F, const DataLayout *TD, const SmallVectorImpl<ISD::OutputArg> *Outs, const SmallVectorImpl<ISD::InputArg> *Ins, CallingConv::ID CallConv, SmallVectorImpl<CCValAssign> &ArgLocs, CCState &CCInfo, bool IsCall, bool IsVarArg) analyzeArguments() argument
/third_party/node/deps/v8/src/debug/
H A Ddebug.h76 bool IsCall() const { return type_ == DEBUG_BREAK_SLOT_AT_CALL; } in IsCall() function in v8::internal::BreakLocation
/third_party/node/deps/v8/src/parsing/
H A Dpreparser.h191 DCHECK(IsCall()); in is_tagged_template()
266 bool IsCall() const { in IsCall() function in v8::internal::PreParserExpression
274 if (IsCall()) return this; in AsCall()
H A Dparser-base.h2989 if (right->IsCall() || right->IsCallNew()) { in ParseAssignmentExpressionCoverGrammar()
4051 if (!value->IsCall() && !value->IsCallNew()) { in ParseVariableDeclarations()
4987 if (expression->IsCall() && !expression->AsCall()->is_tagged_template() && in RewriteInvalidReferenceExpression()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DRDFGraph.cpp1281 bool IsCall = isCall(In); in buildStmt() local
1308 if (IsCall && Op.isDead()) in buildStmt()
1354 if (IsCall && Op.isDead()) { in buildStmt()

Completed in 36 milliseconds