/external/llvm/lib/Transforms/Utils/ |
D | MemorySSA.cpp | 989 bool IsCall; member 1006 : SawBackedgePhi(false), IsCall(false), Inst(nullptr), in UpwardsMemoryQuery() 1010 : SawBackedgePhi(false), IsCall(ImmutableCallSite(Inst)), Inst(Inst), in UpwardsMemoryQuery() 1031 Q.IsCall = bool(ImmutableCallSite(I)); in invalidateInfo() 1033 if (!Q.IsCall) in invalidateInfo() 1051 if (Q.IsCall) in doCacheRemove() 1066 if (Q.IsCall) in doCacheInsert() 1079 if (Q.IsCall) in doCacheLookup() 1095 if (!Q.IsCall) in instructionClobbersQuery() 1262 Q.IsCall = false; in getClobberingMemoryAccess() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | MemorySSA.cpp | 120 bool IsCall = false; member in __anonb37d3ba80111::MemoryLocOrCall 129 IsCall = true; in MemoryLocOrCall() 132 IsCall = false; in MemoryLocOrCall() 143 assert(IsCall); in getCS() 148 assert(!IsCall); in getLoc() 153 if (IsCall != Other.IsCall) in operator ==() 156 if (!IsCall) in operator ==() 187 if (!MLOC.IsCall) in getHashValue() 189 MLOC.IsCall, in getHashValue() 193 hash_combine(MLOC.IsCall, DenseMapInfo<const Value *>::getHashValue( in getHashValue() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86VZeroUpper.cpp | 204 bool IsCall = MI.isCall(); in processBasicBlock() local 206 bool IsControlFlow = IsCall || IsReturn; in processBasicBlock() 240 if (IsCall && !callHasRegMask(MI)) in processBasicBlock()
|
/external/v8/src/compiler/backend/ |
D | move-optimizer.cc | 167 if (instruction->IsCall()) return; in RemoveClobberedDestinations() 211 if (from->IsCall()) return; in MigrateMoves() 388 if (last_instr->IsCall()) return; in OptimizeMerge()
|
D | frame-elider.cc | 26 if (instr->IsCall() || instr->IsDeoptimizeCall() || in MarkBlocks()
|
D | instruction.h | 891 bool IsCall() const { return IsCallField::decode(bit_field_); } in IsCall() function 892 bool NeedsReferenceMap() const { return IsCall(); } in NeedsReferenceMap() 895 bool ClobbersRegisters() const { return IsCall(); } in ClobbersRegisters() 896 bool ClobbersTemps() const { return IsCall(); } in ClobbersTemps() 897 bool ClobbersDoubleRegisters() const { return IsCall(); } in ClobbersDoubleRegisters() 1670 if (instr->IsCall()) return true; in NON_EXPORTED_BASE()
|
D | register-allocator-verifier.cc | 569 if (instr->IsCall()) { in VerifyGapMoves()
|
D | code-generator.cc | 820 if (instr->IsCall()) { in AssembleInstruction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AVR/ |
D | AVRISelLowering.cpp | 930 CCState &CCInfo, bool IsCall, bool IsVarArg) { in analyzeStandardArguments() argument 939 if (IsCall) { in analyzeStandardArguments() 949 if (IsCall) { in analyzeStandardArguments() 967 MVT LocVT = (IsCall) ? (*Outs)[pos].VT : (*Ins)[pos].VT; in analyzeStandardArguments() 1006 CCState &CCInfo, bool IsCall, bool IsVarArg) { in analyzeBuiltinArguments() argument 1014 IsCall, IsVarArg); in analyzeBuiltinArguments() 1024 CCState &CCInfo, bool IsCall, bool IsVarArg) { in analyzeArguments() argument 1029 IsCall, IsVarArg); in analyzeArguments() 1035 IsCall, IsVarArg); in analyzeArguments()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/AsmParser/ |
D | LLParser.h | 426 Value *GetVal(const std::string &Name, Type *Ty, LocTy Loc, bool IsCall); 427 Value *GetVal(unsigned ID, Type *Ty, LocTy Loc, bool IsCall); 449 PerFunctionState *PFS, bool IsCall);
|
D | LLParser.cpp | 2744 static bool isValidVariableType(Module *M, Type *Ty, Value *Val, bool IsCall) { in isValidVariableType() argument 2748 if (IsCall && isa<PointerType>(Ty)) { in isValidVariableType() 2761 LocTy Loc, bool IsCall) { in GetVal() argument 2775 if (isValidVariableType(P.M, Ty, Val, IsCall)) in GetVal() 2804 bool IsCall) { in GetVal() argument 2818 if (isValidVariableType(P.M, Ty, Val, IsCall)) in GetVal() 4893 PerFunctionState *PFS, bool IsCall) { in ConvertValIDToValue() argument 4900 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc, IsCall); in ConvertValIDToValue() 4904 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc, IsCall); in ConvertValIDToValue()
|
/external/v8/src/parsing/ |
D | preparser.h | 191 DCHECK(IsCall()); in is_tagged_template() 266 bool IsCall() const { in IsCall() function 274 if (IsCall()) return this; in AsCall()
|
D | parser-base.h | 2850 if (right->IsCall() || right->IsCallNew()) { in ParseAssignmentExpressionCoverGrammar() 3878 if (!value->IsCall() && !value->IsCallNew()) { in ParseVariableDeclarations() 4759 if (expression->IsCall() && !expression->AsCall()->is_tagged_template() && in RewriteInvalidReferenceExpression()
|
/external/v8/src/debug/ |
D | debug.h | 77 inline bool IsCall() const { return type_ == DEBUG_BREAK_SLOT_AT_CALL; } in IsCall() function
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | RDFGraph.cpp | 1300 bool IsCall = isCall(In); in buildStmt() local 1327 if (IsCall && Op.isDead()) in buildStmt() 1373 if (IsCall && Op.isDead()) { in buildStmt()
|
/external/clang/lib/Sema/ |
D | SemaTemplateInstantiate.cpp | 2693 bool Sema::SubstExprs(ArrayRef<Expr *> Exprs, bool IsCall, in SubstExprs() argument 2703 IsCall, Outputs); in SubstExprs()
|
D | TreeTransform.h | 394 bool TransformExprs(Expr *const *Inputs, unsigned NumInputs, bool IsCall, 3289 bool IsCall, in TransformExprs() argument 3294 if (IsCall && getDerived().DropCallArgument(Inputs[I])) { in TransformExprs() 3385 IsCall ? getDerived().TransformInitializer(Inputs[I], /*DirectInit*/false) in TransformExprs()
|
/external/llvm/lib/Target/Mips/ |
D | MipsInstrInfo.td | 374 class IsCall {
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/ |
D | MipsInstrInfo.td | 523 class IsCall {
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 7175 bool SubstExprs(ArrayRef<Expr *> Exprs, bool IsCall,
|