Searched defs:VN (Results 1 - 7 of 7) sorted by relevance

/external/llvm/include/llvm/IR/
H A DValue.h216 void setValueName(ValueName *VN) { Name = VN; } argument
/external/llvm/lib/CodeGen/
H A DLiveIntervalAnalysis.cpp647 VNInfo* VN = Interval.getNextValue( local
652 getMBBEndIdx(startInst->getParent()), VN);
/external/llvm/include/llvm/TableGen/
H A DRecord.h1047 explicit VarInit(const std::string &VN, RecTy *T) argument
1048 : TypedInit(IK_VarInit, T), VarName(StringInit::get(VN)) {}
1049 explicit VarInit(Init *VN, RecTy *T) argument
1050 : TypedInit(IK_VarInit, T), VarName(VN) {}
1059 static VarInit *get(const std::string &VN, RecTy *T);
1060 static VarInit *get(Init *VN, RecTy *T);
1263 DagInit(Init *V, const std::string &VN, argument
1266 : TypedInit(IK_DagInit, DagRecTy::get()), Val(V), ValName(VN),
1277 static DagInit *get(Init *V, const std::string &VN,
1280 static DagInit *get(Init *V, const std::string &VN,
[all...]
/external/llvm/lib/TableGen/
H A DRecord.cpp1304 VarInit *VarInit::get(const std::string &VN, RecTy *T) { argument
1305 Init *Value = StringInit::get(VN);
1309 VarInit *VarInit::get(Init *VN, RecTy *T) { argument
1313 Key TheKey(std::make_pair(T, VN));
1316 if (!I) I = new VarInit(VN, T);
1537 static void ProfileDagInit(FoldingSetNodeID &ID, Init *V, const std::string &VN, argument
1541 ID.AddString(VN);
1554 DagInit::get(Init *V, const std::string &VN, argument
1561 ProfileDagInit(ID, V, VN, ArgRange, NameRange);
1567 DagInit *I = new DagInit(V, VN, ArgRang
1574 get(Init *V, const std::string &VN, const std::vector<std::pair<Init*, std::string> > &args) argument
[all...]
/external/pcre/dist/sljit/
H A DsljitNativeARM_64.c59 #define VN(vn) ((vn) << 5) macro
1586 FAIL_IF(push_inst(compiler, (FCVTZS ^ inv_bits) | RD(dst_r) | VN(src)));
1639 return push_inst(compiler, (FCMP ^ inv_bits) | VN(src1) | VM(src2));
1668 FAIL_IF(push_inst(compiler, (FMOV ^ inv_bits) | VD(dst_r) | VN(src)));
1674 FAIL_IF(push_inst(compiler, (FNEG ^ inv_bits) | VD(dst_r) | VN(src)));
1677 FAIL_IF(push_inst(compiler, (FABS ^ inv_bits) | VD(dst_r) | VN(src)));
1680 FAIL_IF(push_inst(compiler, FCVT | ((op & SLJIT_SINGLE_OP) ? (1 << 22) : (1 << 15)) | VD(dst_r) | VN(src)));
1718 FAIL_IF(push_inst(compiler, (FADD ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2)));
1721 FAIL_IF(push_inst(compiler, (FSUB ^ inv_bits) | VD(dst_r) | VN(src1) | VM(src2)));
1724 FAIL_IF(push_inst(compiler, (FMUL ^ inv_bits) | VD(dst_r) | VN(src
[all...]
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DRegionDataConstants.java1215 VN(new String[]{ enum constant in enum:RegionDataConstants.RegionDataEnum
/external/llvm/lib/Transforms/Scalar/
H A DGVN.cpp595 ValueTable VN; member in class:__anon26281::GVN
625 VN.erase(I);
631 AliasAnalysis *getAliasAnalysis() const { return VN.getAliasAnalysis(); }
1661 VN.lookup_or_add(NewInsts[i]);
1703 AliasAnalysis::Location Loc = VN.getAliasAnalysis()->getLocation(LI);
2108 uint32_t LVN = VN.lookup_or_add(LHS);
2113 uint32_t RVN = VN.lookup_or_add(RHS);
2184 uint32_t NextNum = VN.getNextUnusedValueNumber();
2185 uint32_t Num = VN.lookup_or_add_cmp(Cmp->getOpcode(), NotPred, Op0, Op1);
2235 unsigned Num = VN
[all...]

Completed in 658 milliseconds