Home
last modified time | relevance | path

Searched refs:Ctx (Results 1 – 25 of 435) sorted by relevance

12345678910>>...18

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCObjectFileInfo.cpp53 EHFrameSection = Ctx->getMachOSection( in initMachOMCObjectFileInfo()
73 = Ctx->getMachOSection("__TEXT", "__text", in initMachOMCObjectFileInfo()
77 = Ctx->getMachOSection("__DATA", "__data", 0, SectionKind::getData()); in initMachOMCObjectFileInfo()
83 = Ctx->getMachOSection("__DATA", "__thread_data", in initMachOMCObjectFileInfo()
87 = Ctx->getMachOSection("__DATA", "__thread_bss", in initMachOMCObjectFileInfo()
93 = Ctx->getMachOSection("__DATA", "__thread_vars", in initMachOMCObjectFileInfo()
97 TLSThreadInitSection = Ctx->getMachOSection( in initMachOMCObjectFileInfo()
102 = Ctx->getMachOSection("__TEXT", "__cstring", in initMachOMCObjectFileInfo()
106 = Ctx->getMachOSection("__TEXT","__ustring", 0, in initMachOMCObjectFileInfo()
109 = Ctx->getMachOSection("__TEXT", "__literal4", in initMachOMCObjectFileInfo()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DWasmObjectFile.cpp71 static uint8_t readUint8(WasmObjectFile::ReadContext &Ctx) { in readUint8() argument
72 if (Ctx.Ptr == Ctx.End) in readUint8()
74 return *Ctx.Ptr++; in readUint8()
77 static uint32_t readUint32(WasmObjectFile::ReadContext &Ctx) { in readUint32() argument
78 if (Ctx.Ptr + 4 > Ctx.End) in readUint32()
80 uint32_t Result = support::endian::read32le(Ctx.Ptr); in readUint32()
81 Ctx.Ptr += 4; in readUint32()
85 static int32_t readFloat32(WasmObjectFile::ReadContext &Ctx) { in readFloat32() argument
86 if (Ctx.Ptr + 4 > Ctx.End) in readFloat32()
89 memcpy(&Result, Ctx.Ptr, sizeof(Result)); in readFloat32()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceCompiler.cpp65 void Compiler::run(const Ice::ClFlags &Flags, GlobalContext &Ctx, in run() argument
71 Ctx.getStrError() in run()
73 Ctx.getErrorStatus()->assign(EC_Args); in run()
77 TimerMarker T(Ice::TimerStack::TT_szmain, &Ctx); in run()
79 Ctx.emitFileHeader(); in run()
80 Ctx.startWorkerThreads(); in run()
88 std::unique_ptr<PNaClTranslator> PTranslator(new PNaClTranslator(&Ctx)); in run()
103 std::unique_ptr<WasmTranslator> WTranslator(new WasmTranslator(&Ctx)); in run()
110 Ctx.getStrError() << "WASM support not enabled\n"; in run()
111 Ctx.getErrorStatus()->assign(EC_Args); in run()
[all …]
DIceASanInstrumentation.cpp95 RzArray->setName(Ctx, RzArrayName); in instrumentGlobals()
96 RzSizes->setName(Ctx, RzSizesName); in instrumentGlobals()
109 RzLeft->setName(Ctx, nextRzName()); in instrumentGlobals()
110 RzRight->setName(Ctx, nextRzName()); in instrumentGlobals()
161 Ctx, TargetFunc->getSignature(), TargetFunc->getCallingConv(), in instrumentGlobals()
163 SubstProto->setName(Ctx, SubstName); in instrumentGlobals()
202 OstreamLocker _(Ctx); in instrumentGlobals()
203 Ctx->getStrDump() << "========= Instrumented Globals =========\n"; in instrumentGlobals()
205 Global->dump(Ctx->getStrDump()); in instrumentGlobals()
249 auto *ByteCount = ConstantInteger32::create(Ctx, IceType_i32, RzSize); in instrumentFuncStart()
[all …]
DIceTranslator.cpp27 Translator::Translator(GlobalContext *Ctx) in Translator() argument
28 : Ctx(Ctx), NextSequenceNumber(GlobalContext::getFirstSequenceNumber()), in Translator()
50 OstreamLocker L(Ctx); in checkIfUnnamedNameSafe()
51 Ostream &Stream = Ctx->getStrDump(); in checkIfUnnamedNameSafe()
60 Ctx->optQueueBlockingPush(makeUnique<CfgOptWorkItem>(std::move(Func))); in translateFcn()
65 Ctx->emitQueueBlockingPush(makeUnique<EmitterWorkItem>( in lowerGlobals()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/MCTargetDesc/
DAVRAsmBackend.cpp38 const MCFixup &Fixup, MCContext *Ctx = nullptr) { in signed_width() argument
48 if (Ctx) { in signed_width()
49 Ctx->reportFatalError(Fixup.getLoc(), Diagnostic); in signed_width()
57 const MCFixup &Fixup, MCContext *Ctx = nullptr) { in unsigned_width() argument
66 if (Ctx) { in unsigned_width()
67 Ctx->reportFatalError(Fixup.getLoc(), Diagnostic); in unsigned_width()
76 MCContext *Ctx = nullptr) { in adjustBranch() argument
79 unsigned_width(Size + 1, Value, std::string("branch target"), Fixup, Ctx); in adjustBranch()
87 MCContext *Ctx = nullptr) { in adjustRelativeBranch() argument
90 signed_width(Size + 1, Value, std::string("branch target"), Fixup, Ctx); in adjustRelativeBranch()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCExpr.h146 static const MCConstantExpr *create(int64_t Value, MCContext &Ctx,
329 static const MCSymbolRefExpr *create(const MCSymbol *Symbol, MCContext &Ctx) { in create() argument
330 return MCSymbolRefExpr::create(Symbol, VK_None, Ctx); in create()
334 MCContext &Ctx, SMLoc Loc = SMLoc());
336 MCContext &Ctx);
387 MCContext &Ctx, SMLoc Loc = SMLoc());
389 static const MCUnaryExpr *createLNot(const MCExpr *Expr, MCContext &Ctx, SMLoc Loc = SMLoc()) {
390 return create(LNot, Expr, Ctx, Loc);
393 static const MCUnaryExpr *createMinus(const MCExpr *Expr, MCContext &Ctx, SMLoc Loc = SMLoc()) {
394 return create(Minus, Expr, Ctx, Loc);
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64ELFObjectWriter.cpp38 unsigned getRelocType(MCContext &Ctx, const MCValue &Target,
59 MCContext &Ctx) { in isNonILP32reloc() argument
64 Ctx.reportError(Fixup.getLoc(), BAD_ILP32_MOV(MOVW_UABS_G3)); in isNonILP32reloc()
67 Ctx.reportError(Fixup.getLoc(), BAD_ILP32_MOV(MOVW_UABS_G2)); in isNonILP32reloc()
70 Ctx.reportError(Fixup.getLoc(), BAD_ILP32_MOV(MOVW_SABS_G2)); in isNonILP32reloc()
73 Ctx.reportError(Fixup.getLoc(), BAD_ILP32_MOV(MOVW_UABS_G2_NC)); in isNonILP32reloc()
76 Ctx.reportError(Fixup.getLoc(), BAD_ILP32_MOV(MOVW_SABS_G1)); in isNonILP32reloc()
79 Ctx.reportError(Fixup.getLoc(), BAD_ILP32_MOV(MOVW_UABS_G1_NC)); in isNonILP32reloc()
82 Ctx.reportError(Fixup.getLoc(), BAD_ILP32_MOV(TLSLD_MOVW_DTPREL_G2)); in isNonILP32reloc()
85 Ctx.reportError(Fixup.getLoc(), BAD_ILP32_MOV(TLSLD_MOVW_DTPREL_G1_NC)); in isNonILP32reloc()
[all …]
DAArch64AsmBackend.cpp167 uint64_t Value, MCContext &Ctx, in adjustFixupValue() argument
175 Ctx.reportError(Fixup.getLoc(), "fixup value out of range"); in adjustFixupValue()
186 Ctx.reportError(Fixup.getLoc(), "fixup value out of range"); in adjustFixupValue()
188 Ctx.reportError(Fixup.getLoc(), "fixup not sufficiently aligned"); in adjustFixupValue()
197 Ctx.reportError(Fixup.getLoc(), "fixup value out of range"); in adjustFixupValue()
204 Ctx.reportError(Fixup.getLoc(), "fixup value out of range"); in adjustFixupValue()
206 Ctx.reportError(Fixup.getLoc(), "fixup must be 2-byte aligned"); in adjustFixupValue()
213 Ctx.reportError(Fixup.getLoc(), "fixup value out of range"); in adjustFixupValue()
215 Ctx.reportError(Fixup.getLoc(), "fixup must be 4-byte aligned"); in adjustFixupValue()
222 Ctx.reportError(Fixup.getLoc(), "fixup value out of range"); in adjustFixupValue()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/MachO/
DTextStubCommon.cpp21 void ScalarTraits<FlowStringRef>::output(const FlowStringRef &Value, void *Ctx, in output() argument
23 ScalarTraits<StringRef>::output(Value, Ctx, OS); in output()
25 StringRef ScalarTraits<FlowStringRef>::input(StringRef Value, void *Ctx, in input() argument
27 return ScalarTraits<StringRef>::input(Value, Ctx, Out.value); in input()
47 const auto *Ctx = reinterpret_cast<TextAPIContext *>(IO); in output() local
48 assert((!Ctx || Ctx->FileKind != FileType::Invalid) && in output()
51 if (Ctx && Ctx->FileKind == TBD_V3 && Values.count(PlatformKind::macOS) && in output()
82 const auto *Ctx = reinterpret_cast<TextAPIContext *>(IO); in input() local
83 assert((!Ctx || Ctx->FileKind != FileType::Invalid) && in input()
87 if (Ctx && Ctx->FileKind == FileType::TBD_V3) { in input()
[all …]
DTextStub.cpp288 const auto *Ctx = reinterpret_cast<TextAPIContext *>(IO.getContext()); in mapping() local
289 assert((!Ctx || (Ctx && Ctx->FileKind != FileType::Invalid)) && in mapping()
293 if (Ctx->FileKind == FileType::TBD_V1) in mapping()
300 if (Ctx->FileKind == FileType::TBD_V3) in mapping()
310 const auto *Ctx = reinterpret_cast<TextAPIContext *>(IO.getContext()); in mapping() local
311 assert((!Ctx || (Ctx && Ctx->FileKind != FileType::Invalid)) && in mapping()
317 if (Ctx->FileKind == FileType::TBD_V3) in mapping()
613 auto Ctx = reinterpret_cast<TextAPIContext *>(IO.getContext()); in denormalize() local
614 assert(Ctx); in denormalize()
617 File->setPath(Ctx->Path); in denormalize()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCDisassembler/
DMCExternalSymbolizer.cpp93 MCSymbol *Sym = Ctx.getOrCreateSymbol(Name); in tryAddingSymbolicOperand()
94 Add = MCSymbolRefExpr::create(Sym, Ctx); in tryAddingSymbolicOperand()
96 Add = MCConstantExpr::create((int)SymbolicOp.AddSymbol.Value, Ctx); in tryAddingSymbolicOperand()
104 MCSymbol *Sym = Ctx.getOrCreateSymbol(Name); in tryAddingSymbolicOperand()
105 Sub = MCSymbolRefExpr::create(Sym, Ctx); in tryAddingSymbolicOperand()
107 Sub = MCConstantExpr::create((int)SymbolicOp.SubtractSymbol.Value, Ctx); in tryAddingSymbolicOperand()
113 Off = MCConstantExpr::create(SymbolicOp.Value, Ctx); in tryAddingSymbolicOperand()
119 LHS = MCBinaryExpr::createSub(Add, Sub, Ctx); in tryAddingSymbolicOperand()
121 LHS = MCUnaryExpr::createMinus(Sub, Ctx); in tryAddingSymbolicOperand()
123 Expr = MCBinaryExpr::createAdd(LHS, Off, Ctx); in tryAddingSymbolicOperand()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/Disassembler/
DAArch64ExternalSymbolizer.cpp96 const MCRegisterInfo &MCRI = *Ctx.getRegisterInfo(); in tryAddingSymbolicOperand()
122 const MCRegisterInfo &MCRI = *Ctx.getRegisterInfo(); in tryAddingSymbolicOperand()
171 MCSymbol *Sym = Ctx.getOrCreateSymbol(Name); in tryAddingSymbolicOperand()
174 Add = MCSymbolRefExpr::create(Sym, Variant, Ctx); in tryAddingSymbolicOperand()
176 Add = MCSymbolRefExpr::create(Sym, Ctx); in tryAddingSymbolicOperand()
178 Add = MCConstantExpr::create(SymbolicOp.AddSymbol.Value, Ctx); in tryAddingSymbolicOperand()
186 MCSymbol *Sym = Ctx.getOrCreateSymbol(Name); in tryAddingSymbolicOperand()
187 Sub = MCSymbolRefExpr::create(Sym, Ctx); in tryAddingSymbolicOperand()
189 Sub = MCConstantExpr::create(SymbolicOp.SubtractSymbol.Value, Ctx); in tryAddingSymbolicOperand()
195 Off = MCConstantExpr::create(SymbolicOp.Value, Ctx); in tryAddingSymbolicOperand()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/XCore/
DXCoreTargetObjectFile.cpp20 void XCoreTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM){ in Initialize() argument
21 TargetLoweringObjectFileELF::Initialize(Ctx, TM); in Initialize()
23 BSSSection = Ctx.getELFSection(".dp.bss", ELF::SHT_NOBITS, in Initialize()
26 BSSSectionLarge = Ctx.getELFSection(".dp.bss.large", ELF::SHT_NOBITS, in Initialize()
29 DataSection = Ctx.getELFSection(".dp.data", ELF::SHT_PROGBITS, in Initialize()
32 DataSectionLarge = Ctx.getELFSection(".dp.data.large", ELF::SHT_PROGBITS, in Initialize()
35 DataRelROSection = Ctx.getELFSection(".dp.rodata", ELF::SHT_PROGBITS, in Initialize()
38 DataRelROSectionLarge = Ctx.getELFSection( in Initialize()
42 Ctx.getELFSection(".cp.rodata", ELF::SHT_PROGBITS, in Initialize()
45 Ctx.getELFSection(".cp.rodata.large", ELF::SHT_PROGBITS, in Initialize()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DCrossDSOCFI.cpp104 LLVMContext &Ctx = M.getContext(); in buildCFICheck() local
106 "__cfi_check", Type::getVoidTy(Ctx), Type::getInt64Ty(Ctx), in buildCFICheck()
107 Type::getInt8PtrTy(Ctx), Type::getInt8PtrTy(Ctx)); in buildCFICheck()
127 BasicBlock *BB = BasicBlock::Create(Ctx, "entry", F); in buildCFICheck()
128 BasicBlock *ExitBB = BasicBlock::Create(Ctx, "exit", F); in buildCFICheck()
130 BasicBlock *TrapBB = BasicBlock::Create(Ctx, "fail", F); in buildCFICheck()
133 M.getOrInsertFunction("__cfi_check_fail", Type::getVoidTy(Ctx), in buildCFICheck()
134 Type::getInt8PtrTy(Ctx), Type::getInt8PtrTy(Ctx)); in buildCFICheck()
144 ConstantInt *CaseTypeId = ConstantInt::get(Type::getInt64Ty(Ctx), TypeId); in buildCFICheck()
145 BasicBlock *TestBB = BasicBlock::Create(Ctx, "test", F); in buildCFICheck()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DMachO.cpp30 void jitLink_MachO(std::unique_ptr<JITLinkContext> Ctx) { in jitLink_MachO() argument
35 StringRef Data = Ctx->getObjectBuffer().getBuffer(); in jitLink_MachO()
37 Ctx->notifyFailed(make_error<JITLinkError>("Truncated MachO buffer")); in jitLink_MachO()
46 << Ctx->getObjectBuffer().getBufferIdentifier() << "\"\n"; in jitLink_MachO()
50 Ctx->notifyFailed( in jitLink_MachO()
69 return jitLink_MachO_arm64(std::move(Ctx)); in jitLink_MachO()
71 return jitLink_MachO_x86_64(std::move(Ctx)); in jitLink_MachO()
73 Ctx->notifyFailed(make_error<JITLinkError>("MachO-64 CPU type not valid")); in jitLink_MachO()
77 Ctx->notifyFailed(make_error<JITLinkError>("MachO magic not valid")); in jitLink_MachO()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DWasm.h234 Error parseCustomSection(WasmSection &Sec, ReadContext &Ctx);
237 Error parseTypeSection(ReadContext &Ctx);
238 Error parseImportSection(ReadContext &Ctx);
239 Error parseFunctionSection(ReadContext &Ctx);
240 Error parseTableSection(ReadContext &Ctx);
241 Error parseMemorySection(ReadContext &Ctx);
242 Error parseGlobalSection(ReadContext &Ctx);
243 Error parseEventSection(ReadContext &Ctx);
244 Error parseExportSection(ReadContext &Ctx);
245 Error parseStartSection(ReadContext &Ctx);
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DYAMLTraits.h610 EmptyContext Ctx;
611 this->processKey(Key, Val, true, Ctx);
614 void mapRequired(const char *Key, T &Val, Context &Ctx) {
615 this->processKey(Key, Val, true, Ctx);
619 EmptyContext Ctx;
620 mapOptionalWithContext(Key, Val, Ctx);
625 EmptyContext Ctx;
626 mapOptionalWithContext(Key, Val, Default, Ctx);
631 mapOptionalWithContext(const char *Key, T &Val, Context &Ctx) {
635 this->processKey(Key, Val, false, Ctx);
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DTargetRegistry.h62 MCStreamer *createNullStreamer(MCContext &Ctx);
82 createAsmStreamer(MCContext &Ctx, std::unique_ptr<formatted_raw_ostream> OS,
87 MCStreamer *createELFStreamer(MCContext &Ctx,
92 MCStreamer *createMachOStreamer(MCContext &Ctx,
98 MCStreamer *createWasmStreamer(MCContext &Ctx,
103 MCStreamer *createXCOFFStreamer(MCContext &Ctx,
109 MCRelocationInfo *createMCRelocationInfo(const Triple &TT, MCContext &Ctx);
113 void *DisInfo, MCContext *Ctx,
157 MCContext &Ctx);
165 MCContext &Ctx);
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/
DBitReader.cpp40 LLVMContext &Ctx = *unwrap(ContextRef); in LLVMParseBitcodeInContext() local
42 Expected<std::unique_ptr<Module>> ModuleOrErr = parseBitcodeFile(Buf, Ctx); in LLVMParseBitcodeInContext()
62 LLVMContext &Ctx = *unwrap(ContextRef); in LLVMParseBitcodeInContext2() local
65 expectedToErrorOrAndEmitErrors(Ctx, parseBitcodeFile(Buf, Ctx)); in LLVMParseBitcodeInContext2()
81 LLVMContext &Ctx = *unwrap(ContextRef); in LLVMGetBitcodeModuleInContext() local
84 getOwningLazyBitcodeModule(std::move(Owner), Ctx); in LLVMGetBitcodeModuleInContext()
108 LLVMContext &Ctx = *unwrap(ContextRef); in LLVMGetBitcodeModuleInContext2() local
112 Ctx, getOwningLazyBitcodeModule(std::move(Owner), Ctx)); in LLVMGetBitcodeModuleInContext2()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/MCTargetDesc/
DX86ELFObjectWriter.cpp33 unsigned getRelocType(MCContext &Ctx, const MCValue &Target,
91 static void checkIs32(MCContext &Ctx, SMLoc Loc, X86_64RelType Type) { in checkIs32() argument
93 Ctx.reportError(Loc, in checkIs32()
97 static unsigned getRelocType64(MCContext &Ctx, SMLoc Loc, in getRelocType64() argument
187 checkIs32(Ctx, Loc, Type); in getRelocType64()
190 checkIs32(Ctx, Loc, Type); in getRelocType64()
193 checkIs32(Ctx, Loc, Type); in getRelocType64()
196 checkIs32(Ctx, Loc, Type); in getRelocType64()
199 checkIs32(Ctx, Loc, Type); in getRelocType64()
203 if (!Ctx.getAsmInfo()->canRelaxRelocations()) in getRelocType64()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCMCInstLower.cpp41 MCContext &Ctx = AP.OutContext; in GetSymbolFromOperand() local
60 MCSymbol *Sym = Ctx.getOrCreateSymbol(Name); in GetSymbolFromOperand()
83 MCContext &Ctx = Printer.OutContext; in GetSymbolRef() local
116 const MCExpr *Expr = MCSymbolRefExpr::create(Symbol, RefKind, Ctx); in GetSymbolRef()
122 MCBinaryExpr::createAdd(Expr, MCConstantExpr::create(32768, Ctx), Ctx); in GetSymbolRef()
126 MCConstantExpr::create(MO.getOffset(), Ctx), in GetSymbolRef()
127 Ctx); in GetSymbolRef()
133 const MCExpr *PB = MCSymbolRefExpr::create(MF->getPICBaseSymbol(), Ctx); in GetSymbolRef()
134 Expr = MCBinaryExpr::createSub(Expr, PB, Ctx); in GetSymbolRef()
140 Expr = PPCMCExpr::createLo(Expr, IsDarwin, Ctx); in GetSymbolRef()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86TargetObjectFile.cpp68 X86FreeBSDTargetObjectFile::Initialize(MCContext &Ctx, in Initialize() argument
70 TargetLoweringObjectFileELF::Initialize(Ctx, TM); in Initialize()
75 X86FuchsiaTargetObjectFile::Initialize(MCContext &Ctx, in Initialize() argument
77 TargetLoweringObjectFileELF::Initialize(Ctx, TM); in Initialize()
82 X86LinuxNaClTargetObjectFile::Initialize(MCContext &Ctx, in Initialize() argument
84 TargetLoweringObjectFileELF::Initialize(Ctx, TM); in Initialize()
88 void X86SolarisTargetObjectFile::Initialize(MCContext &Ctx, in Initialize() argument
90 TargetLoweringObjectFileELF::Initialize(Ctx, TM); in Initialize()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTXMCExpr.h41 MCContext &Ctx);
44 MCContext &Ctx) { in createConstantFPHalf() argument
45 return create(VK_NVPTX_HALF_PREC_FLOAT, Flt, Ctx); in createConstantFPHalf()
49 MCContext &Ctx) { in createConstantFPSingle() argument
50 return create(VK_NVPTX_SINGLE_PREC_FLOAT, Flt, Ctx); in createConstantFPSingle()
54 MCContext &Ctx) { in createConstantFPDouble() argument
55 return create(VK_NVPTX_DOUBLE_PREC_FLOAT, Flt, Ctx); in createConstantFPDouble()
101 *create(const MCSymbolRefExpr *SymExpr, MCContext &Ctx);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/
DARMMachORelocationInfo.cpp21 ARMMachORelocationInfo(MCContext &Ctx) : MCRelocationInfo(Ctx) {} in ARMMachORelocationInfo() argument
27 return ARMMCExpr::createUpper16(SubExpr, Ctx); in createExprForCAPIVariantKind()
29 return ARMMCExpr::createLower16(SubExpr, Ctx); in createExprForCAPIVariantKind()
40 MCRelocationInfo *llvm::createARMMachORelocationInfo(MCContext &Ctx) { in createARMMachORelocationInfo() argument
41 return new ARMMachORelocationInfo(Ctx); in createARMMachORelocationInfo()

12345678910>>...18