/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | GVNHoist.cpp | 144 VNType VN; member 152 bool operator==(const CHIArg &A) { return VN == A.VN; } in operator ==() 172 void insert(Instruction *I, GVN::ValueTable &VN) { in insert() argument 174 unsigned V = VN.lookupOrAdd(I); in insert() 187 void insert(LoadInst *Load, GVN::ValueTable &VN) { in insert() argument 189 unsigned V = VN.lookupOrAdd(Load->getPointerOperand()); in insert() 204 void insert(StoreInst *Store, GVN::ValueTable &VN) { in insert() argument 210 VNtoStores[{VN.lookupOrAdd(Ptr), VN.lookupOrAdd(Val)}].push_back(Store); in insert() 224 void insert(CallInst *Call, GVN::ValueTable &VN) { in insert() argument 228 unsigned V = VN.lookupOrAdd(Call); in insert() [all …]
|
D | GVN.cpp | 1238 VN.lookupOrAdd(I); in PerformLoadPRE() 1746 uint32_t LVN = VN.lookupOrAdd(LHS); in propagateEquality() 1751 uint32_t RVN = VN.lookupOrAdd(RHS); in propagateEquality() 1842 uint32_t NextNum = VN.getNextUnusedValueNumber(); in propagateEquality() 1843 uint32_t Num = VN.lookupOrAddCmp(Cmp->getOpcode(), NotPred, Op0, Op1); in propagateEquality() 1910 unsigned Num = VN.lookupOrAdd(LI); in processInstruction() 1973 uint32_t NextNum = VN.getNextUnusedValueNumber(); in processInstruction() 1974 unsigned Num = VN.lookupOrAdd(I); in processInstruction() 2019 VN.setDomTree(DT); in runImpl() 2021 VN.setAliasAnalysis(&RunAA); in runImpl() [all …]
|
/external/boringssl/src/ssl/test/runner/poly1305/ |
D | sum_s390x.s | 117 VN MOD26, h0, h0 \ 118 VN MOD26, h3, h3 \ 123 VN MOD26, h1, h1 \ 124 VN MOD26, h4, h4 \ 131 VN MOD26, h2, h2 \ 132 VN MOD26, h0, h0 \ 136 VN MOD26, h3, h3 \ 145 VN d1, d4, d4 \ 149 VN MOD26, d0, d0 \ 150 VN MOD26, d1, d1 \ [all …]
|
D | sum_vmsl_s390x.s | 175 VN t6, h0, h0 \ // h0 clear carry 178 VN t6, h1, h1 \ // h1 clear carry 179 VN t7, h2, h2 \ // h2 clear carry 181 VN t6, h3, h3 \ // h3 clear carry 182 VN t6, h4, h4 \ // h4 clear carry 183 VN t7, h5, h5 \ // h5 clear carry 201 VN t6, h3, h3 \ // clear carry bits 202 VN t6, h4, h4 \ 203 VN t7, h5, h5 \ 229 VN t5, h0, h0 \ [all …]
|
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
D | RPCChannel.h | 151 uint8_t VN = V ? 1 : 0; in serialize() local 152 return C.appendBytes(reinterpret_cast<const char *>(&VN), 1); in serialize() 157 uint8_t VN = 0; in deserialize() local 158 if (auto Err = C.readBytes(reinterpret_cast<char *>(&VN), 1)) in deserialize() 161 V = (VN != 0); in deserialize()
|
/external/llvm/lib/IR/ |
D | ValueSymbolTable.cpp | 70 ValueName *VN = makeUniqueName(V, UniqueName); in reinsertValue() local 71 V->setValueName(VN); in reinsertValue()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | ValueSymbolTable.cpp | 89 ValueName *VN = makeUniqueName(V, UniqueName); in reinsertValue() local 90 V->setValueName(VN); in reinsertValue()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
D | GVN.cpp | 450 ValueTable VN; member in __anonf8ddaacc0211::GVN 475 VN.erase(I); in markInstructionForDeletion() 481 AliasAnalysis *getAliasAnalysis() const { return VN.getAliasAnalysis(); } in getAliasAnalysis() 1269 AliasAnalysis::Location Loc = VN.getAliasAnalysis()->getLocation(LI); in processNonLocalLoad() 1635 VN.lookup_or_add(NewInsts[i]); in processNonLocalLoad() 1936 addToLeaderTable(VN.lookup_or_add(LHS), RHS, Root); in propagateEquality() 2043 unsigned Num = VN.lookup_or_add(LI); in processInstruction() 2091 uint32_t NextNum = VN.getNextUnusedValueNumber(); in processInstruction() 2092 unsigned Num = VN.lookup_or_add(I); in processInstruction() 2132 VN.setAliasAnalysis(&getAnalysis<AliasAnalysis>()); in runOnFunction() [all …]
|
/external/llvm/include/llvm/Transforms/Scalar/ |
D | GVN.h | 53 VN.erase(I); in markInstructionForDeletion() 58 AliasAnalysis *getAliasAnalysis() const { return VN.getAliasAnalysis(); } in getAliasAnalysis() 113 ValueTable VN;
|
/external/llvm/lib/Transforms/Scalar/ |
D | GVN.cpp | 1552 VN.lookupOrAdd(I); in PerformLoadPRE() 1920 uint32_t LVN = VN.lookupOrAdd(LHS); in propagateEquality() 1925 uint32_t RVN = VN.lookupOrAdd(RHS); in propagateEquality() 2016 uint32_t NextNum = VN.getNextUnusedValueNumber(); in propagateEquality() 2017 uint32_t Num = VN.lookupOrAddCmp(Cmp->getOpcode(), NotPred, Op0, Op1); in propagateEquality() 2084 unsigned Num = VN.lookupOrAdd(LI); in processInstruction() 2147 uint32_t NextNum = VN.getNextUnusedValueNumber(); in processInstruction() 2148 unsigned Num = VN.lookupOrAdd(I); in processInstruction() 2192 VN.setDomTree(DT); in runImpl() 2194 VN.setAliasAnalysis(&RunAA); in runImpl() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Scalar/ |
D | GVN.h | 78 VN.erase(I); in markInstructionForDeletion() 83 AliasAnalysis *getAliasAnalysis() const { return VN.getAliasAnalysis(); } in getAliasAnalysis() 166 ValueTable VN;
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | RegisterCoalescer.cpp | 1321 unsigned VN = VNI->id; in ComputeUltimateVN() local 1324 if (ThisValNoAssignments[VN] >= 0) in ComputeUltimateVN() 1325 return ThisValNoAssignments[VN]; in ComputeUltimateVN() 1326 assert(ThisValNoAssignments[VN] != -2 && "Cyclic value numbers"); in ComputeUltimateVN() 1333 return ThisValNoAssignments[VN] = NewVNInfo.size()-1; in ComputeUltimateVN() 1340 return ThisValNoAssignments[VN] = OtherValNoAssignments[OtherValNo->id]; in ComputeUltimateVN() 1344 ThisValNoAssignments[VN] = -2; in ComputeUltimateVN() 1348 return ThisValNoAssignments[VN] = UltimateVN; in ComputeUltimateVN() 1544 unsigned VN = VNI->id; in JoinIntervals() local 1545 if (LHSValNoAssignments[VN] >= 0 || VNI->isUnused()) in JoinIntervals() [all …]
|
/external/cldr/tools/java/org/unicode/cldr/util/data/external/ |
D | subdivisionData.txt | 3761 RO-VN Vrancea 4860 VN-01 Lai Chau 4861 VN-02 Lao Cai 4862 VN-03 Ha Giang 4863 VN-04 Cao Bang 4864 VN-05 Son La 4865 VN-06 Yen Bai 4866 VN-07 Tuyen Quang 4867 VN-09 Lang Song 4868 VN-13 Quang Ninh [all …]
|
/external/icu/icu4c/source/data/region/ |
D | sw_CD.txt | 33 VN{"Vietnamu"}
|
D | sw_KE.txt | 68 VN{"Vietnamu"}
|
D | yi.txt | 217 VN{"וויעטנאַם"}
|
D | af.txt | 286 VN{"Viëtnam"} 300 UN{"VN"}
|
D | nl.txt | 286 VN{"Vietnam"} 300 UN{"VN"}
|
/external/llvm/lib/TableGen/ |
D | Record.cpp | 1273 VarInit *VarInit::get(const std::string &VN, RecTy *T) { in get() argument 1274 Init *Value = StringInit::get(VN); in get() 1278 VarInit *VarInit::get(Init *VN, RecTy *T) { in get() argument 1282 Key TheKey(std::make_pair(T, VN)); in get() 1285 if (!I) I.reset(new VarInit(VN, T)); in get() 1501 static void ProfileDagInit(FoldingSetNodeID &ID, Init *V, const std::string &VN, in ProfileDagInit() argument 1505 ID.AddString(VN); in ProfileDagInit() 1518 DagInit::get(Init *V, const std::string &VN, in get() argument 1525 ProfileDagInit(ID, V, VN, ArgRange, NameRange); in get() 1531 DagInit *I = new DagInit(V, VN, ArgRange, NameRange); in get() [all …]
|
/external/llvm/include/llvm/TableGen/ |
D | Record.h | 916 explicit VarInit(Init *VN, RecTy *T) in VarInit() argument 917 : TypedInit(IK_VarInit, T), VarName(VN) {} in VarInit() 926 static VarInit *get(const std::string &VN, RecTy *T); 927 static VarInit *get(Init *VN, RecTy *T); 1113 DagInit(Init *V, const std::string &VN, in DagInit() argument 1116 : TypedInit(IK_DagInit, DagRecTy::get()), Val(V), ValName(VN), in DagInit() 1127 static DagInit *get(Init *V, const std::string &VN, 1130 static DagInit *get(Init *V, const std::string &VN,
|
/external/pcre/dist2/src/sljit/ |
D | sljitNativeARM_64.c | 62 #define VN(vn) (freg_map[vn] << 5) macro 1370 FAIL_IF(push_inst(compiler, (FCVTZS ^ inv_bits) | RD(dst_r) | VN(src))); in sljit_emit_fop1_conv_sw_from_f64() 1423 return push_inst(compiler, (FCMP ^ inv_bits) | VN(src1) | VM(src2)); in sljit_emit_fop1_cmp() 1450 FAIL_IF(push_inst(compiler, (FMOV ^ inv_bits) | VD(dst_r) | VN(src))); in sljit_emit_fop1() 1456 FAIL_IF(push_inst(compiler, (FNEG ^ inv_bits) | VD(dst_r) | VN(src))); in sljit_emit_fop1() 1459 FAIL_IF(push_inst(compiler, (FABS ^ inv_bits) | VD(dst_r) | VN(src))); in sljit_emit_fop1() 1462 …FAIL_IF(push_inst(compiler, FCVT | ((op & SLJIT_F32_OP) ? (1 << 22) : (1 << 15)) | VD(dst_r) | VN(… in sljit_emit_fop1() 1497 FAIL_IF(push_inst(compiler, (FADD ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2() 1500 FAIL_IF(push_inst(compiler, (FSUB ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2() 1503 FAIL_IF(push_inst(compiler, (FMUL ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2))); in sljit_emit_fop2() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/TableGen/ |
D | Record.cpp | 1416 VarInit *VarInit::get(StringRef VN, RecTy *T) { in get() argument 1417 Init *Value = StringInit::get(VN); in get() 1421 VarInit *VarInit::get(Init *VN, RecTy *T) { in get() argument 1425 Key TheKey(std::make_pair(T, VN)); in get() 1429 I = new(Allocator) VarInit(VN, T); in get() 1696 static void ProfileDagInit(FoldingSetNodeID &ID, Init *V, StringInit *VN, in ProfileDagInit() argument 1700 ID.AddPointer(VN); in ProfileDagInit() 1713 DagInit::get(Init *V, StringInit *VN, ArrayRef<Init *> ArgRange, in get() argument 1718 ProfileDagInit(ID, V, VN, ArgRange, NameRange); in get() 1725 DagInit *I = new(Mem) DagInit(V, VN, ArgRange.size(), NameRange.size()); in get() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/TableGen/ |
D | Record.h | 989 explicit VarInit(Init *VN, RecTy *T) in VarInit() argument 990 : TypedInit(IK_VarInit, T), VarName(VN) {} in VarInit() 1000 static VarInit *get(StringRef VN, RecTy *T); 1001 static VarInit *get(Init *VN, RecTy *T); 1222 DagInit(Init *V, StringInit *VN, unsigned NumArgs, unsigned NumArgNames) in DagInit() argument 1223 : TypedInit(IK_DagInit, DagRecTy::get()), Val(V), ValName(VN), in DagInit() 1236 static DagInit *get(Init *V, StringInit *VN, ArrayRef<Init *> ArgRange, 1238 static DagInit *get(Init *V, StringInit *VN,
|
/external/swiftshader/third_party/LLVM/lib/TableGen/ |
D | Record.cpp | 1300 VarInit *VarInit::get(const std::string &VN, RecTy *T) { in get() argument 1305 Key TheKey(std::make_pair(T, VN)); in get() 1308 if (!I) I = new VarInit(VN, T); in get() 1547 const std::string &VN, in ProfileDagInit() argument 1551 ID.AddString(VN); in ProfileDagInit() 1564 DagInit::get(Init *V, const std::string &VN, in get() argument 1571 ProfileDagInit(ID, V, VN, ArgRange, NameRange); in get() 1577 DagInit *I = new DagInit(V, VN, ArgRange, NameRange); in get() 1584 DagInit::get(Init *V, const std::string &VN, in get() argument 1599 return DagInit::get(V, VN, Args, Names); in get()
|
/external/swiftshader/third_party/LLVM/include/llvm/TableGen/ |
D | Record.h | 1063 explicit VarInit(const std::string &VN, RecTy *T) in VarInit() argument 1064 : TypedInit(T), VarName(VN) {} in VarInit() 1070 static VarInit *get(const std::string &VN, RecTy *T); 1071 static VarInit *get(Init *VN, RecTy *T); 1264 DagInit(Init *V, const std::string &VN, in DagInit() argument 1267 : TypedInit(DagRecTy::get()), Val(V), ValName(VN), in DagInit() 1275 static DagInit *get(Init *V, const std::string &VN, 1278 static DagInit *get(Init *V, const std::string &VN,
|