Home
last modified time | relevance | path

Searched refs:CallBr (Results 1 – 20 of 20) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DInstruction.cpp714 case CallBr: return "callbr"; in getOpcodeName()
942 case Instruction::CallBr: in mayReadFromMemory()
962 case Instruction::CallBr: in mayWriteToMemory()
H A DCore.cpp3100 LLVMBasicBlockRef LLVMGetCallBrDefaultDest(LLVMValueRef CallBr) { in LLVMGetCallBrDefaultDest() argument
3101 return wrap(unwrap<CallBrInst>(CallBr)->getDefaultDest()); in LLVMGetCallBrDefaultDest()
3104 unsigned LLVMGetCallBrNumIndirectDests(LLVMValueRef CallBr) { in LLVMGetCallBrNumIndirectDests() argument
3105 return unwrap<CallBrInst>(CallBr)->getNumIndirectDests(); in LLVMGetCallBrNumIndirectDests()
3108 LLVMBasicBlockRef LLVMGetCallBrIndirectDest(LLVMValueRef CallBr, unsigned Idx) { in LLVMGetCallBrIndirectDest() argument
3109 return wrap(unwrap<CallBrInst>(CallBr)->getIndirectDest(Idx)); in LLVMGetCallBrIndirectDest()
H A DValue.cpp65 OpCode == Instruction::CallBr) in Value()
H A DInstructions.cpp305 case Instruction::CallBr: in Create()
327 assert(getOpcode() == Instruction::CallBr && "Unexpected opcode!"); in getNumSubclassExtraOperandsDynamic()
891 : CallBase(CBI.Attrs, CBI.FTy, CBI.getType(), Instruction::CallBr, in CallBrInst()
H A DVerifier.cpp2533 if (auto *CallBr = dyn_cast<CallBrInst>(&Call)) { in verifyInlineAsmCall() local
2534 Check(LabelNo == CallBr->getNumIndirectDests(), in verifyInlineAsmCall()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstruction.def137 HANDLE_TERM_INST (11, CallBr , CallBrInst) // A call-site terminator
H A DInstruction.h351 case Instruction::CallBr:
H A DInstrTypes.h1267 case Instruction::CallBr:
1317 I->getOpcode() == Instruction::CallBr;
H A DInstructions.h3867 return (I->getOpcode() == Instruction::CallBr);
3887 : CallBase(Ty->getReturnType(), Instruction::CallBr,
/freebsd/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DRandomIRBuilder.cpp272 case Instruction::CallBr: { in isCompatibleReplacement()
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DCore.h3844 LLVMBasicBlockRef LLVMGetCallBrDefaultDest(LLVMValueRef CallBr);
3852 unsigned LLVMGetCallBrNumIndirectDests(LLVMValueRef CallBr);
3859 LLVMBasicBlockRef LLVMGetCallBrIndirectDest(LLVMValueRef CallBr, unsigned Idx);
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DAliasAnalysis.cpp628 case Instruction::CallBr: in getModRefInfo()
H A DValueTracking.cpp6903 case Instruction::CallBr: in isSafeToSpeculativelyExecuteWithOpcode()
7348 case Instruction::CallBr: in canCreateUndefOrPoison()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp892 INSTKEYWORD(callbr, CallBr); in LexIdentifier()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributor.cpp3268 case Instruction::CallBr: in initializeInformationCache()
3623 {(unsigned)Instruction::Invoke, (unsigned)Instruction::CallBr, in identifyDefaultAbstractAttributes()
H A DAttributorAttributes.cpp2066 (unsigned)Instruction::Invoke, (unsigned)Instruction::CallBr, in updateImpl()
8232 case Instruction::CallBr: in analyzeUseIn()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp1765 case CallBr: return 0; in InstructionOpcodeToISD()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DAttributor.h2368 {(unsigned)Instruction::Invoke, (unsigned)Instruction::CallBr,
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp7595 case Instruction::CallBr: in passingValueIsAlwaysUndefined()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp3191 case Instruction::CallBr: { in writeInstruction()