HomeSort by: relevance | last modified time | path
    Searched defs:Model (Results 1 - 25 of 54) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64MCInstLower.cpp 121 TLSModel::Model Model;
124 Model = Printer.TM.getTLSModel(GV);
126 Model == TLSModel::LocalDynamic)
127 Model = TLSModel::GeneralDynamic;
135 Model = TLSModel::GeneralDynamic;
137 switch (Model) {
AArch64MCInstLower.cpp 121 TLSModel::Model Model;
124 Model = Printer.TM.getTLSModel(GV);
126 Model == TLSModel::LocalDynamic)
127 Model = TLSModel::GeneralDynamic;
135 Model = TLSModel::GeneralDynamic;
137 switch (Model) {
AArch64MCInstLower.cpp 121 TLSModel::Model Model;
124 Model = Printer.TM.getTLSModel(GV);
126 Model == TLSModel::LocalDynamic)
127 Model = TLSModel::GeneralDynamic;
135 Model = TLSModel::GeneralDynamic;
137 switch (Model) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/
TargetMachine.cpp 68 /// Returns the code generation relocation model. The choices are static, PIC,
70 Reloc::Model TargetMachine::getRelocationModel() const { return RM; }
72 /// Returns the code model. The choices are small, kernel, medium, large, and
74 CodeModel::Model TargetMachine::getCodeModel() const { return CMModel; }
76 /// Get the IR-specified TLS model for Var.
77 static TLSModel::Model getSelectedTLSModel(const GlobalValue *GV) {
91 llvm_unreachable("invalid TLS model");
97 Reloc::Model RM = getRelocationModel();
152 // Due to the AIX linkage model, any global with default visibility is
170 TLSModel::Model TargetMachine::getTLSModel(const GlobalValue *GV) const
    [all...]
TargetMachine.cpp 68 /// Returns the code generation relocation model. The choices are static, PIC,
70 Reloc::Model TargetMachine::getRelocationModel() const { return RM; }
72 /// Returns the code model. The choices are small, kernel, medium, large, and
74 CodeModel::Model TargetMachine::getCodeModel() const { return CMModel; }
76 /// Get the IR-specified TLS model for Var.
77 static TLSModel::Model getSelectedTLSModel(const GlobalValue *GV) {
91 llvm_unreachable("invalid TLS model");
97 Reloc::Model RM = getRelocationModel();
152 // Due to the AIX linkage model, any global with default visibility is
170 TLSModel::Model TargetMachine::getTLSModel(const GlobalValue *GV) const
    [all...]
TargetMachine.cpp 68 /// Returns the code generation relocation model. The choices are static, PIC,
70 Reloc::Model TargetMachine::getRelocationModel() const { return RM; }
72 /// Returns the code model. The choices are small, kernel, medium, large, and
74 CodeModel::Model TargetMachine::getCodeModel() const { return CMModel; }
76 /// Get the IR-specified TLS model for Var.
77 static TLSModel::Model getSelectedTLSModel(const GlobalValue *GV) {
91 llvm_unreachable("invalid TLS model");
97 Reloc::Model RM = getRelocationModel();
152 // Due to the AIX linkage model, any global with default visibility is
170 TLSModel::Model TargetMachine::getTLSModel(const GlobalValue *GV) const
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
CodeGen.h 10 // example, relocation model.
19 // Relocation model types.
22 enum Model { Static, PIC_, DynamicNoPIC, ROPI, RWPI, ROPI_RWPI };
25 // Code model types.
28 enum Model { Tiny, Small, Kernel, Medium, Large };
42 enum Model {
CodeGen.h 10 // example, relocation model.
19 // Relocation model types.
22 enum Model { Static, PIC_, DynamicNoPIC, ROPI, RWPI, ROPI_RWPI };
25 // Code model types.
28 enum Model { Tiny, Small, Kernel, Medium, Large };
42 enum Model {
CodeGen.h 10 // example, relocation model.
19 // Relocation model types.
22 enum Model { Static, PIC_, DynamicNoPIC, ROPI, RWPI, ROPI_RWPI };
25 // Code model types.
28 enum Model { Tiny, Small, Kernel, Medium, Large };
42 enum Model {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Target/
TargetOptions.h 55 enum Model {
264 /// EmulatedTLS - This flag enables emulated TLS model, using emutls
360 /// ThreadModel - This flag specifies the type of threading model to assume
362 ThreadModel::Model ThreadModel = ThreadModel::POSIX;
397 /// What exception model to use
TargetOptions.h 55 enum Model {
264 /// EmulatedTLS - This flag enables emulated TLS model, using emutls
360 /// ThreadModel - This flag specifies the type of threading model to assume
362 ThreadModel::Model ThreadModel = ThreadModel::POSIX;
397 /// What exception model to use
TargetOptions.h 55 enum Model {
264 /// EmulatedTLS - This flag enables emulated TLS model, using emutls
360 /// ThreadModel - This flag specifies the type of threading model to assume
362 ThreadModel::Model ThreadModel = ThreadModel::POSIX;
397 /// What exception model to use
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Z3Solver.cpp 31 // Enable model finding
32 Z3_set_param_value(Config, "model", "true");
180 /// Comparison of AST equality, not model equivalence.
204 Z3_model Model;
207 Z3Model(Z3Context &C, Z3_model ZM) : Context(C), Model(ZM) {
208 Z3_model_inc_ref(Context.Context, Model);
217 if (Model)
218 Z3_model_dec_ref(Context.Context, Model);
222 OS << Z3_model_to_string(Context.Context, Model);
844 Z3Model Model(Context, Z3_solver_get_model(Context.Context, Solver))
    [all...]
Z3Solver.cpp 31 // Enable model finding
32 Z3_set_param_value(Config, "model", "true");
180 /// Comparison of AST equality, not model equivalence.
204 Z3_model Model;
207 Z3Model(Z3Context &C, Z3_model ZM) : Context(C), Model(ZM) {
208 Z3_model_inc_ref(Context.Context, Model);
217 if (Model)
218 Z3_model_dec_ref(Context.Context, Model);
222 OS << Z3_model_to_string(Context.Context, Model);
844 Z3Model Model(Context, Z3_solver_get_model(Context.Context, Solver))
    [all...]
Z3Solver.cpp 31 // Enable model finding
32 Z3_set_param_value(Config, "model", "true");
180 /// Comparison of AST equality, not model equivalence.
204 Z3_model Model;
207 Z3Model(Z3Context &C, Z3_model ZM) : Context(C), Model(ZM) {
208 Z3_model_inc_ref(Context.Context, Model);
217 if (Model)
218 Z3_model_dec_ref(Context.Context, Model);
222 OS << Z3_model_to_string(Context.Context, Model);
844 Z3Model Model(Context, Z3_solver_get_model(Context.Context, Solver))
    [all...]
Host.cpp 590 unsigned *Model) {
592 *Model = (EAX >> 4) & 0xf; // Bits 4 - 7
597 // Examine extended model ID if family ID is 6 or F.
598 *Model += ((EAX >> 16) & 0xf) << 4; // Bits 16 - 19
603 getIntelProcessorTypeAndSubtype(unsigned Family, unsigned Model,
627 switch (Model) {
631 // Pentium Dual-Core processor, Intel Xeon processor, model
633 case 0x16: // Intel Celeron processor model 16h. All processors are
638 case 0x17: // Intel Core 2 Extreme processor, Intel Xeon processor, model
650 // As found in a Summer 2010 model iMac
    [all...]
Host.cpp 590 unsigned *Model) {
592 *Model = (EAX >> 4) & 0xf; // Bits 4 - 7
597 // Examine extended model ID if family ID is 6 or F.
598 *Model += ((EAX >> 16) & 0xf) << 4; // Bits 16 - 19
603 getIntelProcessorTypeAndSubtype(unsigned Family, unsigned Model,
627 switch (Model) {
631 // Pentium Dual-Core processor, Intel Xeon processor, model
633 case 0x16: // Intel Celeron processor model 16h. All processors are
638 case 0x17: // Intel Core 2 Extreme processor, Intel Xeon processor, model
650 // As found in a Summer 2010 model iMac
    [all...]
Host.cpp 590 unsigned *Model) {
592 *Model = (EAX >> 4) & 0xf; // Bits 4 - 7
597 // Examine extended model ID if family ID is 6 or F.
598 *Model += ((EAX >> 16) & 0xf) << 4; // Bits 16 - 19
603 getIntelProcessorTypeAndSubtype(unsigned Family, unsigned Model,
627 switch (Model) {
631 // Pentium Dual-Core processor, Intel Xeon processor, model
633 case 0x16: // Intel Celeron processor model 16h. All processors are
638 case 0x17: // Intel Core 2 Extreme processor, Intel Xeon processor, model
650 // As found in a Summer 2010 model iMac
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 268 SmallString<128> Model, ResultPath;
271 llvm::sys::path::append(Model, Directory, "report-%%%%%%.html");
273 llvm::sys::fs::make_absolute(Model)) {
274 llvm::errs() << "warning: could not make '" << Model
279 Model, FD, ResultPath, llvm::sys::fs::OF_Text)) {
291 Model = "";
297 llvm::sys::path::append(Model, Directory,
300 Model, FD, llvm::sys::fs::CD_CreateNew, llvm::sys::fs::OF_None);
302 llvm::errs() << "warning: could not create file '" << Model
HTMLDiagnostics.cpp 268 SmallString<128> Model, ResultPath;
271 llvm::sys::path::append(Model, Directory, "report-%%%%%%.html");
273 llvm::sys::fs::make_absolute(Model)) {
274 llvm::errs() << "warning: could not make '" << Model
279 Model, FD, ResultPath, llvm::sys::fs::OF_Text)) {
291 Model = "";
297 llvm::sys::path::append(Model, Directory,
300 Model, FD, llvm::sys::fs::CD_CreateNew, llvm::sys::fs::OF_None);
302 llvm::errs() << "warning: could not create file '" << Model
HTMLDiagnostics.cpp 268 SmallString<128> Model, ResultPath;
271 llvm::sys::path::append(Model, Directory, "report-%%%%%%.html");
273 llvm::sys::fs::make_absolute(Model)) {
274 llvm::errs() << "warning: could not make '" << Model
279 Model, FD, ResultPath, llvm::sys::fs::OF_Text)) {
291 Model = "";
297 llvm::sys::path::append(Model, Directory,
300 Model, FD, llvm::sys::fs::CD_CreateNew, llvm::sys::fs::OF_None);
302 llvm::errs() << "warning: could not create file '" << Model
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
CommonArgs.cpp 1116 std::tuple<llvm::Reloc::Model, unsigned, bool>
1218 StringRef Model = ModelArg ? ModelArg->getValue() : "";
1219 if (Model != "kernel") {
1312 llvm::Reloc::Model RelocM = llvm::Reloc::Static;
1374 llvm::Reloc::Model RelocationModel;
CommonArgs.cpp 1116 std::tuple<llvm::Reloc::Model, unsigned, bool>
1218 StringRef Model = ModelArg ? ModelArg->getValue() : "";
1219 if (Model != "kernel") {
1312 llvm::Reloc::Model RelocM = llvm::Reloc::Static;
1374 llvm::Reloc::Model RelocationModel;
CommonArgs.cpp 1116 std::tuple<llvm::Reloc::Model, unsigned, bool>
1218 StringRef Model = ModelArg ? ModelArg->getValue() : "";
1219 if (Model != "kernel") {
1312 llvm::Reloc::Model RelocM = llvm::Reloc::Static;
1374 llvm::Reloc::Model RelocationModel;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
TargetTransformInfo.h 206 /// The kind of cost model.
209 /// target. The normalization of each cost model may be target specific.
540 /// If the value is true the peeling cost model can decide to peel only
974 // We currently do not model L3 caches, as their sizes differ widely between
1036 /// calculate an 'add' in a single cycle, this model should indicate that the
1432 /// The template model for the base class which wraps a concrete
1434 template <typename T> class Model;
1730 class TargetTransformInfo::Model final : public TargetTransformInfo::Concept {
1734 Model(T Impl) : Impl(std::move(Impl)) {}
1735 ~Model() override {
    [all...]

Completed in 107 milliseconds

1 2 3