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

  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86AvoidTrailingCall.cpp 78 return MI.isCall() && !MI.isReturn();
110 bool IsCall = !IsEmpty && isCallInstruction(*LastRealInstr);
111 if (IsEmpty || IsCall) {
113 if (IsCall) {
125 if (IsCall) {
X86VZeroUpper.cpp 160 if (MI.isCall() && MO.isRegMask() && !clobbersAllYmmAndZmmRegs(MO))
174 assert(MI.isCall() && "Can only be called on call instructions.");
207 bool IsCall = MI.isCall();
209 bool IsControlFlow = IsCall || IsReturn;
243 if (IsCall && !callHasRegMask(MI))
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemorySSA.cpp 138 bool IsCall = false;
147 IsCall = true;
150 IsCall = false;
161 assert(IsCall);
166 assert(!IsCall);
171 if (IsCall != Other.IsCall)
174 if (!IsCall)
206 if (!MLOC.IsCall)
208 MLOC.IsCall,
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RDFGraph.cpp 229 if (MI.isCall() || MI.isBranch()) {
610 if (In.isCall())
619 if (In.isCall() || In.isReturn() || In.isInlineAsm())
1248 auto isCall = [] (const MachineInstr &In) -> bool {
1249 if (In.isCall())
1278 bool IsCall = isCall(In);
1305 if (IsCall && Op.isDead())
1351 if (IsCall && Op.isDead()) {

Completed in 26 milliseconds