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

1 2

  /src/external/gpl3/gcc/dist/gcc/jit/
jit-playback.h 126 lvalue *
135 lvalue *
157 global_set_init_rvalue (lvalue* variable,
215 lvalue *
338 lvalue *
528 lvalue *
613 lvalue *lvalue,
705 lvalue *
709 lvalue *
717 class lvalue : public rvalue class in namespace:gcc::jit::playback
720 lvalue (context *ctxt, tree inner) function in class:gcc::jit::playback::lvalue
    [all...]
libgccjit++.h 46 class lvalue;
181 lvalue new_global (enum gcc_jit_global_kind kind,
326 lvalue new_array_access (rvalue ptr,
394 lvalue new_local (type type_,
426 void add_assignment (lvalue lvalue,
430 void add_assignment_op (lvalue lvalue,
492 lvalue dereference_field (field field,
495 lvalue dereference (location loc = location ())
505 class lvalue : public rvalue class in namespace:gccjit
1820 inline lvalue::lvalue () : rvalue () {} function in class:gccjit::lvalue
1821 inline lvalue::lvalue (gcc_jit_lvalue *inner) function in class:gccjit::lvalue
    [all...]
jit-recording.h 150 lvalue *
164 new_global_init_rvalue (lvalue *variable,
220 lvalue *
1188 lvalue *
1192 lvalue *
1228 class lvalue : public rvalue class in namespace:gcc::jit::recording
1231 lvalue (context *ctxt, function in class:gcc::jit::recording::lvalue
1242 playback::lvalue *
1245 return static_cast <playback::lvalue *> (m_playback_obj);
1248 lvalue *
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/jit/
jit-playback.h 109 lvalue *
116 lvalue *
134 global_set_init_rvalue (lvalue* variable,
189 lvalue *
310 lvalue *
494 lvalue *
577 lvalue *lvalue,
669 lvalue *
673 lvalue *
681 class lvalue : public rvalue class in namespace:gcc::jit::playback
684 lvalue (context *ctxt, tree inner) function in class:gcc::jit::playback::lvalue
    [all...]
libgccjit++.h 46 class lvalue;
181 lvalue new_global (enum gcc_jit_global_kind kind,
326 lvalue new_array_access (rvalue ptr,
393 lvalue new_local (type type_,
425 void add_assignment (lvalue lvalue,
429 void add_assignment_op (lvalue lvalue,
491 lvalue dereference_field (field field,
494 lvalue dereference (location loc = location ())
504 class lvalue : public rvalue class in namespace:gccjit
1813 inline lvalue::lvalue () : rvalue () {} function in class:gccjit::lvalue
1814 inline lvalue::lvalue (gcc_jit_lvalue *inner) function in class:gccjit::lvalue
    [all...]
jit-recording.h 146 lvalue *
160 new_global_init_rvalue (lvalue *variable,
213 lvalue *
1126 lvalue *
1130 lvalue *
1166 class lvalue : public rvalue class in namespace:gcc::jit::recording
1169 lvalue (context *ctxt, function in class:gcc::jit::recording::lvalue
1179 playback::lvalue *
1182 return static_cast <playback::lvalue *> (m_playback_obj);
1185 lvalue *
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/d/
expr.cc 79 /* Determine if expression E is a suitable lvalue. */
1147 const bool lvalue = lvalue_p (e->e2); local
1154 || (e->op == EXP::construct && !lvalue && postblit)
1164 /* All other kinds of lvalue or rvalue static array assignment.
1170 libcall_fn libcall = (lvalue)
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGAtomic.cpp 40 LValue LVal;
43 AtomicInfo(CodeGenFunction &CGF, LValue &lvalue)
46 assert(!lvalue.isGlobalReg());
48 if (lvalue.isSimple()) {
49 AtomicTy = lvalue.getType();
71 if (lvalue.getAlignment().isZero())
72 lvalue.setAlignment(AtomicAlign);
74 LVal = lvalue;
75 } else if (lvalue.isBitField())
799 LValue lvalue = MakeAddrLValue(Ptr, AtomicTy); local
    [all...]
CGDecl.cpp 682 const LValue &destLV, const Expr *init) {
702 LValue srcLV = CGF.EmitLValue(srcExpr);
732 LValue &lvalue,
734 lvalue.setAddress(CGF.emitBlockByrefAddress(lvalue.getAddress(CGF), var));
737 void CodeGenFunction::EmitNullabilityCheck(LValue LHS, llvm::Value *RHS,
759 LValue lvalue, bool capturedByInit) {
760 Qualifiers::ObjCLifetime lifetime = lvalue.getObjCLifetime()
766 EmitStoreThroughLValue(RValue::get(value), lvalue, true); local
1942 EmitAtomicInit(const_cast<Expr*>(init), lvalue); local
    [all...]
CGObjC.cpp 136 LValue LV = MakeNaturalAlignAddrLValue(Constant, IdTy);
170 LValue LV = MakeAddrLValue(Builder.CreateConstArrayGEP(Objects, i),
181 LValue KeyLV = MakeAddrLValue(Builder.CreateConstArrayGEP(Keys, i),
188 LValue ValueLV = MakeAddrLValue(Builder.CreateConstArrayGEP(Objects, i),
586 LValue lvalue = EmitLValue(lvalueExpr); local
587 llvm::Value *result = EmitARCLoadWeakRetained(lvalue.getAddress(*this));
800 LValue lvalue, QualType type);
884 /// lvalue-to-rvalue expressions
1603 LValue lvalue variable
    [all...]
CGExpr.cpp 247 // FIXME: This function should take an LValue as an argument.
265 LValue LV = MakeAddrLValue(Location, E->getType());
441 LValue CodeGenFunction::
472 LValue RefTempDst = MakeAddrLValue(Object, M->getType(),
595 LValue LV = MakeAddrLValue(Object, E->getType(), AlignmentSource::Decl);
598 "materialized temporary field is not a simple lvalue");
617 // Emit the expression as an lvalue.
618 LValue LV = EmitLValue(E);
1021 EmitComplexPrePostIncDec(const UnaryOperator *E, LValue LV,
1045 // Store the updated result through the lvalue
5343 LValue lvalue = MakeAddrLValue(addr, type, AlignmentSource::Decl); local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/fortran/
match.cc 958 <LVALUE> = <EXPR>, <EXPR> [, <EXPR> ]
1093 %v Matches a variable expression (an lvalue, except function references
1316 gfc_expr *lvalue, *rvalue; local
1322 lvalue = NULL;
1323 m = gfc_match (" %v =", &lvalue);
1327 gfc_free_expr (lvalue);
1336 && lvalue->ts.type == BT_CLASS)
1344 if (lvalue->expr_type == EXPR_CONSTANT)
1354 gfc_free_expr (lvalue);
1359 if (!lvalue->symtree
1384 gfc_expr *lvalue, *rvalue; local
    [all...]
expr.cc 3686 gfc_check_assign (gfc_expr *lvalue, gfc_expr *rvalue, int conform,
3693 sym = lvalue->symtree->n.sym;
3698 for (ref = lvalue->ref; ref; ref = ref->next)
3707 "allowed", &lvalue->where);
3762 gfc_error ("%qs at %L is not a VALUE", sym->name, &lvalue->where);
3774 &lvalue->where);
3779 if (rvalue->rank != 0 && lvalue->rank != rvalue->rank)
3782 lvalue->rank, rvalue->rank, &lvalue->where);
3786 if (lvalue->ts.type == BT_UNKNOWN
4582 gfc_expr lvalue; local
    [all...]
openmp.cc 5091 gfc_expr *lvalue = NULL, *rvalue = NULL; local
5095 m = gfc_match (" %v =", &lvalue);
5104 ns->code->expr1 = lvalue;
5111 gfc_free_expr (lvalue);
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
match.cc 954 <LVALUE> = <EXPR>, <EXPR> [, <EXPR> ]
1086 %v Matches a variable expression (an lvalue, except function references
1308 gfc_expr *lvalue, *rvalue; local
1314 lvalue = NULL;
1315 m = gfc_match (" %v =", &lvalue);
1319 gfc_free_expr (lvalue);
1328 && lvalue->ts.type == BT_CLASS)
1336 if (lvalue->expr_type == EXPR_CONSTANT)
1346 gfc_free_expr (lvalue);
1351 if (!lvalue->symtree
1376 gfc_expr *lvalue, *rvalue; local
    [all...]
expr.cc 3670 gfc_check_assign (gfc_expr *lvalue, gfc_expr *rvalue, int conform,
3677 sym = lvalue->symtree->n.sym;
3682 for (ref = lvalue->ref; ref; ref = ref->next)
3691 "allowed", &lvalue->where);
3746 gfc_error ("%qs at %L is not a VALUE", sym->name, &lvalue->where);
3758 &lvalue->where);
3763 if (rvalue->rank != 0 && lvalue->rank != rvalue->rank)
3766 lvalue->rank, rvalue->rank, &lvalue->where);
3770 if (lvalue->ts.type == BT_UNKNOWN
4566 gfc_expr lvalue; local
    [all...]
openmp.cc 4069 gfc_expr *lvalue = NULL, *rvalue = NULL; local
4073 m = gfc_match (" %v =", &lvalue);
4082 ns->code->expr1 = lvalue;
4089 gfc_free_expr (lvalue);
  /src/external/gpl3/gdb/dist/sim/h8300/
compile.c 355 lvalue (SIM_DESC sd, sim_cpu *cpu, int x, int rn, unsigned int *val) function
830 if (lvalue (sd, cpu, p->type, p->reg, (unsigned int *)&p->type))
862 if (lvalue (sd, cpu, p->type, p->reg, (unsigned int *)&p->type))
  /src/external/gpl3/gdb.old/dist/sim/h8300/
compile.c 355 lvalue (SIM_DESC sd, sim_cpu *cpu, int x, int rn, unsigned int *val) function
830 if (lvalue (sd, cpu, p->type, p->reg, (unsigned int *)&p->type))
862 if (lvalue (sd, cpu, p->type, p->reg, (unsigned int *)&p->type))
  /src/crypto/external/bsd/openssh/dist/
servconf.c 1458 unsigned long lvalue; local
3003 lvalue = atol(arg);
3005 *timetptr = lvalue;
  /src/usr.bin/xlint/lint1/
tree.c 1393 bool lvalue = op == ARROW || ln->tn_lvalue; local
1413 if (!lvalue)
2451 /* %soperand of '%s' must be lvalue */
2493 * Some C dialects from before C90 tolerated any lvalue on the
2514 * C1978 Appendix A 14.1 says: <quote>In fact, any lvalue is allowed
2515 * before '.', and that lvalue is then assumed to have the form of the
2536 /* a cast does not yield an lvalue */
2538 /* %soperand of '%s' must be lvalue */
2543 /* %soperand of '%s' must be modifiable lvalue */
2556 /* a cast does not yield an lvalue */
    [all...]
  /src/crypto/external/bsd/netpgp/dist/bindings/perl/
netpgpperl_wrap.c 1236 long lvalue; member in struct:swig_constant_info
4156 sv_setiv(sv, (IV) swig_constants[i].lvalue);
4168 SWIG_MakePackedObj(sv, swig_constants[i].pvalue, swig_constants[i].lvalue, *(swig_constants[i].ptype));
  /src/crypto/external/bsd/netpgp/dist/bindings/tcl/
netpgptcl_wrap.c 798 long lvalue; member in struct:swig_const_info
3412 obj = SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype));
  /src/crypto/external/bsd/netpgp/dist/bindings/python/
netpgppython_wrap.c 949 long lvalue; member in struct:swig_const_info
5095 obj = SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype));
  /src/external/gpl3/gcc/dist/gcc/cp/
call.cc 111 /* If KIND is ck_ref_bind, true when either an lvalue reference is
112 being bound to an lvalue expression or an rvalue reference is
114 true when we are treating an lvalue as an rvalue (12.8p33). If
1733 purposes of reference binding. For lvalue binding, either pass a
1734 reference type to FROM or an lvalue expression to EXPR. If the
1843 the reference and expression is an lvalue. In DR391, the wording in
1853 -- is an lvalue (but not an lvalue for a bit-field), and "cv1 T1"
1857 lvalue.
1899 /* Unless it's really a C++20 lvalue being treated as an xvalue
8922 cp_lvalue_kind lvalue = lvalue_kind (expr); local
    [all...]

Completed in 94 milliseconds

1 2