HomeSort by: relevance | last modified time | path
    Searched refs:IsIndirectCall (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/
MipsNaClELFStreamer.cpp 73 bool isCall(const MCInst &MI, bool *IsIndirectCall) {
76 *IsIndirectCall = false;
96 *IsIndirectCall = true;
178 bool IsIndirectCall;
179 if (isCall(Inst, &IsIndirectCall)) {
185 if (IsIndirectCall) {
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
InlineCost.cpp 249 virtual void onLoweredCall(Function *F, CallBase &Call, bool IsIndirectCall) {
547 bool IsIndirectCall) override {
556 if (IsIndirectCall && BoostIndirectCalls) {
1825 bool IsIndirectCall = !F;
1826 if (IsIndirectCall) {
1887 onLoweredCall(F, Call, IsIndirectCall);
1890 if (!(Call.onlyReadsMemory() || (IsIndirectCall && F->onlyReadsMemory())))
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 1746 auto IsIndirectCall = [](const Instruction *I) {
1747 return cast<CallBase>(I)->isIndirectCall();
1749 bool HaveIndirectCalls = any_of(Insts, IsIndirectCall);
1750 bool AllCallsAreIndirect = all_of(Insts, IsIndirectCall);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.cpp 3937 bool IsIndirectCall = (CB && isa<CallInst>(CB) && CB->isIndirectCall());
4432 if (HasNoCfCheck && IsCFProtectionSupported && IsIndirectCall) {
    [all...]

Completed in 50 milliseconds