/external/swiftshader/third_party/LLVM/tools/llvm-extract/ |
D | llvm-extract.cpp | 173 std::string ErrInfo; in main() local 174 if (GV->Materialize(&ErrInfo)) { in main() 175 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n"; in main() 187 std::string ErrInfo; in main() local 188 if (G->Materialize(&ErrInfo)) { in main() 189 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n"; in main() 197 std::string ErrInfo; in main() local 198 if (F->Materialize(&ErrInfo)) { in main() 199 errs() << argv[0] << ": error reading input: " << ErrInfo << "\n"; in main()
|
/external/swiftshader/third_party/LLVM/tools/bugpoint/ |
D | OptimizerDriver.cpp | 53 std::string ErrInfo; in writeProgramToFile() local 54 tool_output_file Out(Filename.c_str(), ErrInfo, in writeProgramToFile() 56 if (ErrInfo.empty()) { in writeProgramToFile() 131 std::string ErrInfo; in runPasses() local 132 tool_output_file InFile(inputFilename.c_str(), ErrInfo, in runPasses() 136 if (!ErrInfo.empty()) { in runPasses()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/ |
D | MipsInstrInfo.cpp | 710 static bool verifyInsExtInstruction(const MachineInstr &MI, StringRef &ErrInfo, in verifyInsExtInstruction() argument 718 ErrInfo = "Position is not an immediate!"; in verifyInsExtInstruction() 723 ErrInfo = "Position operand is out of range!"; in verifyInsExtInstruction() 729 ErrInfo = "Size operand is not an immediate!"; in verifyInsExtInstruction() 734 ErrInfo = "Size operand is out of range!"; in verifyInsExtInstruction() 739 ErrInfo = "Position + Size is out of range!"; in verifyInsExtInstruction() 748 StringRef &ErrInfo) const { in verifyInstruction() 756 return verifyInsExtInstruction(MI, ErrInfo, 0, 32, 0, 32, 0, 32); in verifyInstruction() 763 return verifyInsExtInstruction(MI, ErrInfo, 0, 32, 1, 64, 32, 64); in verifyInstruction() 769 return verifyInsExtInstruction(MI, ErrInfo, 32, 64, 0, 32, 32, 64); in verifyInstruction() [all …]
|
D | MipsInstrInfo.h | 157 StringRef &ErrInfo) const override;
|
/external/swiftshader/third_party/LLVM/tools/opt/ |
D | GraphPrinters.cpp | 30 std::string ErrInfo; in WriteGraphToFile() local 31 tool_output_file F(Filename.c_str(), ErrInfo); in WriteGraphToFile() 33 if (ErrInfo.empty()) { in WriteGraphToFile()
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | GVMaterializer.h | 48 virtual bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0) = 0; 61 virtual bool MaterializeModule(Module *M, std::string *ErrInfo = 0) = 0;
|
D | Module.h | 400 bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0); 410 bool MaterializeAll(std::string *ErrInfo = 0); 417 bool MaterializeAllPermanently(std::string *ErrInfo = 0);
|
D | GlobalValue.h | 252 bool Materialize(std::string *ErrInfo = 0);
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | Module.cpp | 352 bool Module::Materialize(GlobalValue *GV, std::string *ErrInfo) { in Materialize() argument 354 return Materializer->Materialize(GV, ErrInfo); in Materialize() 363 bool Module::MaterializeAll(std::string *ErrInfo) { in MaterializeAll() argument 366 return Materializer->MaterializeModule(this, ErrInfo); in MaterializeAll() 369 bool Module::MaterializeAllPermanently(std::string *ErrInfo) { in MaterializeAllPermanently() argument 370 if (MaterializeAll(ErrInfo)) in MaterializeAllPermanently()
|
D | Globals.cpp | 35 bool GlobalValue::Materialize(std::string *ErrInfo) { in Materialize() argument 36 return getParent()->Materialize(this, ErrInfo); in Materialize()
|
/external/swiftshader/third_party/LLVM/examples/BrainF/ |
D | BrainFDriver.cpp | 110 std::string ErrInfo; in main() local 111 out = new raw_fd_ostream(OutputFilename.c_str(), ErrInfo, in main()
|
/external/swiftshader/third_party/LLVM/tools/lto/ |
D | LTOCodeGenerator.cpp | 157 std::string ErrInfo; in writeMergedModules() local 158 tool_output_file Out(path, ErrInfo, in writeMergedModules() 160 if (!ErrInfo.empty()) { in writeMergedModules()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
D | SIInstrInfo.cpp | 2613 StringRef &ErrInfo) const { in verifyInstruction() 2629 ErrInfo = "Instruction has wrong number of operands."; in verifyInstruction() 2647 ErrInfo = "inlineasm operand has incorrect register class."; in verifyInstruction() 2658 ErrInfo = "FPImm Machine Operands are not supported. ISel should bitcast " in verifyInstruction() 2668 ErrInfo = "Illegal immediate value for operand."; in verifyInstruction() 2683 ErrInfo = "Illegal immediate value for operand."; in verifyInstruction() 2694 ErrInfo = "Expected immediate, but got non-immediate"; in verifyInstruction() 2713 ErrInfo = "Operand has incorrect register class."; in verifyInstruction() 2722 ErrInfo = "SDWA is not supported on this target"; in verifyInstruction() 2738 ErrInfo = "Only VGPRs allowed as operands in SDWA instructions on VI"; in verifyInstruction() [all …]
|
D | SIInstrInfo.h | 693 StringRef &ErrInfo) const override;
|
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/ |
D | BitcodeReader.h | 195 virtual bool Materialize(GlobalValue *GV, std::string *ErrInfo = 0); 196 virtual bool MaterializeModule(Module *M, std::string *ErrInfo = 0);
|
D | BitcodeReader.cpp | 2861 bool BitcodeReader::Materialize(GlobalValue *GV, std::string *ErrInfo) { in Materialize() argument 2873 if (ErrInfo) *ErrInfo = ErrorString; in Materialize() 2912 bool BitcodeReader::MaterializeModule(Module *M, std::string *ErrInfo) { in MaterializeModule() argument 2920 Materialize(F, ErrInfo)) in MaterializeModule()
|
/external/llvm/lib/Target/AMDGPU/ |
D | SIInstrInfo.cpp | 1649 StringRef &ErrInfo) const { in verifyInstruction() 1660 ErrInfo = "Instruction has wrong number of operands."; in verifyInstruction() 1667 ErrInfo = "FPImm Machine Operands are not supported. ISel should bitcast " in verifyInstruction() 1677 ErrInfo = "Illegal immediate value for operand."; in verifyInstruction() 1686 ErrInfo = "Illegal immediate value for operand."; in verifyInstruction() 1696 ErrInfo = "Expected immediate, but got non-immediate"; in verifyInstruction() 1715 ErrInfo = "Operand has incorrect register class."; in verifyInstruction() 1752 ErrInfo = "VOP* instruction uses the constant bus more than once"; in verifyInstruction() 1766 ErrInfo = "v_div_scale_{f32|f64} require src0 = src1 or src2"; in verifyInstruction() 1776 ErrInfo = "VALU instruction does not implicitly read exec mask"; in verifyInstruction()
|
D | SIInstrInfo.h | 399 StringRef &ErrInfo) const override;
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
D | ARMBaseInstrInfo.h | 258 bool verifyInstruction(const MachineInstr *MI, StringRef &ErrInfo) const;
|
D | ARMBaseInstrInfo.cpp | 2745 StringRef &ErrInfo) const { in verifyInstruction() 2747 ErrInfo = "Pseudo flag setting opcodes only exist in Selection DAG"; in verifyInstruction()
|
/external/swiftshader/third_party/LLVM/include/llvm/Target/ |
D | TargetInstrInfo.h | 686 bool verifyInstruction(const MachineInstr *MI, StringRef &ErrInfo) const { in verifyInstruction() argument
|
/external/llvm/lib/Target/ARM/ |
D | ARMBaseInstrInfo.h | 355 StringRef &ErrInfo) const override;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/ |
D | ARMBaseInstrInfo.h | 386 StringRef &ErrInfo) const override;
|
/external/llvm/include/llvm/Target/ |
D | TargetInstrInfo.h | 1296 StringRef &ErrInfo) const { in verifyInstruction() argument
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | TargetInstrInfo.h | 1389 StringRef &ErrInfo) const { in verifyInstruction() argument
|