HomeSort by relevance Sort by last modified time
    Searched refs:BitCast (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /external/v8/src/
double.h 37 inline uint64_t double_to_uint64(double d) { return BitCast<uint64_t>(d); }
38 inline double uint64_to_double(uint64_t d64) { return BitCast<double>(d64); }
property.cc 37 visitor->VisitPointer(BitCast<Object**>(&current->holder_));
bootstrapper.h 52 v->VisitPointer(BitCast<Object**, FixedArray**>(&cache_));
handles-inl.h 66 return *BitCast<T**>(location_);
factory.h 409 return Handle<type>(BitCast<type**>( \
417 return Handle<String>(BitCast<String**>( \
objects-debug.cc 361 (BitCast<uint64_t>(value) ==
362 BitCast<uint64_t>(canonical_not_the_hole_nan_as_double())) ||
363 ((BitCast<uint64_t>(value) & Double::kSignMask) != 0));
conversions-inl.h 50 return BitCast<double, uint64_t>(kQuietNaNMask);
isolate.cc 450 v->VisitPointer(BitCast<Object**>(&(thread->pending_message_script_)));
451 v->VisitPointer(BitCast<Object**>(&(thread->context_)));
461 v->VisitPointer(BitCast<Object**>(&(block->exception_)));
462 v->VisitPointer(BitCast<Object**>(&(block->message_)));
    [all...]
platform-posix.cc 409 BitCast<struct sockaddr *>(&addr),
  /external/llvm/lib/Analysis/
CaptureTracking.cpp 139 case Instruction::BitCast:
Loads.cpp 69 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
  /external/llvm/lib/VMCore/
Instructions.cpp 362 // bitcast (i8* malloc(typeSize)) to type*
364 // bitcast (i8 *malloc(typeSize*arraySize)) to type*
437 /// 3. Bitcast the result of the malloc call to the specified type.
452 /// 3. Bitcast the result of the malloc call to the specified type.
453 /// Note: This function does not add the bitcast to the basic block, that is the
    [all...]
Globals.cpp 234 assert((CE->getOpcode() == Instruction::BitCast ||
Instruction.cpp 147 case BitCast: return "bitcast";
Value.cpp 360 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
394 // It's also not always safe to follow a bitcast, for example:
395 // bitcast i8* (alloca i8) to i32*
  /external/llvm/lib/Transforms/Utils/
AddrModeMatcher.cpp 125 case Instruction::BitCast:
168 case Instruction::BitCast:
169 // BitCast is always a noop, and we can handle it as long as it is
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 678 // Try constant folding a bitcast of both instructions to an integer. If we
686 A = ConstantFoldInstOperands(Instruction::BitCast, IntTy,
692 B = ConstantFoldInstOperands(Instruction::BitCast, IntTy,
SjLjEHPrepare.cpp 278 // so src and destination types are identical. BitCast is the only
451 Value *SetjmpArg = CastInst::Create(Instruction::BitCast, JBufPtr,
458 Value *FuncCtxArg = CastInst::Create(Instruction::BitCast, FuncCtx,
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 43 case Instruction::BitCast:
340 /// store i32 xxx, (bitcast {foo*, float}* %P to i32*)
386 Instruction::CastOps opcode = Instruction::BitCast;
InstCombineSimplifyDemanded.cpp 396 case Instruction::BitCast:
404 // Don't touch a bitcast between vectors of different element counts.
407 // Don't touch a scalar-to-vector bitcast.
410 // Don't touch a vector-to-scalar bitcast.
    [all...]
  /external/v8/src/x64/
codegen-x64.cc 300 __ movq(r15, BitCast<int64_t, uint64_t>(kHoleNanInt64), RelocInfo::NONE);
398 __ movq(rsi, BitCast<int64_t, uint64_t>(kHoleNanInt64), RelocInfo::NONE);
  /external/llvm/include/llvm/Support/
ConstantFolder.h 171 return CreateCast(Instruction::BitCast, C, DestTy);
NoFolder.h 218 return CreateCast(Instruction::BitCast, C, DestTy);
TargetFolder.h 183 return CreateCast(Instruction::BitCast, C, DestTy);
PatternMatch.h 582 inline CastClass_match<OpTy, Instruction::BitCast>
584 return CastClass_match<OpTy, Instruction::BitCast>(Op);

Completed in 639 milliseconds

1 2 3 4