Searched refs:ConstVCall (Results 1 – 10 of 10) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | ModuleSummaryIndex.h | 438 struct ConstVCall { 459 std::vector<ConstVCall> TypeTestAssumeConstVCalls, 484 std::vector<FunctionSummary::ConstVCall>(), 485 std::vector<FunctionSummary::ConstVCall>()); 511 std::vector<ConstVCall> TypeTestAssumeConstVCalls, 512 std::vector<ConstVCall> TypeCheckedLoadConstVCalls) 570 ArrayRef<ConstVCall> type_test_assume_const_vcalls() const { 578 ArrayRef<ConstVCall> type_checked_load_const_vcalls() const { 611 template <> struct DenseMapInfo<FunctionSummary::ConstVCall> { 612 static FunctionSummary::ConstVCall getEmptyKey() { [all …]
|
D | ModuleSummaryIndexYAML.h | 145 std::vector<FunctionSummary::ConstVCall> TypeTestAssumeConstVCalls, 162 template <> struct MappingTraits<FunctionSummary::ConstVCall> { 163 static void mapping(IO &io, FunctionSummary::ConstVCall& id) { 173 LLVM_YAML_IS_SEQUENCE_VECTOR(FunctionSummary::ConstVCall)
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | ModuleSummaryAnalysis.cpp | 140 SetVector<FunctionSummary::ConstVCall> &ConstVCalls) { in addVCallToSet() 160 SetVector<FunctionSummary::ConstVCall> &TypeTestAssumeConstVCalls, in addIntrinsicToSummary() 161 SetVector<FunctionSummary::ConstVCall> &TypeCheckedLoadConstVCalls) { in addIntrinsicToSummary() 239 SetVector<FunctionSummary::ConstVCall> TypeTestAssumeConstVCalls, in computeFunctionSummary() 486 ArrayRef<FunctionSummary::ConstVCall>{}, in buildModuleSummaryIndex() 487 ArrayRef<FunctionSummary::ConstVCall>{}); in buildModuleSummaryIndex()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/AsmParser/ |
D | LLParser.h | 359 std::vector<FunctionSummary::ConstVCall> &ConstVCallList); 362 bool ParseConstVCall(FunctionSummary::ConstVCall &ConstVCall,
|
D | LLParser.cpp | 7994 std::vector<FunctionSummary::ConstVCall> &ConstVCallList) { in ParseConstVCallList() 8004 FunctionSummary::ConstVCall ConstVCall; in ParseConstVCallList() local 8005 if (ParseConstVCall(ConstVCall, IdToIndexMap, ConstVCallList.size())) in ParseConstVCallList() 8007 ConstVCallList.push_back(ConstVCall); in ParseConstVCallList() 8031 bool LLParser::ParseConstVCall(FunctionSummary::ConstVCall &ConstVCall, in ParseConstVCall() argument 8033 if (ParseVFuncId(ConstVCall.VFunc, IdToIndexMap, Index) || in ParseConstVCall() 8035 ParseArgs(ConstVCall.Args)) in ParseConstVCall()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | AsmWriter.cpp | 2360 printConstVCalls(const std::vector<FunctionSummary::ConstVCall> VCallList, 2953 const std::vector<FunctionSummary::ConstVCall> VCallList, const char *Tag) { in printConstVCalls() 2956 for (auto &ConstVCall : VCallList) { in printConstVCalls() local 2958 printVFuncId(ConstVCall.VFunc); in printConstVCalls() 2959 if (!ConstVCall.Args.empty()) { in printConstVCalls() 2961 printArgs(ConstVCall.Args); in printConstVCalls()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/ |
D | WholeProgramDevirt.cpp | 1600 for (const FunctionSummary::ConstVCall &VC : in run() 1608 for (const FunctionSummary::ConstVCall &VC : in run()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 3386 ArrayRef<FunctionSummary::ConstVCall> VCs) { in writeFunctionTypeMetadataRecords()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 5196 std::vector<FunctionSummary::ConstVCall> PendingTypeTestAssumeConstVCalls, in parseEntireSummary()
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/ |
D | LangRef.rst | 6031 typeTestAssumeConstVCalls: (ConstVCall[, ConstVCall]*) 6033 Where each ConstVCall has the format: 6047 typeCheckedLoadConstVCalls: (ConstVCall[, ConstVCall]*) 6049 Where each ConstVCall has the format described for
|