HomeSort by: relevance | last modified time | path
    Searched defs:RL (Results 1 - 25 of 31) sorted by relevancy

1 2

  /src/tests/
h_macros.h 47 #define RL(x) REQUIRE_LIBC(x, -1)
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
RunLoopAutoreleaseLeakChecker.cpp 100 const auto *RL = Match.getNodeAs<ObjCMessageExpr>(RunLoopBind);
124 (RL ? "main run loop " : "xpc_main ") +
PaddingChecker.cpp 91 const ASTRecordLayout &RL = ASTContext.getASTRecordLayout(RD);
92 assert(llvm::isPowerOf2_64(RL.getAlignment().getQuantity()));
94 CharUnits BaselinePad = calculateBaselinePad(RD, ASTContext, RL);
101 calculateOptimalPad(RD, ASTContext, RL);
192 const ASTRecordLayout &RL) {
194 CharUnits Offset = ASTContext.toCharUnitsFromBits(RL.getFieldOffset(0));
201 auto FieldOffsetBits = RL.getFieldOffset(FD->getFieldIndex());
206 PaddingSum += RL.getSize() - Offset;
228 const ASTRecordLayout &RL) {
266 CharUnits NewOffset = ASTContext.toCharUnitsFromBits(RL.getFieldOffset(0))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyExplicitLocals.cpp 404 auto RL = Reg2Local.find(Reg);
405 if (RL == Reg2Local.end() || RL->second < MFI.getParams().size())
408 MFI.setLocal(RL->second - MFI.getParams().size(),
  /src/external/bsd/elftoolchain/dist/libdwarf/
dwarf_frame.c 279 #define RL rt->rt3_rules[table_column]
325 *offset_relevant = RL.dw_offset_relevant;
326 *register_num = RL.dw_regnum;
327 *offset = RL.dw_offset_or_block_len;
436 *value_type = RL.dw_value_type;
437 *offset_relevant = RL.dw_offset_relevant;
438 *register_num = RL.dw_regnum;
439 *offset_or_block_len = RL.dw_offset_or_block_len;
440 *block_ptr = RL.dw_block_ptr;
487 #undef RL
    [all...]
libdwarf_frame.c 564 #define RL rt->rt3_rules
623 RL[low6].dw_offset_relevant = 1;
624 RL[low6].dw_value_type = DW_EXPR_OFFSET;
625 RL[low6].dw_regnum = dbg->dbg_frame_cfa_value;
626 RL[low6].dw_offset_or_block_len =
630 RL[low6].dw_offset_or_block_len);
636 memcpy(&RL[low6], &INITRL[low6],
690 RL[reg].dw_offset_relevant = 1;
691 RL[reg].dw_value_type = DW_EXPR_OFFSET;
692 RL[reg].dw_regnum = dbg->dbg_frame_cfa_value
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonBlockRanges.cpp 75 void HexagonBlockRanges::RangeList::include(const RangeList &RL) {
76 for (auto &R : RL)
442 RangeList &RL = F->second;
443 RangeList::iterator A = RL.begin(), Z = RL.end()-1;
514 const HexagonBlockRanges::RangeList &RL) {
515 for (auto &R : RL)
532 const HexagonBlockRanges::RangeList &RL = I.second;
533 OS << printReg(I.first.Reg, &P.TRI, I.first.Sub) << " -> " << RL << "\n";
HexagonFrameLowering.cpp 2338 HexagonBlockRanges::RangeList &RL = FIRangeMap[FI].Map[&B];
2340 RL.add(LastStore[FI], LastLoad[FI], false, false);
2342 RL.add(IndexType::Entry, LastLoad[FI], false, false);
2355 auto &RL = FIRangeMap[I.first].Map[&B];
2358 RL.add(LS, LL, false, false);
2360 RL.add(IndexType::Entry, LL, false, false);
2367 auto &RL = FIRangeMap[I.first].Map[&B];
2368 RL.add(LS, IndexType::None, false, false);
2445 HexagonBlockRanges::RangeList &RL = FIRangeMap[FI].Map[&B];
2446 for (auto &Range : RL) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
DwarfLinkerForBinary.cpp 231 StringRef ArchName, const remarks::RemarkLinker &RL) {
234 if (RL.empty())
262 if (Error E = RL.serialize(OS, Options.RemarksFormat))
271 remarks::RemarkLinker &RL) {
285 Error E = RL.link(*ErrorOrObj);
310 remarks::RemarkLinker RL;
312 RL.setExternalFilePrependPath(Options.RemarksPrependPath);
340 [&DebugMap, &RL, this](StringRef ContainerName,
345 if (auto ErrorOrObj = loadObject(Obj, DebugMap, RL)) {
434 if (auto ErrorOrObj = loadObject(*Obj, Map, RL))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 510 SDValue LL, LH, RL, RH, CL, CH;
513 GetSplitOp(N->getOperand(2), RL, RH);
542 Lo = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), CL, LL, RL);
548 SDValue LL, LH, RL, RH;
551 GetSplitOp(N->getOperand(3), RL, RH);
554 N->getOperand(1), LL, RL, N->getOperand(4));
LegalizeIntegerTypes.cpp 3284 SDValue LL, LH, RL, RH;
3286 GetExpandedInteger(N->getOperand(1), RL, RH);
3287 Lo = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), LL, RL);
3297 SDValue LL, LH, RL, RH;
3299 GetExpandedInteger(N->getOperand(1), RL, RH);
3303 LL, LH, RL, RH))
3327 SDValue RLL = DAG.getNode(ISD::AND, dl, NVT, RL, Mask);
3341 SDValue RLH = DAG.getNode(ISD::SRL, dl, NVT, RL, Shift);
3361 DAG.getNode(ISD::MUL, dl, NVT, RL, LH)));
3450 SDValue LL, LH, RL, RH
    [all...]
