OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ThenBB
(Results
1 - 21
of
21
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp
848
BasicBlock *
ThenBB
= BasicBlock::Create(*TheContext, "then", TheFunction);
852
Builder->CreateCondBr(CondV,
ThenBB
, ElseBB);
855
Builder->SetInsertPoint(
ThenBB
);
862
// Codegen of 'Then' can change the current block, update
ThenBB
for the PHI.
863
ThenBB
= Builder->GetInsertBlock();
882
PN->addIncoming(ThenV,
ThenBB
);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp
848
BasicBlock *
ThenBB
= BasicBlock::Create(*TheContext, "then", TheFunction);
852
Builder->CreateCondBr(CondV,
ThenBB
, ElseBB);
855
Builder->SetInsertPoint(
ThenBB
);
862
// Codegen of 'Then' can change the current block, update
ThenBB
for the PHI.
863
ThenBB
= Builder->GetInsertBlock();
882
PN->addIncoming(ThenV,
ThenBB
);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp
848
BasicBlock *
ThenBB
= BasicBlock::Create(*TheContext, "then", TheFunction);
852
Builder->CreateCondBr(CondV,
ThenBB
, ElseBB);
855
Builder->SetInsertPoint(
ThenBB
);
862
// Codegen of 'Then' can change the current block, update
ThenBB
for the PHI.
863
ThenBB
= Builder->GetInsertBlock();
882
PN->addIncoming(ThenV,
ThenBB
);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp
831
BasicBlock *
ThenBB
= BasicBlock::Create(*TheContext, "then", TheFunction);
835
Builder->CreateCondBr(CondV,
ThenBB
, ElseBB);
838
Builder->SetInsertPoint(
ThenBB
);
845
// Codegen of 'Then' can change the current block, update
ThenBB
for the PHI.
846
ThenBB
= Builder->GetInsertBlock();
865
PN->addIncoming(ThenV,
ThenBB
);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp
635
BasicBlock *
ThenBB
= BasicBlock::Create(*TheContext, "then", TheFunction);
639
Builder->CreateCondBr(CondV,
ThenBB
, ElseBB);
642
Builder->SetInsertPoint(
ThenBB
);
649
// Codegen of 'Then' can change the current block, update
ThenBB
for the PHI.
650
ThenBB
= Builder->GetInsertBlock();
669
PN->addIncoming(ThenV,
ThenBB
);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp
747
BasicBlock *
ThenBB
= BasicBlock::Create(*TheContext, "then", TheFunction);
751
Builder->CreateCondBr(CondV,
ThenBB
, ElseBB);
754
Builder->SetInsertPoint(
ThenBB
);
761
// Codegen of 'Then' can change the current block, update
ThenBB
for the PHI.
762
ThenBB
= Builder->GetInsertBlock();
781
PN->addIncoming(ThenV,
ThenBB
);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp
854
BasicBlock *
ThenBB
= BasicBlock::Create(*TheContext, "then", TheFunction);
858
Builder->CreateCondBr(CondV,
ThenBB
, ElseBB);
861
Builder->SetInsertPoint(
ThenBB
);
868
// Codegen of 'Then' can change the current block, update
ThenBB
for the PHI.
869
ThenBB
= Builder->GetInsertBlock();
888
PN->addIncoming(ThenV,
ThenBB
);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp
853
BasicBlock *
ThenBB
= BasicBlock::Create(*TheContext, "then", TheFunction);
857
Builder->CreateCondBr(CondV,
ThenBB
, ElseBB);
860
Builder->SetInsertPoint(
ThenBB
);
867
// Codegen of 'Then' can change the current block, update
ThenBB
for the PHI.
868
ThenBB
= Builder->GetInsertBlock();
887
PN->addIncoming(ThenV,
ThenBB
);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp
749
BasicBlock *
ThenBB
= BasicBlock::Create(TheContext, "then", TheFunction);
753
Builder.CreateCondBr(CondV,
ThenBB
, ElseBB);
756
Builder.SetInsertPoint(
ThenBB
);
762
// Codegen of 'Then' can change the current block, update
ThenBB
for the PHI.
763
ThenBB
= Builder.GetInsertBlock();
781
PN->addIncoming(ThenV,
ThenBB
);
toy.cpp
1113
BasicBlock *
ThenBB
= BasicBlock::Create(TheContext, "then", TheFunction);
1117
Builder.CreateCondBr(CondV,
ThenBB
, ElseBB);
1120
Builder.SetInsertPoint(
ThenBB
);
1126
// Codegen of 'Then' can change the current block, update
ThenBB
for the PHI.
1127
ThenBB
= Builder.GetInsertBlock();
1145
PN->addIncoming(ThenV,
ThenBB
);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp
971
BasicBlock *
ThenBB
= BasicBlock::Create(TheContext, "then", TheFunction);
975
Builder.CreateCondBr(CondV,
ThenBB
, ElseBB);
978
Builder.SetInsertPoint(
ThenBB
);
984
// Codegen of 'Then' can change the current block, update
ThenBB
for the PHI.
985
ThenBB
= Builder.GetInsertBlock();
1003
PN->addIncoming(ThenV,
ThenBB
);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp
731
BasicBlock *
ThenBB
= BasicBlock::Create(TheContext, "then", TheFunction);
735
Builder.CreateCondBr(CondV,
ThenBB
, ElseBB);
738
Builder.SetInsertPoint(
ThenBB
);
744
// Codegen of 'Then' can change the current block, update
ThenBB
for the PHI.
745
ThenBB
= Builder.GetInsertBlock();
763
PN->addIncoming(ThenV,
ThenBB
);
toy.cpp
1011
BasicBlock *
ThenBB
= BasicBlock::Create(TheContext, "then", TheFunction);
1015
Builder.CreateCondBr(CondV,
ThenBB
, ElseBB);
1018
Builder.SetInsertPoint(
ThenBB
);
1024
// Codegen of 'Then' can change the current block, update
ThenBB
for the PHI.
1025
ThenBB
= Builder.GetInsertBlock();
1043
PN->addIncoming(ThenV,
ThenBB
);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp
1022
BasicBlock *
ThenBB
= BasicBlock::Create(*TheContext, "then", TheFunction);
1026
Builder->CreateCondBr(CondV,
ThenBB
, ElseBB);
1029
Builder->SetInsertPoint(
ThenBB
);
1036
// Codegen of 'Then' can change the current block, update
ThenBB
for the PHI.
1037
ThenBB
= Builder->GetInsertBlock();
1056
PN->addIncoming(ThenV,
ThenBB
);
/src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp
1191
BasicBlock *
ThenBB
= BasicBlock::Create(TheContext, "then", TheFunction);
1195
Builder.CreateCondBr(CondV,
ThenBB
, ElseBB);
1198
Builder.SetInsertPoint(
ThenBB
);
1204
// Codegen of 'Then' can change the current block, update
ThenBB
for the PHI.
1205
ThenBB
= Builder.GetInsertBlock();
1223
PN->addIncoming(ThenV,
ThenBB
);
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntimeGPU.cpp
2355
llvm::BasicBlock *
ThenBB
= CGF.createBasicBlock(".shuffle.then");
2371
ThenBB
, ExitBB);
2372
CGF.EmitBlock(
ThenBB
);
2384
PhiSrc->addIncoming(LocalPtr.getPointer(),
ThenBB
);
2385
PhiDest->addIncoming(LocalElemPtr.getPointer(),
ThenBB
);
2751
llvm::BasicBlock *
ThenBB
= CGF.createBasicBlock("then");
2757
Bld.CreateCondBr(IsWarpMaster,
ThenBB
, ElseBB);
2758
CGF.EmitBlock(
ThenBB
);
3041
llvm::BasicBlock *
ThenBB
= CGF.createBasicBlock("then");
3044
Bld.CreateCondBr(CondReduce,
ThenBB
, ElseBB)
[
all
...]
CGStmtOpenMP.cpp
1116
llvm::BasicBlock *
ThenBB
= nullptr;
1131
ThenBB
= createBasicBlock(".omp.lastprivate.then");
1133
Builder.CreateCondBr(IsLastIterCond,
ThenBB
, DoneBB);
1134
EmitBlock(
ThenBB
);
1467
llvm::BasicBlock *
ThenBB
= CGF.createBasicBlock(".omp.reduction.pu");
1469
CGF.Builder.CreateCondBr(Cond,
ThenBB
, DoneBB);
1470
CGF.EmitBlock(
ThenBB
);
2142
llvm::BasicBlock *
ThenBB
= createBasicBlock(".omp.linear.pu");
2144
Builder.CreateCondBr(Cond,
ThenBB
, DoneBB);
2145
EmitBlock(
ThenBB
);
[
all
...]
CGOpenMPRuntime.cpp
12436
llvm::BasicBlock *
ThenBB
= CGF.createBasicBlock("lp_cond_then");
12438
CGF.Builder.CreateCondBr(CmpRes,
ThenBB
, ExitBB);
12440
CGF.EmitBlock(
ThenBB
);
12549
llvm::BasicBlock *
ThenBB
= CGF.createBasicBlock("lpc.then");
12552
CGF.Builder.CreateCondBr(Cmp,
ThenBB
, DoneBB);
12553
CGF.EmitBlock(
ThenBB
);
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp
259
bool SpeculativelyExecuteBB(BranchInst *BI, BasicBlock *
ThenBB
,
2205
/// br i1 %cmp, label %EndBB, label %
ThenBB
2206
///
ThenBB
:
2261
static bool validateAndCostRequiredSelects(BasicBlock *BB, BasicBlock *
ThenBB
,
2274
Value *ThenV = PN.getIncomingValueForBlock(
ThenBB
);
2335
/// br i1 %cmp, label %EndBB, label %
ThenBB
2336
///
ThenBB
:
2340
/// %phi = phi [ %sub, %
ThenBB
], [ 0, %EndBB ]
2354
bool SimplifyCFGOpt::SpeculativelyExecuteBB(BranchInst *BI, BasicBlock *
ThenBB
,
2362
BasicBlock *EndBB =
ThenBB
->getTerminator()->getSuccessor(0)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/
OMPIRBuilder.cpp
534
BasicBlock *
ThenBB
= ThenTI->getParent();
535
BasicBlock *PRegEntryBB =
ThenBB
->splitBasicBlock(ThenTI, "omp.par.entry");
575
//
ThenBB
2029
auto *
ThenBB
= BasicBlock::Create(M.getContext(), "omp_region.body");
2030
auto *UI = new UnreachableInst(Builder.getContext(),
ThenBB
);
2032
// Emit
thenBB
and set the Builder's insertion point there for
2035
CurFn->getBasicBlockList().insertAfter(EntryBB->getIterator(),
ThenBB
);
2037
// Move Entry branch to end of
ThenBB
, and replace with conditional
2040
Builder.CreateCondBr(CallBool,
ThenBB
, ExitBB);
2045
Builder.SetInsertPoint(
ThenBB
->getTerminator())
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
echo.cpp
513
LLVMBasicBlockRef
ThenBB
= DeclareBB(LLVMValueAsBasicBlock(Then));
514
Dst = LLVMBuildCondBr(Builder, CloneValue(Cond),
ThenBB
, ElseBB);
Completed in 71 milliseconds
Indexes created Wed Jun 10 00:26:05 UTC 2026