Searched refs:Reloc (Results 1 - 25 of 193) sorted by last modified time

12345678

/external/swiftshader/third_party/subzero/src/
H A DIceASanInstrumentation.cpp367 if (auto *Reloc = llvm::dyn_cast<ConstantRelocatable>(Src)) {
369 Instr->getDest(), instrumentReloc(Reloc));
383 if (auto *Reloc = llvm::dyn_cast<ConstantRelocatable>(Data)) {
385 Context.getNode()->getCfg(), instrumentReloc(Reloc), Instr->getAddr());
397 ASanInstrumentation::instrumentReloc(ConstantRelocatable *Reloc) { argument
398 std::string DataName = Reloc->getName().toString();
402 Ctx, Reloc->getType(),
403 RelocatableTuple(Reloc->getOffset(), RelocOffsetArray(0),
405 Reloc->getEmitString()));
407 return Reloc;
452 auto *Reloc = llvm::dyn_cast<ConstantRelocatable>(Op); local
[all...]
H A DIceASanInstrumentation.h48 ConstantRelocatable *instrumentReloc(ConstantRelocatable *Reloc);
H A DIceAssemblerMIPS32.cpp234 const RelocOp Reloc,
241 emitFixup(createMIPS32Fixup(Reloc, OpRel));
402 const Operand *OpImm, const RelocOp Reloc) {
404 emitRtRsImm16Rel(Opcode, OpRt, OpRs, OpImm, Reloc, "addiu");
587 MIPS32Fixup *AssemblerMIPS32::createMIPS32Fixup(const RelocOp Reloc, argument
590 switch (Reloc) {
601 llvm::report_fatal_error("Fixup: Invalid Reloc type");
666 const RelocOp Reloc) {
672 emitFixup(createMIPS32Fixup(Reloc, OpRel));
685 const Operand *OpOff, const RelocOp Reloc) {
231 emitRtRsImm16Rel(IValueT Opcode, const Operand *OpRt, const Operand *OpRs, const Operand *OpImm, const RelocOp Reloc, const char *InsnName) argument
401 addiu(const Operand *OpRt, const Operand *OpRs, const Operand *OpImm, const RelocOp Reloc) argument
665 lui(const Operand *OpRt, const Operand *OpImm, const RelocOp Reloc) argument
684 ldc1(const Operand *OpRt, const Operand *OpBase, const Operand *OpOff, const RelocOp Reloc) argument
744 lwc1(const Operand *OpRt, const Operand *OpBase, const Operand *OpOff, const RelocOp Reloc) argument
1068 sdc1(const Operand *OpRt, const Operand *OpBase, const Operand *OpOff, const RelocOp Reloc) argument
1122 swc1(const Operand *OpRt, const Operand *OpBase, const Operand *OpOff, const RelocOp Reloc) argument
[all...]
H A DIceAssemblerMIPS32.h69 MIPS32Fixup *createMIPS32Fixup(const RelocOp Reloc, const Constant *RelOp);
83 const RelocOp Reloc, const char *InsnName);
131 const RelocOp Reloc);
193 void lui(const Operand *OpRt, const Operand *OpImm, const RelocOp Reloc);
196 const RelocOp Reloc);
203 const RelocOp Reloc);
290 const RelocOp Reloc);
295 const RelocOp Reloc);
H A DIceELFObjectWriter.cpp436 const auto *Reloc = local
440 NewFixup.set_kind(Reloc->hasFixup() ? Reloc->getFixup()
444 Reloc->getOffset(), Reloc->getDeclaration()->getName()));
447 Reloc->getOffset());
H A DIceInstMIPS32.cpp167 emitRelocOp(Str, Reloc);
753 if (Reloc == RO_No) {
756 Asm->addiu(getDest(), getSrc(0), getSrc(1), Reloc);
902 Asm->lui(getDest(), getSrc(0), Reloc);
908 Asm->ldc1(getDest(), Mem->getBase(), Mem->getOffset(), Reloc); local
930 Asm->lwc1(getDest(), Mem->getBase(), Mem->getOffset(), Reloc); local
1186 Asm->sdc1(getSrc(0), Mem->getBase(), Mem->getOffset(), Reloc); local
1200 Asm->swc1(getSrc(0), Mem->getBase(), Mem->getOffset(), Reloc); local
H A DIceInstMIPS32.h34 inline void emitRelocOp(Ostream &Str, RelocOp Reloc) { argument
35 switch (Reloc) {
363 RelocOp Reloc = RO_No) {
365 InstMIPS32UnaryopGPR(Func, Dest, Src, Reloc);
390 RelocOp Reloc = RO_No)
391 : InstMIPS32(Func, K, 1, Dest), Reloc(Reloc) {
397 const RelocOp Reloc; member in class:Ice::MIPS32::InstMIPS32UnaryopGPR
596 OperandMIPS32Mem *Mem, RelocOp Reloc = RO_No) {
598 InstMIPS32Load(Func, Value, Mem, Reloc);
672 const RelocOp Reloc; member in class:Ice::MIPS32::InstMIPS32Load
763 const RelocOp Reloc; member in class:Ice::MIPS32::InstMIPS32Store
1054 create(Cfg *Func, Variable *Dest, Operand *Src0, Operand *Src1, RelocOp Reloc) argument
1137 const RelocOp Reloc; member in class:Ice::MIPS32::InstMIPS32Imm16
[all...]
H A DIceInstX86BaseImpl.h759 } else if (const auto *Reloc = llvm::dyn_cast<ConstantRelocatable>(Src)) {
760 const auto FixupKind = (Reloc->getName().hasStdString() &&
761 Reloc->getName().toString() == GlobalOffsetTable)
764 AssemblerFixup *Fixup = Asm->createFixup(FixupKind, Reloc);
790 } else if (const auto *Reloc = llvm::dyn_cast<ConstantRelocatable>(Src)) {
791 const auto FixupKind = (Reloc->getName().hasStdString() &&
792 Reloc->getName().toString() == GlobalOffsetTable)
795 AssemblerFixup *Fixup = Asm->createFixup(FixupKind, Reloc);
H A DIceTargetLowering.cpp1084 const auto *Reloc = local
1087 Str << Reloc->getDeclaration()->getName();
1088 if (Reloc->hasFixup()) {
1092 if (RelocOffsetT Offset = Reloc->getOffset()) {
H A DIceTargetLoweringMIPS32.cpp6197 RelocOp Reloc) {
6205 Target->_lwc1(Dest, Mem, Reloc);
6214 RelocOp Reloc) {
6222 Target->_ldc1(Dest, Mem, Reloc);
6196 lwc1(Variable *Dest, OperandMIPS32Mem *Mem, RelocOp Reloc) argument
6213 ldc1(Variable *Dest, OperandMIPS32Mem *Mem, RelocOp Reloc) argument
H A DIceTargetLoweringMIPS32.h234 void _addiu(Variable *Dest, Variable *Src0, Operand *Src1, RelocOp Reloc) { argument
235 Context.insert<InstMIPS32Addiu>(Dest, Src0, Src1, Reloc);
338 void _ldc1(Variable *Value, OperandMIPS32Mem *Mem, RelocOp Reloc = RO_No) {
339 Context.insert<InstMIPS32Ldc1>(Value, Mem, Reloc);
350 void _lwc1(Variable *Value, OperandMIPS32Mem *Mem, RelocOp Reloc = RO_No) {
351 Context.insert<InstMIPS32Lwc1>(Value, Mem, Reloc);
354 void _lui(Variable *Dest, Operand *Src, RelocOp Reloc = RO_No) {
355 Context.insert<InstMIPS32Lui>(Dest, Src, Reloc);
624 void lwc1(Variable *Dest, OperandMIPS32Mem *Mem, RelocOp Reloc = RO_No);
625 void ldc1(Variable *Dest, OperandMIPS32Mem *Mem, RelocOp Reloc
[all...]
/external/swiftshader/src/Reactor/
H A DLLVMReactor.cpp213 llvm::TargetMachine *targetMachine = llvm::EngineBuilder::selectTarget(::module, architecture, "", MAttrs, llvm::Reloc::Default, llvm::CodeModel::JITDefault, &error);
/external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/
H A DExecutionEngine.h202 Reloc::Model RM = Reloc::Default,
465 Reloc::Model RelocModel;
479 RelocModel = Reloc::Default;
522 /// target is using. Defaults to target specific default "Reloc::Default".
523 EngineBuilder &setRelocationModel(Reloc::Model RM) {
581 Reloc::Model RM,
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCCodeGenInfo.h25 Reloc::Model RelocationModel;
32 void InitMCCodeGenInfo(Reloc::Model RM = Reloc::Default,
35 Reloc::Model getRelocationModel() const { return RelocationModel; }
H A DMCObjectFileInfo.h161 void InitMCObjectFileInfo(StringRef TT, Reloc::Model RM, CodeModel::Model CM,
279 Reloc::Model RelocM;
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DCodeGen.h21 namespace Reloc { namespace in namespace:llvm
H A DTargetRegistry.h75 Reloc::Model RM,
87 Reloc::Model RM,
277 MCCodeGenInfo *createMCCodeGenInfo(StringRef Triple, Reloc::Model RM,
333 Reloc::Model RM = Reloc::Default,
844 Reloc::Model RM, CodeModel::Model CM) {
1013 Reloc::Model RM,
331 createTargetMachine(StringRef Triple, StringRef CPU, StringRef Features, Reloc::Model RM = Reloc::Default, CodeModel::Model CM = CodeModel::Default) const argument
/external/swiftshader/third_party/LLVM/include/llvm/Target/
H A DTargetLowering.h73 TLSModel::Model getTLSModel(const GlobalValue *GV, Reloc::Model reloc);
H A DTargetMachine.h201 Reloc::Model getRelocationModel() const;
289 Reloc::Model RM, CodeModel::Model CM);
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1201 if (TM.getRelocationModel() == Reloc::Static &&
1215 if (TM.getRelocationModel() == Reloc::Static &&
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DELFCodeEmitter.cpp146 assert(TM.getRelocationModel() != Reloc::PIC_ &&
172 assert(TM.getRelocationModel() != Reloc::PIC_ &&
H A DLLVMTargetMachine.cpp113 Reloc::Model RM, CodeModel::Model CM)
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp3721 if (TM.getRelocationModel() == Reloc::PIC_) {
H A DTargetLowering.cpp43 TLSModel::Model getTLSModel(const GlobalValue *GV, Reloc::Model reloc) {
50 if (reloc == Reloc::PIC_) {
1069 if (getTargetMachine().getRelocationModel() != Reloc::PIC_)
1101 if (getTargetMachine().getRelocationModel() == Reloc::Static)
1105 if (getTargetMachine().getRelocationModel() == Reloc::DynamicNoPIC &&
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
H A DExecutionEngine.cpp425 Reloc::Model RM,

Completed in 468 milliseconds

12345678