LegalizeVectorTypes.cpp 1890 SDValue LL, LH, RL, RH;
1899 GetSplitVector(N->getOperand(1), RL, RH);
1901 std::tie(RL, RH) = DAG.SplitVectorOperand(N, 1);
1903 Lo = DAG.getNode(N->getOpcode(), DL, LoVT, LL, RL, N->getOperand(2));
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 905 auto RL = std::make_unique<CGRecordLayout>(
909 RL->NonVirtualBases.swap(Builder.NonVirtualBases);
910 RL->CompleteObjectVirtualBases.swap(Builder.VirtualBases);
913 RL->FieldInfo.swap(Builder.Fields);
916 RL->BitFields.swap(Builder.BitFields);
924 RL->print(llvm::outs());
947 llvm::StructType *ST = RL->getLLVMType();
962 unsigned FieldNo = RL->getLLVMFieldNo(FD);
972 const CGBitFieldInfo &Info = RL->getBitFieldInfo(FD);
973 llvm::Type *ElementTy = ST->getTypeAtIndex(RL->getLLVMFieldNo(FD))
    [all...]
CGExprConstant.cpp 601 const CGRecordLayout &RL =
603 const CGBitFieldInfo &Info = RL.getBitFieldInfo(Field);
CGClass.cpp 966 const CGRecordLayout &RL =
968 const CGBitFieldInfo &BFInfo = RL.getBitFieldInfo(FirstField);
CGDebugInfo.cpp 1867 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
1897 BaseOffset = CGM.getContext().toBits(RL.getBaseClassOffset(Base));
2175 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
2176 if (!RL.hasExtendableVFPtr())
2207 if (RL.getPrimaryBase())
2769 const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID);
2812 FieldOffset = RL.getFieldOffset(FieldNo);
3498 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD);
3499 if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) {
CGExpr.cpp 4281 const CGRecordLayout &RL =
4283 const CGBitFieldInfo &Info = RL.getBitFieldInfo(field);
4291 unsigned Idx = RL.getLLVMFieldNo(field);
CGExprScalar.cpp 2843 const ASTRecordLayout &RL = CGF.getContext().getASTRecordLayout(RD);
2854 assert(i < RL.getFieldCount() && "offsetof field in wrong type");
2857 int64_t OffsetInt = RL.getFieldOffset(i) /
2876 const ASTRecordLayout &RL = CGF.getContext().getASTRecordLayout(RD);
2884 CharUnits OffsetInt = RL.getBaseClassOffset(BaseRD);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
ImmutableSet.h 523 TreeTy *RL = getLeft(R);
526 if (getHeight(RR) >= getHeight(RL))
527 return createNode(createNode(L,V,RL), R, RR);
529 assert(!isEmpty(RL) && "RL cannot be empty because it has a height >= 1");
531 TreeTy *RLL = getLeft(RL);
532 TreeTy *RLR = getRight(RL);
534 return createNode(createNode(L,V,RLL), RL, createNode(RLR,R,RR));
  /src/external/gpl3/gdb.old/dist/sim/rx/
rx.c 258 #define RL(r) \
327 #define RL(r)
408 RL (o->reg);
420 RL (o->reg);
422 RL (rd->op[2].reg);
1560 RL (v);
1610 RL(4);
1611 RL(5);
1880 RL (3);
1899 RL (3)
    [all...]
  /src/external/gpl3/gdb/dist/sim/rx/
rx.c 258 #define RL(r) \
327 #define RL(r)
408 RL (o->reg);
420 RL (o->reg);
422 RL (rd->op[2].reg);
1560 RL (v);
1610 RL(4);
1611 RL(5);
1880 RL (3);
1899 RL (3)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 646 SDValue LL, RL, AddendL, AddendH;
649 RL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
663 AddendL, LL, RL);
671 AddendL, LL, RL);
682 AddendL, LL, RL);
685 LH = DAG.getNode(ISD::MUL, dl, MVT::i32, LH, RL);
  /src/external/apache2/llvm/dist/clang/lib/AST/
RecordLayoutBuilder.cpp 3388 const ASTRecordLayout *RL;
3390 RL = &getASTObjCImplementationLayout(ID);
3392 RL = &getASTObjCInterfaceLayout(Container);
3407 assert(Index < RL->getFieldCount() && "Ivar is not inside record layout!");
3409 return RL->getFieldOffset(Index);
ASTContext.cpp 7357 const ASTRecordLayout &RL = Ctx->getASTRecordLayout(RD);
7358 Offset = RL.getFieldOffset(FD->getFieldIndex());
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 3524 // (ll * rl) + ((lh * rl) << 64) + ((ll * rh) << 64)
3529 // (ll * rl) - ((lh & rl) << 64) - ((ll & rh) << 64)
3534 // (ll * rl) - (((lh & rl) + (ll & rh)) << 64)
3537 SDValue RL = Op.getOperand(1);
3539 SDValue RH = DAG.getNode(ISD::SRA, DL, VT, RL, C63);
3544 LL, RL, Ops[1], Ops[0]);
3546 SDValue NegLHTimesRL = DAG.getNode(ISD::AND, DL, VT, LH, RL);
    [all...]

Completed in 87 milliseconds

1 2