HomeSort by relevance Sort by last modified time
    Searched full:aliasee (Results 1 - 25 of 32) sorted by null

1 2

  /external/llvm/lib/IR/
Globals.cpp 196 const Twine &Name, Constant* aliasee,
201 if (aliasee)
202 assert(aliasee->getType() == Ty && "Alias and aliasee types should match!");
203 Op<0>() = aliasee;
225 void GlobalAlias::setAliasee(Constant *Aliasee) {
226 assert((!Aliasee || Aliasee->getType() == getType()) &&
227 "Alias and aliasee types should match!");
229 setOperand(0, Aliasee);
    [all...]
TypeFinder.cpp 38 if (const Value *Aliasee = I->getAliasee())
39 incorporateValue(Aliasee);
AsmWriter.cpp     [all...]
Verifier.cpp 459 "Aliasee cannot be NULL!", &GA);
461 "Alias and aliasee types should match!", &GA);
470 "Aliasee should be either GlobalValue or bitcast of GlobalValue",
474 const GlobalValue* Aliasee = GA.resolveAliasedGlobal(/*stopOnWeak*/ false);
475 Assert1(Aliasee,
    [all...]
Core.cpp     [all...]
  /external/llvm/include/llvm/IR/
GlobalAlias.h 44 Constant* Aliasee = 0, Module *Parent = 0);
67 /// getAliasedGlobal() - Aliasee can be either global or bitcast of
68 /// global. This method retrives the global for both aliasee flavours.
  /external/llvm/unittests/IR/
VerifierTest.cpp 52 GlobalVariable *Aliasee = new GlobalVariable(M, Ty, true,
57 "bar", Aliasee, &M);
  /external/clang/lib/CodeGen/
CGCXX.cpp 148 llvm::Constant *Aliasee = Ref;
150 Aliasee = llvm::ConstantExpr::getBitCast(Ref, AliasType);
154 new llvm::GlobalAlias(AliasType, Linkage, "", Aliasee, &getModule());
CodeGenModule.cpp 887 // GlobalAlias::isDeclaration() defers to the aliasee, but for our
    [all...]
CGExpr.cpp     [all...]
  /external/llvm/lib/Target/
TargetMachine.cpp 125 // If GV is an alias then use the aliasee for determining
  /external/llvm/include/llvm/Bitcode/
LLVMBitCodes.h 68 // ALIAS: [alias type, aliasee val#, linkage, visibility]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 614 /// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
615 /// Aliasee
640 Constant *Aliasee;
644 if (ParseGlobalTypeAndValue(Aliasee)) return true;
650 return Error(AliaseeLoc, "invalid aliasee");
651 Aliasee = ID.ConstantVal;
654 if (!Aliasee->getType()->isPointerTy())
658 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
660 Aliasee);
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp     [all...]
  /external/clang/include/clang/Basic/
Attr.td 155 let Args = [StringArgument<"Aliasee">];
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 962 LLVMValueRef Aliasee, value Name) {
963 return LLVMAddAlias(M, Ty, Aliasee, String_val(Name));
    [all...]
  /external/llvm/docs/
BitCodeFormat.rst 763 ``[ALIAS, alias type, aliasee val#, linkage, visibility]``
770 * *aliasee val#*: The value index of the aliased value
    [all...]
  /external/llvm/test/Bindings/Ocaml/
vmcore.ml 545 (* RUN: grep "@alias = alias i32\* @aliasee" < %t.ll
547 let v = declare_global i32_type "aliasee" m in
    [all...]
  /external/llvm/utils/TableGen/
AsmWriterEmitter.cpp 793 continue; // We were told not to emit the alias, but to emit the aliasee.
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 234 // If GV is an alias then use the aliasee to determine the wrapper type
273 // If GV is an alias then use the aliasee to determine size
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /external/llvm/include/llvm-c/
Core.h     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]

Completed in 5027 milliseconds

1 2