Home
last modified time | relevance | path

Searched refs:callSite (Results 1 – 10 of 10) sorted by relevance

/external/clang/lib/CodeGen/
DCodeGenModule.cpp2749 llvm::CallSite callSite(user); in replaceUsesOfNonProtoConstant() local
2750 if (!callSite) continue; in replaceUsesOfNonProtoConstant()
2751 if (!callSite.isCallee(&*use)) continue; in replaceUsesOfNonProtoConstant()
2755 if (callSite->getType() != newRetTy && !callSite->use_empty()) in replaceUsesOfNonProtoConstant()
2760 llvm::AttributeSet oldAttrs = callSite.getAttributes(); in replaceUsesOfNonProtoConstant()
2770 if (callSite.arg_size() < newNumArgs) continue; in replaceUsesOfNonProtoConstant()
2778 if (callSite.getArgument(argNo)->getType() != ai->getType()) { in replaceUsesOfNonProtoConstant()
2799 newArgs.append(callSite.arg_begin(), callSite.arg_begin() + argNo); in replaceUsesOfNonProtoConstant()
2802 callSite.getOperandBundlesAsDefs(newBundles); in replaceUsesOfNonProtoConstant()
2805 if (callSite.isCall()) { in replaceUsesOfNonProtoConstant()
[all …]
DCGCall.cpp3459 llvm::CallSite callSite = EmitCallOrInvoke(callee, args, name); in EmitRuntimeCallOrInvoke() local
3460 callSite.setCallingConv(getRuntimeCC()); in EmitRuntimeCallOrInvoke()
3461 return callSite; in EmitRuntimeCallOrInvoke()
/external/swiftshader/src/Shader/
DShader.hpp427 unsigned int callSite; // Call index (per label) member
DVertexProgram.cpp108 ASSERT(callRetBlock[dst.label].size() == dst.callSite); in program()
295 case Shader::OPCODE_CALL: CALL(dst.label, dst.callSite); break; in program()
296 case Shader::OPCODE_CALLNZ: CALLNZ(dst.label, dst.callSite, src0); break; in program()
DPixelProgram.cpp97 ASSERT(callRetBlock[dst.label].size() == dst.callSite); in applyShader()
314 case Shader::OPCODE_CALL: CALL(dst.label, dst.callSite); break; in applyShader()
315 case Shader::OPCODE_CALLNZ: CALLNZ(dst.label, dst.callSite, src0); break; in applyShader()
DShader.cpp1888 inst->dst.callSite = callSiteIndex[label]++; in analyzeCallSites()
/external/swiftshader/src/Pipeline/
DShader.hpp426 unsigned int callSite; // Call index (per label) member
DVertexProgram.cpp101 ASSERT(callRetBlock[dst.label].size() == dst.callSite); in program()
287 case Shader::OPCODE_CALL: CALL(dst.label, dst.callSite); break; in program()
288 case Shader::OPCODE_CALLNZ: CALLNZ(dst.label, dst.callSite, src0); break; in program()
DPixelProgram.cpp97 ASSERT(callRetBlock[dst.label].size() == dst.callSite); in applyShader()
313 case Shader::OPCODE_CALL: CALL(dst.label, dst.callSite); break; in applyShader()
314 case Shader::OPCODE_CALLNZ: CALLNZ(dst.label, dst.callSite, src0); break; in applyShader()
DShader.cpp1888 inst->dst.callSite = callSiteIndex[label]++; in analyzeCallSites()