Home
last modified time | relevance | path

Searched refs:SRE (Results 1 - 22 of 22) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/XCore/MCTargetDesc/
H A DXCoreInstPrinter.cpp53 const MCSymbolRefExpr *SRE; in printExpr() local
56 SRE = dyn_cast<MCSymbolRefExpr>(BE->getLHS()); in printExpr()
58 assert(SRE && CE && "Binary expression must be sym+const."); in printExpr()
61 SRE = dyn_cast<MCSymbolRefExpr>(Expr); in printExpr()
62 assert(SRE && "Unexpected MCExpr type."); in printExpr()
64 assert(SRE->getKind() == MCSymbolRefExpr::VK_None); in printExpr()
66 SRE->getSymbol().print(OS, MAI); in printExpr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARC/MCTargetDesc/
H A DARCInstPrinter.cpp110 const MCSymbolRefExpr *SRE; in printExpr() local
119 SRE = dyn_cast<MCSymbolRefExpr>(BE->getLHS()); in printExpr()
121 assert(SRE && CE && "Binary expression must be sym+const."); in printExpr()
124 SRE = dyn_cast<MCSymbolRefExpr>(Expr); in printExpr()
125 assert(SRE && "Unexpected MCExpr type."); in printExpr()
127 assert(SRE->getKind() == MCSymbolRefExpr::VK_None); in printExpr()
131 SRE->getSymbol().print(OS, MAI); in printExpr()
/third_party/python/Modules/_sre/
H A Dsre_lib.h16 SRE(at)(SRE_STATE* state, const SRE_CHAR* ptr, SRE_CODE at) in at()
104 SRE(charset)(SRE_STATE* state, const SRE_CODE* set, SRE_CODE ch) in charset()
191 SRE(charset_loc_ignore)(SRE_STATE* state, const SRE_CODE* set, SRE_CODE ch) in charset_loc_ignore()
195 if (SRE(charset)(state, set, lo)) in charset_loc_ignore()
199 return up != lo && SRE(charset)(state, set, up); in charset_loc_ignore()
202 LOCAL(Py_ssize_t) SRE(match)(SRE_STATE* state, const SRE_CODE* pattern, int toplevel);
205 SRE(count)(SRE_STATE* state, const SRE_CODE* pattern, Py_ssize_t maxcount) in count()
222 while (ptr < end && SRE(charset)(state, pattern + 2, *ptr)) in count()
320 i = SRE(match)(state, pattern, 0); in count()
336 /* The macros below should be used to protect recursive SRE(matc
525 } SRE(match_context); global() typedef
1809 #undef SRE global() macro
[all...]
H A Dsre.c29 * This version of the SRE library can be redistributed under CNRI's
39 " SRE 2.2.2 Copyright (c) 1997-2002 by Secret Labs AB ";
232 #define SRE(F) sre_ucs1_##F macro
239 #define SRE(F) sre_ucs2_##F macro
246 #define SRE(F) sre_ucs4_##F macro
1980 PyErr_SetString(PyExc_RuntimeError, "invalid SRE code"); in _validate()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/MCTargetDesc/
H A DBPFInstPrinter.cpp36 const MCSymbolRefExpr *SRE; in printExpr() local
39 SRE = dyn_cast<MCSymbolRefExpr>(BE->getLHS()); in printExpr()
41 SRE = dyn_cast<MCSymbolRefExpr>(Expr); in printExpr()
42 assert(SRE && "Unexpected MCExpr type."); in printExpr()
44 MCSymbolRefExpr::VariantKind Kind = SRE->getKind(); in printExpr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
H A DMCExpr.cpp56 const MCSymbolRefExpr &SRE = cast<MCSymbolRefExpr>(*this); in print() local
57 const MCSymbol &Sym = SRE.getSymbol(); in print()
69 if (SRE.getKind() != MCSymbolRefExpr::VK_None) in print()
70 SRE.printVariantKind(OS); in print()
713 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(this); in evaluateAsRelocatableImpl() local
714 const MCSymbol &Sym = SRE->getSymbol(); in evaluateAsRelocatableImpl()
717 if (Sym.isVariable() && SRE->getKind() == MCSymbolRefExpr::VK_None && in evaluateAsRelocatableImpl()
719 bool IsMachO = SRE->hasSubsectionsViaSymbols(); in evaluateAsRelocatableImpl()
742 Res = MCValue::get(SRE, nullptr, 0); in evaluateAsRelocatableImpl()
899 const MCSymbolRefExpr *SRE
[all...]
H A DMCELFStreamer.cpp463 void MCELFStreamer::finalizeCGProfileEntry(const MCSymbolRefExpr *&SRE) { in finalizeCGProfileEntry() argument
464 const MCSymbol *S = &SRE->getSymbol(); in finalizeCGProfileEntry()
468 SRE->getLoc(), Twine("Reference to undefined temporary symbol ") + in finalizeCGProfileEntry()
474 SRE = in finalizeCGProfileEntry()
475 MCSymbolRefExpr::create(S, SRE->getKind(), getContext(), SRE->getLoc()); in finalizeCGProfileEntry()
H A DMCWinCOFFStreamer.cpp222 const MCSymbolRefExpr *SRE = MCSymbolRefExpr::create(Symbol, getContext()); in EmitCOFFSectionIndex() local
223 MCFixup Fixup = MCFixup::create(DF->getContents().size(), SRE, FK_SecRel_2); in EmitCOFFSectionIndex()
H A DMCCodeView.cpp259 const MCSymbolRefExpr *SRE = in emitFileChecksumOffset() local
262 OS.EmitValueImpl(SRE, 4); in emitFileChecksumOffset()
651 const MCSymbolRefExpr *SRE = MCSymbolRefExpr::create(RangeBegin, Ctx); in encodeDefRange() local
653 MCBinaryExpr::createAdd(SRE, MCConstantExpr::create(Bias, Ctx), Ctx); in encodeDefRange()
H A DMCObjectStreamer.cpp690 const MCSymbolRefExpr &SRE = cast<MCSymbolRefExpr>(Offset); in EmitRelocDirective() local
691 if (SRE.getSymbol().isDefined()) { in EmitRelocDirective()
692 DF->getFixups().push_back(MCFixup::create(SRE.getSymbol().getOffset(), in EmitRelocDirective()
697 PendingFixups.emplace_back(&SRE.getSymbol(), DF, in EmitRelocDirective()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyInstPrinter.cpp243 auto SRE = static_cast<const MCSymbolRefExpr *>(Op.getExpr()); local
244 if (SRE->getKind() == MCSymbolRefExpr::VK_WASM_TYPEINDEX) {
245 auto &Sym = static_cast<const MCSymbolWasm &>(SRE->getSymbol());
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp50 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E); in EvaluateCRExpr() local
51 StringRef Name = SRE->getSymbol().getName(); in EvaluateCRExpr()
655 if (const MCSymbolRefExpr *SRE = dyn_cast<MCSymbolRefExpr>(Val)) in CreateFromMCExpr()
656 if (SRE->getKind() == MCSymbolRefExpr::VK_PPC_TLS) in CreateFromMCExpr()
657 return CreateTLSReg(SRE, S, E, IsPPC64); in CreateFromMCExpr()
1241 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E); in ExtractModifierFromExpr() local
1243 switch (SRE->getKind()) { in ExtractModifierFromExpr()
1275 return MCSymbolRefExpr::create(&SRE->getSymbol(), Context); in ExtractModifierFromExpr()
1328 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E); in FixupVariantKind() local
1331 switch (SRE in FixupVariantKind()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFStreamer.cpp102 void AnnotateTLSDescriptorSequence(const MCSymbolRefExpr *SRE) override;
414 void AnnotateTLSDescriptorSequence(const MCSymbolRefExpr *SRE) override;
559 if (const MCSymbolRefExpr *SRE = dyn_cast_or_null<MCSymbolRefExpr>(Value)) {
560 if (SRE->getKind() == MCSymbolRefExpr::VK_ARM_SBREL && !(Size == 4)) {
1155 if (const MCSymbolRefExpr *SRE = dyn_cast<MCSymbolRefExpr>(Value)) {
1156 const MCSymbol &Sym = SRE->getSymbol();
H A DARMAsmBackend.cpp542 if (const MCSymbolRefExpr *SRE = in adjustFixupValue()
544 if (SRE->getKind() == MCSymbolRefExpr::VK_TLSCALL) in adjustFixupValue()
644 if (const MCSymbolRefExpr *SRE = in adjustFixupValue()
646 if (SRE->getKind() == MCSymbolRefExpr::VK_TLSCALL) in adjustFixupValue()
H A DARMTargetStreamer.cpp116 ARMTargetStreamer::AnnotateTLSDescriptorSequence(const MCSymbolRefExpr *SRE) {} in AnnotateTLSDescriptorSequence() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/AsmParser/
H A DX86Operand.h107 if (auto *SRE = dyn_cast<MCSymbolRefExpr>(Val)) {
108 const MCSymbol &Sym = SRE->getSymbol();
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
H A DMCStreamer.h164 virtual void AnnotateTLSDescriptorSequence(const MCSymbolRefExpr *SRE);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp2111 const MCSymbolRefExpr &SRE = cast<MCSymbolRefExpr>(Expr); in printMCExpr() local
2112 const MCSymbol &Sym = SRE.getSymbol(); in printMCExpr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp646 else if (auto *SRE = dyn_cast<MCSymbolRefExpr>(E)) in printMCExpr()
647 OS << *SRE; in printMCExpr() local
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/
H A DAsmParser.cpp1318 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E); in applyModifierToExpr() local
1320 if (SRE->getKind() != MCSymbolRefExpr::VK_None) { in applyModifierToExpr()
1326 return MCSymbolRefExpr::create(&SRE->getSymbol(), Variant, getContext()); in applyModifierToExpr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp373 if (const MCSymbolRefExpr *SRE = dyn_cast<MCSymbolRefExpr>(MCE)) in SimplifyShortMoveForm()
374 if (SRE->getKind() == MCSymbolRefExpr::VK_TLVP) in SimplifyShortMoveForm()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp11430 const MCSymbolRefExpr *SRE = in parseDirectiveTLSDescSeq() local
11439 getTargetStreamer().AnnotateTLSDescriptorSequence(SRE); in parseDirectiveTLSDescSeq()

Completed in 54 milliseconds