Searched refs:LB (Results 26 - 50 of 51) sorted by relevance

123

/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp2068 // IV = LB
2075 LoopArgs.LB, LoopArgs.UB, LoopArgs.ST);
2092 // Emit "IV = LB" (in case of static schedule, we have already calculated new
2093 // LB for loop condition and emitted it above).
2132 // Emit "LB = LB + Stride", "UB = UB + Stride".
2198 // while(__kmpc_dispatch_next(&LB, &UB)) {
2199 // idx = LB;
2210 // while(UB = min(UB, GlobalUB), idx = LB, idx < UB) {
2212 // LB
2325 LValue LB = local
2365 emitDistributeParallelForDispatchBounds(CodeGenFunction &CGF, const OMPExecutableDirective &S, Address LB, Address UB) argument
2386 LValue LB = local
2551 LValue LB = Bounds.first; local
2736 LValue LB = local
2748 emitDispatchForLoopBounds(CodeGenFunction &CGF, const OMPExecutableDirective &S, Address LB, Address UB) argument
3652 LValue LB = EmitOMPHelperVar( local
[all...]
H A DCGOpenMPRuntime.cpp3701 DispatchValues.LB, // Lower
3749 Values.LB.getPointer(), // &LB
3826 Address LB, Address UB,
3836 LB.getPointer(), // &Lower
7598 Address LB = CGF.EmitOMPSharedLValue(I->getAssociatedExpression()) local
7617 PartialStruct.LowestElem = {0, LB};
7621 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(LB,
7635 LB = BP;
7649 CGF.EmitCastToVoidPtr(LB
3823 emitForNext(CodeGenFunction &CGF, SourceLocation Loc, unsigned IVSize, bool IVSigned, Address IL, Address LB, Address UB, Address ST) argument
7874 llvm::Value *LB = PartialStruct.LowestElem.second.getPointer(); local
[all...]
H A DCodeGenFunction.h284 CodeGenFunction &, const OMPExecutableDirective &S, Address LB,
3293 Address LB = Address::invalid(); member in struct:clang::CodeGen::CodeGenFunction::OMPLoopArguments
3310 /// Update of LB after a whole chunk has been executed
3315 OMPLoopArguments(Address LB, Address UB, Address ST, Address IL, argument
3320 : LB(LB), UB(UB), ST(ST), IL(IL), Chunk(Chunk), EUB(EUB),
H A DCGOpenMPRuntimeNVPTX.cpp4629 llvm::Value *LB = CGF.EmitLoadOfScalar(
4634 Args.emplace_back(LB);
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp304 CompoundStmt::CompoundStmt(ArrayRef<Stmt *> Stmts, SourceLocation LB, argument
309 CompoundStmtBits.LBraceLoc = LB;
320 SourceLocation LB, SourceLocation RB) {
323 return new (Mem) CompoundStmt(Stmts, LB, RB);
319 Create(const ASTContext &C, ArrayRef<Stmt *> Stmts, SourceLocation LB, SourceLocation RB) argument
H A DExprConstant.cpp558 auto LB = Temporaries.lower_bound(KV); local
559 if (LB != Temporaries.end() && LB->first == KV)
560 return &LB->second;
563 assert((LB == Temporaries.end() || LB->first.first != Key) &&
564 (LB == Temporaries.begin() || std::prev(LB)->first.first != Key) &&
/freebsd-12-stable/crypto/openssl/crypto/camellia/asm/
H A Dcmll-x86.pl98 &movz ($idx,&LB($t0)); # (t0>>0)&0xff
101 &movz ($idx,&LB($t1)); # (t1>>0)&0xff
108 &movz ($t0,&LB($t0)); # (t0>>16)&0xff
115 &movz ($idx,&LB($t1)); # (t1>>16)&0xff
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp833 BasicBlock *LB = recalculatePlacement(Node, NCM, Loc); local
835 return LB;
857 BasicBlock *LB = L->getLoopLatch(); local
861 if (LB && DT->dominates(B, LB))
H A DHexagonSplitDouble.cpp479 const MachineBasicBlock *LB = L->getLoopLatch(); local
480 if (!HB || !LB)
486 MachineBasicBlock *TmpLB = const_cast<MachineBasicBlock*>(LB);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp1958 StringRef LB = getBuffer(LOffs.first)->getBufferIdentifier();
1960 bool LIsBuiltins = LB == "<built-in>";
1970 bool LIsAsm = LB == "<inline asm>";
1979 bool LIsScratch = LB == "<scratch space>";
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDILCFGStructurizer.cpp1056 for (auto *LB : inverse_children<MachineBasicBlock*>(LoopHeader))
1057 if (LoopRep->contains(LB))
1058 LatchBlks.push_back(LB);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h615 void setLowerBoundVariable(Expr *LB) { argument
620 *std::next(child_begin(), LowerBoundVariableOffset) = LB;
745 Expr *LB; member in struct:clang::OMPLoopDirective::DistCombinedHelperExprs
796 Expr *LB; member in struct:clang::OMPLoopDirective::HelperExprs
869 LB = nullptr;
899 DistCombinedFields.LB = nullptr;
H A DStmt.h1355 CompoundStmt(ArrayRef<Stmt *> Stmts, SourceLocation LB, SourceLocation RB);
1362 SourceLocation LB, SourceLocation RB);
/freebsd-12-stable/crypto/openssl/crypto/aes/asm/
H A Daesni-x86.pl1444 &mov (&BP(-16,$out),&LB($rounds));
1445 &mov (&BP(0,$out),&LB($key));
1503 &setnz (&LB($rounds_));
1820 &mov (&BP(0,$out),&LB($rounds));
1821 &mov (&BP(16,$out),&LB($key));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DDebugInfo.cpp165 if (auto *LB = dyn_cast<DILexicalBlockBase>(Scope)) {
166 processScope(LB->getScope());
H A DDebugInfoMetadata.cpp222 if (auto *LB = dyn_cast<DILexicalBlockBase>(this))
223 return LB->getScope();
H A DMetadata.cpp954 APInt LB = EndPoints[Size - 2]->getValue();
956 ConstantRange LastRange(LB, LE);
H A DVerifier.cpp4754 if (auto *LB = dyn_cast<DILexicalBlockBase>(LocalScope))
4755 return getSubprogram(LB->getRawScope());
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp5683 Expr *LB = nullptr;
5719 /// variable - #Var and its initialization value - #LB.
5799 assert(!LB && !UB && !Step);
5803 (LB && LB->isValueDependent()) || (UB && UB->isValueDependent()) ||
5811 assert(LCDecl == nullptr && LB == nullptr && LCRef == nullptr &&
5823 LB = NewLB;
5825 InitDependOnLC = doesDependOnLoopCounter(LB, /*IsInitializer=*/true);
5834 assert(LCDecl != nullptr && LB != nullptr && UB == nullptr &&
5850 assert(LCDecl != nullptr && LB !
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsInstructionSelector.cpp209 return Opc == TargetOpcode::G_SEXTLOAD ? Mips::LB : Mips::LBu;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfo.cpp44 case RISCV::LB:
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp7585 InnerLoopVectorizer LB(L, PSE, LI, DT, TLI, TTI, AC, ORE, VF.Width, 1, LVL,
7589 LVP.executePlan(LB, DT);
7856 InnerLoopVectorizer LB(L, PSE, LI, DT, TLI, TTI, AC, ORE, VF.Width, IC,
7858 LVP.executePlan(LB, DT);
7864 if (!LB.areSafetyChecksAdded())
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/RISCV/AsmParser/
H A DRISCVAsmParser.cpp1834 emitLoadStoreSymbol(Inst, RISCV::LB, IDLoc, Out, /*HasTmpReg=*/false);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.cpp1244 expandRXYPseudo(MI, SystemZ::LB, SystemZ::LBH);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp4387 TOut.emitRRI(Signed ? Mips::LB : Mips::LBu, FirstLbuDstReg, LbuSrcReg,

Completed in 557 milliseconds

123