Searched refs:callSite (Results 1 – 10 of 10) sorted by relevance
/external/clang/lib/CodeGen/ |
D | CodeGenModule.cpp | 2749 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 …]
|
D | CGCall.cpp | 3459 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/ |
D | Shader.hpp | 427 unsigned int callSite; // Call index (per label) member
|
D | VertexProgram.cpp | 108 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()
|
D | PixelProgram.cpp | 97 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()
|
D | Shader.cpp | 1888 inst->dst.callSite = callSiteIndex[label]++; in analyzeCallSites()
|
/external/swiftshader/src/Pipeline/ |
D | Shader.hpp | 426 unsigned int callSite; // Call index (per label) member
|
D | VertexProgram.cpp | 101 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()
|
D | PixelProgram.cpp | 97 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()
|
D | Shader.cpp | 1888 inst->dst.callSite = callSiteIndex[label]++; in analyzeCallSites()
|