HomeSort by relevance Sort by last modified time
    Searched refs:Linkage (Results 26 - 50 of 92) sorted by null

12 3 4

  /external/v8/src/compiler/
operator-properties.cc 8 #include "src/compiler/linkage.h"
30 return Linkage::NeedsFrameStateInput(p.id()) ? 1 : 0;
pipeline.cc 380 bool OptimizeGraph(Linkage* linkage);
383 Handle<Code> GenerateCode(Linkage* linkage);
385 bool ScheduleAndSelectInstructions(Linkage* linkage);
585 Linkage* linkage_;
610 linkage_ = new (&zone_) Linkage(Linkage::ComputeIncoming(&zone_, info()));
662 Linkage linkage_
    [all...]
js-generic-lowering.cc 99 CallDescriptor* desc = Linkage::GetStubCallDescriptor(
115 Linkage::GetRuntimeCallDescriptor(zone(), f, nargs, properties, flags);
418 CallDescriptor* desc = Linkage::GetStubCallDescriptor(
430 CallDescriptor* desc = Linkage::GetStubCallDescriptor(
440 CallDescriptor* desc = Linkage::GetStubCallDescriptor(
578 CallDescriptor* desc = Linkage::GetStubCallDescriptor(
602 CallDescriptor* desc = Linkage::GetStubCallDescriptor(
code-generator-impl.h 11 #include "src/compiler/linkage.h"
151 Linkage* linkage() const { return gen_->linkage(); } function in class:v8::internal::compiler::InstructionOperandConverter
memory-optimizer.cc 8 #include "src/compiler/linkage.h"
196 Linkage::GetAllocateCallDescriptor(graph()->zone());
274 Linkage::GetAllocateCallDescriptor(graph()->zone());
c-linkage.cc 8 #include "src/compiler/linkage.h"
156 CallDescriptor* Linkage::GetSimplifiedCDescriptor(
  /external/v8/test/cctest/compiler/
test-run-stubs.cc 11 #include "src/compiler/linkage.h"
34 CallDescriptor* descriptor = Linkage::GetStubCallDescriptor(
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
evntcons.h 43 USHORT Linkage : 1;
wmistr.h 16 ULONG Linkage;
  /external/llvm/lib/AsmParser/
LLParser.h 232 bool ParseOptionalLinkage(unsigned &Linkage, bool &HasLinkage);
233 bool ParseOptionalLinkage(unsigned &Linkage) {
234 bool HasLinkage; return ParseOptionalLinkage(Linkage, HasLinkage);
270 bool ParseGlobal(const std::string &Name, LocTy Loc, unsigned Linkage,
274 bool ParseAlias(const std::string &Name, LocTy Loc, unsigned Linkage,
LLParser.cpp 253 unsigned Linkage, Visibility, DLLStorageClass;
257 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
262 ParseGlobal("", SMLoc(), Linkage, HasLinkage, Visibility,
454 unsigned Linkage, Visibility, DLLStorageClass;
457 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
465 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
467 return ParseAlias(Name, NameLoc, Linkage, Visibility, DLLStorageClass, TLM,
482 unsigned Linkage, Visibility, DLLStorageClass;
486 ParseOptionalLinkage(Linkage, HasLinkage) ||
494 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp 715 GVALinkage Linkage = getContext().GetGVALinkageForFunction(D);
722 return Linkage == GVA_Internal ? llvm::GlobalValue::InternalLinkage
726 return getLLVMLinkageForDeclarator(D, Linkage, /*isConstantVariable=*/false);
    [all...]
ItaniumCXXABI.cpp 222 // emitted with external linkage or as linkonce if they are inline and used.
289 // linkage together with vtables when needed.
364 /// Return the required visibility status for the given type and linkage in
368 llvm::GlobalValue::LinkageTypes Linkage) const;
    [all...]
CodeGenPGO.cpp 30 llvm::GlobalValue::LinkageTypes Linkage) {
33 Name, Linkage, CGM.getCodeGenOpts().MainFileName,
38 FuncNameVar = llvm::createPGOFuncNameVar(CGM.getModule(), Linkage, FuncName);
681 llvm::GlobalValue::LinkageTypes Linkage) {
700 setFuncName(Name, Linkage);
CGVTables.cpp 492 // available_externally linkage together with vtables when optimizations are
662 llvm::GlobalVariable::LinkageTypes Linkage,
688 // linkage construction vtable. The ABI only requires complete-object vtables
690 if (Linkage == llvm::GlobalVariable::AvailableExternallyLinkage)
691 Linkage = llvm::GlobalVariable::InternalLinkage;
695 CGM.CreateOrReplaceCXXRuntimeVariable(Name, ArrayType, Linkage);
722 /// Compute the required linkage of the v-table for the given class.
735 // linkage of the vtable.
744 "Shouldn't query vtable linkage without key function or "
771 // -fapple-kext mode does not support weak linkage, so we must us
    [all...]
CGDecl.cpp 133 llvm::GlobalValue::LinkageTypes Linkage =
140 return EmitStaticVarDecl(D, Linkage);
178 const VarDecl &D, llvm::GlobalValue::LinkageTypes Linkage) {
209 Ty.isConstant(getContext()), Linkage,
344 llvm::GlobalValue::LinkageTypes Linkage) {
348 llvm::Constant *addr = CGM.getOrCreateStaticVarDecl(D, Linkage);
    [all...]
CodeGenModule.h 374 /// Map used to track internal linkage functions declared within
550 llvm::GlobalValue::LinkageTypes Linkage);
684 llvm::GlobalValue::LinkageTypes Linkage);
845 /// \brief If the declaration has internal linkage but is inside an
846 /// extern "C" linkage specification, prepare to emit an alias for it
    [all...]
  /external/llvm/include/llvm/IR/
Function.h 107 Function(FunctionType *Ty, LinkageTypes Linkage,
111 static Function *Create(FunctionType *Ty, LinkageTypes Linkage,
113 return new Function(Ty, Linkage, N, M);
423 /// the linkage to external.
  /external/llvm/lib/CodeGen/
GlobalMerge.cpp 9 // This pass merges globals with internal linkage into one. This way all the
113 cl::desc("Enable global merge pass on external linkage"));
131 /// Whether we should merge global variables that have external linkage.
445 GlobalValue::LinkageTypes Linkage = Globals[k]->getLinkage();
457 // When the linkage is not internal we must emit an alias for the original
459 // we can also emit an alias for internal linkage as it's safe to do so.
462 if (Linkage != GlobalValue::InternalLinkage ||
464 GlobalAlias::create(Tys[idx], AddrSpace, Linkage, Name, GEP, &M);
  /external/llvm/lib/Support/
Dwarf.cpp 591 const char *llvm::dwarf::GDBIndexEntryLinkageString(GDBIndexEntryLinkage Linkage) {
592 switch (Linkage) {
  /external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 450 StringRef Linkage;
451 if (getParser().parseIdentifier(Linkage))
453 if (Linkage != "comdat")
454 return TokError("Linkage must be 'comdat'");
  /external/llvm/include/llvm/ProfileData/
InstrProf.h 85 /// Return the name of a covarage mapping variable (internal linkage)
94 /// function has internal linkage and is called by __llvm_profile_init
110 /// has internal linkage and invoked at startup time via init_array.
139 /// name is \c RawFuncName and has linkage of type \c Linkage.
142 GlobalValue::LinkageTypes Linkage,
154 /// and \c Linkage is the linkage of the instrumented function.
156 GlobalValue::LinkageTypes Linkage,
  /external/clang/include/clang/AST/
DeclBase.h 37 enum Linkage : unsigned char;
296 /// \brief If 0, we have not computed the linkage of this declaration.
297 /// Otherwise, it is the linkage + 1.
354 Linkage getCachedLinkage() const {
355 return Linkage(CacheValidAndLinkage - 1);
358 void setCachedLinkage(Linkage L) const {
920 /// \brief Determine whether this is a block-scope declaration with linkage.
    [all...]
  /external/v8/test/unittests/compiler/
instruction-selector-unittest.cc 36 Linkage linkage(call_descriptor());
42 InstructionSelector selector(test_->zone(), node_count, &linkage, &sequence,
367 CallDescriptor* descriptor = Linkage::GetJSCallDescriptor(
421 CallDescriptor* descriptor = Linkage::GetStubCallDescriptor(
523 CallDescriptor* descriptor = Linkage::GetStubCallDescriptor(
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 109 DwarfLinkageNames("dwarf-linkage-names", cl::Hidden,
110 cl::desc("Emit DWARF linkage-name attributes."),
249 // SCE does not use linkage names.
316 // If the linkage name is different than the name, go ahead and output
    [all...]

Completed in 1873 milliseconds

12 3 4