HomeSort by: relevance | last modified time | path
    Searched defs:CA (Results 1 - 23 of 23) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
CtorUtils.cpp 38 Constant *CA = ConstantArray::get(ATy, CAList);
41 if (CA->getType() == OldCA->getType()) {
42 GCL->setInitializer(CA);
48 new GlobalVariable(CA->getType(), GCL->isConstant(), GCL->getLinkage(),
49 CA, "", GCL->getThreadLocalMode());
68 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
70 Result.reserve(CA->getNumOperands());
71 for (auto &V : CA->operands()) {
92 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
94 for (auto &V : CA->operands())
    [all...]
ModuleUtils.cpp 80 auto *CA = cast<ConstantArray>(GV->getInitializer());
81 for (auto &Op : CA->operands()) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPULowerModuleLDSPass.cpp 61 auto *CA = cast<ConstantArray>(GV->getInitializer());
62 for (auto &Op : CA->operands()) {
70 if (Init.size() == CA->getNumOperands()) {
AMDGPUPrintfRuntimeBinding.cpp 186 if (auto *CA = dyn_cast<ConstantDataArray>(Init)) {
187 if (CA->isString())
188 Str = CA->getAsCString();
254 auto *CA = dyn_cast<ConstantDataArray>(Init);
255 if (IsZeroValue || (CA && CA->isString())) {
257 IsZeroValue ? 1 : (strlen(CA->getAsCString().data()) + 1);
432 auto *CA = dyn_cast<ConstantDataArray>(Init);
433 if (IsZeroValue || (CA && CA->isString()))
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/config/libbid/
bid64_add.c 122 UINT128 CA, CT, CT_new;
475 __mul_64x64_to_128 (CA, saved_ca, 0x3333333333333334ull);
477 coefficient_a = CA.w[1] >> 1;
bid64_sqrt.c 66 UINT128 CA, CT;
152 __mul_64x128_short (CA, coefficient_x, CT);
156 // convert CA to DP
157 da_h = CA.w[1];
158 da_l = CA.w[0];
165 // get sign(sqrt(CA)-Q)
166 R = CA.w[0] - Q * Q;
184 C4 = CA.w[0] << 2;
186 // get sign(-sqrt(CA)+Midpoint)
195 C4 = CA.w[0]
    [all...]
bid_div_macros.h 39 UINT128 CB, CB2, CB4, CB8, CQB, CA;
108 __sub_128_128 (CA, CX, CQB);
109 if (__unsigned_compare_ge_128 (CA, CY)) {
110 __sub_128_128 (CA, CA, CY);
112 if (__unsigned_compare_ge_128 (CA, CY)) {
113 __sub_128_128 (CA, CA, CY);
117 pCR->w[1] = CA.w[1];
118 pCR->w[0] = CA.w[0]
    [all...]
bid64_div.c 34 * CA= A*10^(15+j), j=0 for A>=B, 1 otherwise
42 * CA=R*10^m, Q=Q*10^m
45 * if (CA<2^64)
46 * Q += CA/B (64-bit unsigned divide)
84 UINT128 CA, CT;
215 __mul_64x64_to_128 (CA, A, T);
267 __mul_64x64_to_128 (CA, R, T);
275 if (!CA.w[1]) {
276 Q2 = CA.w[0] / B;
279 R = CA.w[0] - Q2 * B
    [all...]
bid_inline_add.h 78 UINT128 CA, CT, CT_new;
306 // test range of ca
345 __mul_64x64_to_128 (CA, saved_ca, 0x3333333333333334ull);
347 coefficient_a = CA.w[1] >> 1;
  /src/external/gpl3/gcc.old/dist/libgcc/config/libbid/
bid64_add.c 122 UINT128 CA, CT, CT_new;
475 __mul_64x64_to_128 (CA, saved_ca, 0x3333333333333334ull);
477 coefficient_a = CA.w[1] >> 1;
bid64_sqrt.c 66 UINT128 CA, CT;
152 __mul_64x128_short (CA, coefficient_x, CT);
156 // convert CA to DP
157 da_h = CA.w[1];
158 da_l = CA.w[0];
165 // get sign(sqrt(CA)-Q)
166 R = CA.w[0] - Q * Q;
184 C4 = CA.w[0] << 2;
186 // get sign(-sqrt(CA)+Midpoint)
195 C4 = CA.w[0]
    [all...]
bid_div_macros.h 39 UINT128 CB, CB2, CB4, CB8, CQB, CA;
108 __sub_128_128 (CA, CX, CQB);
109 if (__unsigned_compare_ge_128 (CA, CY)) {
110 __sub_128_128 (CA, CA, CY);
112 if (__unsigned_compare_ge_128 (CA, CY)) {
113 __sub_128_128 (CA, CA, CY);
117 pCR->w[1] = CA.w[1];
118 pCR->w[0] = CA.w[0]
    [all...]
bid64_div.c 34 * CA= A*10^(15+j), j=0 for A>=B, 1 otherwise
42 * CA=R*10^m, Q=Q*10^m
45 * if (CA<2^64)
46 * Q += CA/B (64-bit unsigned divide)
84 UINT128 CA, CT;
215 __mul_64x64_to_128 (CA, A, T);
267 __mul_64x64_to_128 (CA, R, T);
275 if (!CA.w[1]) {
276 Q2 = CA.w[0] / B;
279 R = CA.w[0] - Q2 * B
    [all...]
bid_inline_add.h 78 UINT128 CA, CT, CT_new;
306 // test range of ca
345 __mul_64x64_to_128 (CA, saved_ca, 0x3333333333333334ull);
347 coefficient_a = CA.w[1] >> 1;
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
RDFGraph.h 900 NodeAddr<CodeNode*> CA = NA;
901 NA = CA.Addr->getFirstMember(G);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemorySSA.cpp 424 ClobberAlias CA =
426 if (CA.IsClobber) {
428 // Not used: CA.AR;
583 ClobberAlias CA =
585 if (CA.IsClobber)
586 return {MD, true, CA.AR};
1453 ClobberAlias CA = instructionClobbersQuery(MD, MU, UseMLOC, *AA);
1454 if (CA.IsClobber) {
1456 LocInfo.AR = CA.AR;
InlineCost.cpp 562 InlineCostCallAnalyzer CA(*F, Call, IndirectCallParams, TTI,
564 if (CA.analyze().isSuccess()) {
567 Cost -= std::max(0, CA.getThreshold() - CA.getCost());
2499 InlineCostCallAnalyzer CA(*Call.getCalledFunction(), Call, Params, CalleeTTI,
2502 auto R = CA.analyze();
2505 return CA.getCost();
2606 InlineCostCallAnalyzer CA(*Callee, Call, Params, CalleeTTI,
2608 InlineResult ShouldInline = CA.analyze();
2610 LLVM_DEBUG(CA.dump())
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
PatternMatch.h 96 const auto *CA = dyn_cast<ConstantAggregate>(V);
97 if (!CA)
105 // CheckValue returns false if CA cannot satisfy this constraint.
106 auto CheckValue = [&](const ConstantAggregate *CA) {
107 for (const Value *Op : CA->operand_values()) {
111 const auto *CA = dyn_cast<ConstantAggregate>(Op);
112 if (!CA)
114 if (Seen.insert(CA).second)
115 Worklist.emplace_back(CA);
121 if (!CheckValue(CA))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonConstPropagation.cpp 1677 APInt A, CA;
1680 evaluateCLBi(A, Zeros, Ones, CA);
1683 const Constant *C = intToConst(CA);
1712 APInt A, CA;
1715 evaluateCTBi(A, Zeros, Ones, CA);
1718 const Constant *C = intToConst(CA);
1758 APInt A, CA;
1761 evaluateEXTRACTi(A, Bits, Offset, Signed, CA);
1764 const Constant *C = intToConst(CA);
HexagonISelLowering.cpp 1917 auto *CA = dyn_cast<ConstantSDNode>(Ptr);
1918 if (!CA)
1920 unsigned Addr = CA->getZExtValue();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 1527 Constant *BA = nullptr, *CA = nullptr;
1529 m_Constant(CA))) &&
1530 BA->isElementWiseEqual(CA) && A->getType() == DestTy) {
1531 Constant *WideCurrShAmt = ConstantExpr::getSExt(CA, DestTy);
1538 Constant::mergeUndefsWith(Constant::mergeUndefsWith(NewShAmt, BA), CA);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
MachODump.cpp 6141 SectionRef CA = get_section(O, "__OBJC2", "__category_list");
6142 if (CA == SectionRef())
6143 CA = get_section(O, "__DATA", "__objc_catlist");
6144 if (CA == SectionRef())
6145 CA = get_section(O, "__DATA_CONST", "__objc_catlist");
6146 if (CA == SectionRef())
6147 CA = get_section(O, "__DATA_DIRTY", "__objc_catlist");
6148 info.S = CA;
6149 walk_pointer_list_64("category", CA, O, &info, print_category64_t);
6222 SectionRef CA = get_section(O, "__OBJC2", "__category_list")
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 22265 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
22266 SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(DAG.getDataLayout()),

Completed in 77 milliseconds