/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Instruction.cpp | 714 case CallBr: return "callbr"; in getOpcodeName() 942 case Instruction::CallBr: in mayReadFromMemory() 962 case Instruction::CallBr: in mayWriteToMemory()
|
H A D | Core.cpp | 3100 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 D | Value.cpp | 65 OpCode == Instruction::CallBr) in Value()
|
H A D | Instructions.cpp | 305 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 D | Verifier.cpp | 2533 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 D | Instruction.def | 137 HANDLE_TERM_INST (11, CallBr , CallBrInst) // A call-site terminator
|
H A D | Instruction.h | 351 case Instruction::CallBr:
|
H A D | InstrTypes.h | 1267 case Instruction::CallBr: 1317 I->getOpcode() == Instruction::CallBr;
|
H A D | Instructions.h | 3867 return (I->getOpcode() == Instruction::CallBr); 3887 : CallBase(Ty->getReturnType(), Instruction::CallBr,
|
/freebsd/contrib/llvm-project/llvm/lib/FuzzMutate/ |
H A D | RandomIRBuilder.cpp | 272 case Instruction::CallBr: { in isCompatibleReplacement()
|
/freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
H A D | Core.h | 3844 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 D | AliasAnalysis.cpp | 628 case Instruction::CallBr: in getModRefInfo()
|
H A D | ValueTracking.cpp | 6903 case Instruction::CallBr: in isSafeToSpeculativelyExecuteWithOpcode() 7348 case Instruction::CallBr: in canCreateUndefOrPoison()
|
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
H A D | LLLexer.cpp | 892 INSTKEYWORD(callbr, CallBr); in LexIdentifier()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | Attributor.cpp | 3268 case Instruction::CallBr: in initializeInformationCache() 3623 {(unsigned)Instruction::Invoke, (unsigned)Instruction::CallBr, in identifyDefaultAbstractAttributes()
|
H A D | AttributorAttributes.cpp | 2066 (unsigned)Instruction::Invoke, (unsigned)Instruction::CallBr, in updateImpl() 8232 case Instruction::CallBr: in analyzeUseIn()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | TargetLoweringBase.cpp | 1765 case CallBr: return 0; in InstructionOpcodeToISD()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/ |
H A D | Attributor.h | 2368 {(unsigned)Instruction::Invoke, (unsigned)Instruction::CallBr,
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | SimplifyCFG.cpp | 7595 case Instruction::CallBr: in passingValueIsAlwaysUndefined()
|
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
H A D | BitcodeWriter.cpp | 3191 case Instruction::CallBr: { in writeInstruction()
|