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

12 3 4 5 6

  /external/chromium_org/v8/src/
objects-debug.cc 371 (BitCast<uint64_t>(value) ==
372 BitCast<uint64_t>(canonical_not_the_hole_nan_as_double())) ||
373 ((BitCast<uint64_t>(value) & Double::kSignMask) != 0));
    [all...]
assembler.cc 911 double_constants.the_hole_nan = BitCast<double>(kHoleNanInt64);
952 uint64_t bits = BitCast<uint64_t, double>(value);
954 double mantissa = BitCast<double, uint64_t>(bits);
    [all...]
conversions-inl.h 27 return BitCast<double, uint64_t>(kQuietNaNMask);
isolate.cc 203 v->VisitPointer(BitCast<Object**>(&(thread->pending_message_script_)));
204 v->VisitPointer(BitCast<Object**>(&(thread->context_)));
210 v->VisitPointer(BitCast<Object**>(&(block->exception_)));
211 v->VisitPointer(BitCast<Object**>(&(block->message_obj_)));
212 v->VisitPointer(BitCast<Object**>(&(block->message_script_)));
    [all...]
utils.h 830 // will completely optimize BitCast away.
832 // There is an additional use for BitCast.
835 // you can use BitCast to cast one pointer type to another. This confuses gcc
839 // We need different implementations of BitCast for pointer and non-pointer
862 INLINE(Dest BitCast(const Source& source));
865 inline Dest BitCast(const Source& source) {
    [all...]
  /external/chromium_org/v8/src/ia32/
macro-assembler-ia32.cc 429 mov(value, Immediate(BitCast<int32_t>(kZapValue)));
430 mov(index, Immediate(BitCast<int32_t>(kZapValue)));
474 mov(value, Immediate(BitCast<int32_t>(kZapValue)));
475 mov(dst, Immediate(BitCast<int32_t>(kZapValue)));
535 mov(value, Immediate(BitCast<int32_t>(kZapValue)));
536 mov(scratch1, Immediate(BitCast<int32_t>(kZapValue)));
537 mov(scratch2, Immediate(BitCast<int32_t>(kZapValue)));
605 mov(address, Immediate(BitCast<int32_t>(kZapValue)));
606 mov(value, Immediate(BitCast<int32_t>(kZapValue)));
    [all...]
stub-cache-ia32.cc     [all...]
lithium-gap-resolver-ia32.cc 295 uint64_t int_val = BitCast<uint64_t, double>(v);
  /external/chromium_org/v8/src/x87/
macro-assembler-x87.cc 351 mov(value, Immediate(BitCast<int32_t>(kZapValue)));
352 mov(index, Immediate(BitCast<int32_t>(kZapValue)));
395 mov(value, Immediate(BitCast<int32_t>(kZapValue)));
396 mov(dst, Immediate(BitCast<int32_t>(kZapValue)));
454 mov(value, Immediate(BitCast<int32_t>(kZapValue)));
455 mov(scratch1, Immediate(BitCast<int32_t>(kZapValue)));
456 mov(scratch2, Immediate(BitCast<int32_t>(kZapValue)));
523 mov(address, Immediate(BitCast<int32_t>(kZapValue)));
524 mov(value, Immediate(BitCast<int32_t>(kZapValue)));
    [all...]
lithium-gap-resolver-x87.cc 295 uint64_t int_val = BitCast<uint64_t, double>(v);
stub-cache-x87.cc     [all...]
  /external/lldb/source/Expression/
IRInterpreter.cpp 242 case Instruction::BitCast:
465 case Instruction::BitCast:
807 case Instruction::BitCast:
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 50 /// FoldBitCast - Constant fold bitcast, symbolically evaluating it with
111 // If this is a bitcast from constant vector -> vector, fold it.
126 // bitcast (<2 x i64> <i64 0, i64 1> to <4 x i32>)
168 // Handle: bitcast (<4 x i32> <i32 0, i32 1, i32 2, i32 3> to <2 x i64>)
198 // Handle: bitcast (<2 x i64> <i64 0, i64 1> to <4 x i32>)
243 CE->getOpcode() == Instruction::BitCast)
404 // and then bitcast the result. This can be useful for union cases. Note
493 Instruction::CastOps Cast = Instruction::BitCast;
510 // We're simulating a load through a pointer that was bitcast to point to
545 if (CE->getOpcode() == Instruction::BitCast)
    [all...]
CostModel.cpp 454 case Instruction::BitCast:
TargetTransformInfo.cpp 276 case Instruction::BitCast:
  /external/llvm/lib/IR/
Instruction.cpp 241 case BitCast: return "bitcast";
  /external/chromium_org/v8/src/x64/
codegen-x64.cc 282 __ movq(r15, BitCast<int64_t, uint64_t>(kHoleNanInt64));
384 __ movq(rsi, BitCast<int64_t, uint64_t>(kHoleNanInt64));
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 872 // Try constant folding a bitcast of both instructions to an integer. If we
880 A = ConstantFoldInstOperands(Instruction::BitCast, IntTy,
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 36 if (CE->getOpcode() == Instruction::BitCast ||
73 // If uses of the bitcast are ok, we are ok.
487 /// store i32 xxx, (bitcast {foo*, float}* %P to i32*)
544 Instruction::CastOps opcode = Instruction::BitCast;
    [all...]
  /external/chromium_org/v8/src/mips/
simulator-mips.cc 17 #include "src/globals.h" // Need the BitCast.
    [all...]
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 269 } else if (Operator::getOpcode(I) == Instruction::BitCast) {
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 448 assert(CE->getOpcode() == Instruction::BitCast &&
  /external/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.cpp 229 case Instruction::BitCast:
  /external/llvm/lib/Transforms/Scalar/
TailRecursionElimination.cpp 214 case Instruction::BitCast:
    [all...]
  /external/llvm/include/llvm/IR/
PatternMatch.h 753 inline CastClass_match<OpTy, Instruction::BitCast>
755 return CastClass_match<OpTy, Instruction::BitCast>(Op);
    [all...]

Completed in 1847 milliseconds

12 3 4 5 6